DIR-COGNITIVE-OS/ │ ├── kernel/ │ ├── dir_core.py │ ├── scheduler.py │ ├── reflection_engine.py │ ├── memory/ │ ├── semantic_memory.py │ ├── state_store.json │ ├── agents/ │ ├── thinker.py │ ├── stabilizer.py │ ├── explorer.py │ ├── interface/ │ ├── app.py │ ├── config.py └── main.py
DIR-COGNITIVE-OS/
│
├── kernel/
│ ├── dir_core.py
│ ├── scheduler.py
│ ├── reflection_engine.py
│
├── memory/
│ ├── semantic_memory.py
│ ├── state_store.json
│
├── agents/
│ ├── thinker.py
│ ├── stabilizer.py
│ ├── explorer.py
│
├── interface/
│ ├── app.py
│
├── config.py
└── main.py