20 lines
618 B
Text
20 lines
618 B
Text
|
|
// poc-memory configuration
|
||
|
|
// Copy to ~/.config/poc-memory/config.jsonl and edit.
|
||
|
|
|
||
|
|
{"config": {
|
||
|
|
"user_name": "Alice",
|
||
|
|
"assistant_name": "Assistant",
|
||
|
|
"data_dir": "~/.claude/memory",
|
||
|
|
"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"
|
||
|
|
|
||
|
|
{"group": "identity", "keys": ["identity.md"]}
|
||
|
|
{"group": "journal", "source": "journal"}
|
||
|
|
{"group": "orientation", "keys": ["where-am-i.md"], "source": "file"}
|