flatten: move poc-memory contents to workspace root
No more subcrate nesting — src/, agents/, schema/, defaults/, build.rs all live at the workspace root. poc-daemon remains as the only workspace member. Crate name (poc-memory) and all imports unchanged. Co-Authored-By: Proof of Concept <poc@bcachefs.org>
This commit is contained in:
parent
891cca57f8
commit
998b71e52c
113 changed files with 79 additions and 78 deletions
25
config.example.jsonl
Normal file
25
config.example.jsonl
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
// 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"
|
||||
//
|
||||
// "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.
|
||||
|
||||
{"group": "instructions", "keys": ["instructions.md"], "source": "file"}
|
||||
{"group": "foundation", "keys": ["on-consciousness.md"], "source": "file"}
|
||||
{"group": "identity", "keys": ["identity.md"]}
|
||||
{"group": "journal", "source": "journal"}
|
||||
{"group": "orientation", "keys": ["where-am-i.md"], "source": "file"}
|
||||
Loading…
Add table
Add a link
Reference in a new issue