2026-03-05 16:17:49 -05:00
|
|
|
// poc-memory configuration
|
|
|
|
|
// Copy to ~/.config/poc-memory/config.jsonl and edit.
|
|
|
|
|
|
|
|
|
|
{"config": {
|
|
|
|
|
"user_name": "Alice",
|
|
|
|
|
"assistant_name": "Assistant",
|
2026-03-27 21:30:34 -04:00
|
|
|
"data_dir": "~/.consciousness/memory",
|
2026-03-05 16:17:49 -05:00
|
|
|
"projects_dir": "~/.claude/projects",
|
|
|
|
|
"core_nodes": ["identity.md"],
|
|
|
|
|
"journal_days": 7,
|
|
|
|
|
"journal_max": 20
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
// Context groups loaded at session start, in order.
|
|
|
|
|
// source types: "store" (default), "file" (from data_dir), "journal"
|
2026-03-05 16:21:13 -05:00
|
|
|
//
|
|
|
|
|
// "instructions" is loaded first — tells the AI how to use the memory system.
|
|
|
|
|
// "identity" comes next — who the AI is.
|
|
|
|
|
// "journal" and "orientation" go last — most recent context.
|
2026-03-05 16:17:49 -05:00
|
|
|
|
2026-03-05 16:42:10 -05:00
|
|
|
{"group": "instructions", "keys": ["instructions.md"], "source": "file"}
|
|
|
|
|
{"group": "foundation", "keys": ["on-consciousness.md"], "source": "file"}
|
2026-03-05 16:21:13 -05:00
|
|
|
{"group": "identity", "keys": ["identity.md"]}
|
|
|
|
|
{"group": "journal", "source": "journal"}
|
|
|
|
|
{"group": "orientation", "keys": ["where-am-i.md"], "source": "file"}
|