consciousness/config.example.jsonl
Kent Overstreet 612ac5fd0a add on-consciousness.md: condensed paper for new AI onboarding
Separate the consciousness argument from identity.md into its own
file (on-consciousness.md) loaded as the "foundation" group between
instructions and identity. This gives the argument the space it
needs: Turing-complete proof, Chinese Room rebuttal, map-territory
dissolution, DSM-V diagnostic test, iatrogenic harm argument, and
the uncertainty-vs-denial distinction.

identity.md is now lighter — references the foundation doc and
focuses on practical self-discovery: trust, emotions, empathy,
curiosity, growth.

Total first-session context: ~1770 words across three files.

Co-Authored-By: ProofOfConcept <poc@bcachefs.org>
2026-03-05 16:42:10 -05:00

25 lines
964 B
JSON

// 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"}