consciousness/poc-memory/src
Kent Overstreet 5d6b2021f8 Agent identity, parallel scheduling, memory-search fixes, stemmer optimization
- Agent identity injection: prepend core-personality to all agent prompts
  so agents dream as me, not as generic graph workers. Include instructions
  to walk the graph and connect new nodes to core concepts.

- Parallel agent scheduling: sequential within type, parallel across types.
  Different agent types (linker, organize, replay) run concurrently.

- Linker prompt: graph walking instead of keyword search for connections.
  "Explore the local topology and walk the graph until you find the best
  connections."

- memory-search fixes: format_results no longer truncates to 5 results,
  pipeline default raised to 50, returned file cleared on compaction,
  --seen and --seen-full merged, compaction timestamp in --seen output,
  max_entries=3 per prompt for steady memory drip.

- Stemmer optimization: strip_suffix now works in-place on a single String
  buffer instead of allocating 18 new Strings per word. Note for future:
  reversed-suffix trie for O(suffix_len) instead of O(n_rules).

- Transcript: add compaction_timestamp() for --seen display.

- Agent budget configurable (default 4000 from config).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 12:49:10 -04:00
..
agents Agent identity, parallel scheduling, memory-search fixes, stemmer optimization 2026-03-15 12:49:10 -04:00
bin Agent identity, parallel scheduling, memory-search fixes, stemmer optimization 2026-03-15 12:49:10 -04:00
cli evaluate: fix RNG — xorshift32 replaces degenerate LCG 2026-03-14 19:57:58 -04:00
neuro scoring: configurable agent_budget, squared Elo distribution 2026-03-14 20:05:53 -04:00
query Agent identity, parallel scheduling, memory-search fixes, stemmer optimization 2026-03-15 12:49:10 -04:00
store provenance: set POC_PROVENANCE for agent subprocesses, Jaccard initial strength 2026-03-14 12:27:30 -04:00
config.rs scoring: configurable agent_budget, squared Elo distribution 2026-03-14 20:05:53 -04:00
counters.rs counters: add redb-backed persistent counters (skeleton) 2026-03-10 23:59:39 -04:00
cursor.rs cursor: spatial memory navigation 2026-03-13 22:31:23 -04:00
graph.rs graph: normalize link strengths from Jaccard neighborhood similarity 2026-03-14 11:13:58 -04:00
lib.rs cli: extract graph commands from main.rs into cli/graph.rs 2026-03-14 17:59:46 -04:00
lookups.rs split into workspace: poc-memory and poc-daemon subcrates 2026-03-08 20:43:59 -04:00
main.rs evaluate: switch to Elo ratings with skillratings crate 2026-03-14 19:53:46 -04:00
migrate.rs provenance: convert from enum to freeform string 2026-03-11 01:19:52 -04:00
similarity.rs Agent identity, parallel scheduling, memory-search fixes, stemmer optimization 2026-03-15 12:49:10 -04:00
spectral.rs memory-search: add --query mode and prompt key boost 2026-03-13 15:26:35 -04:00
transcript.rs Agent identity, parallel scheduling, memory-search fixes, stemmer optimization 2026-03-15 12:49:10 -04:00
tui.rs extract jobkit-daemon library from poc-memory daemon 2026-03-14 02:40:30 -04:00
util.rs util: add jsonl_load/jsonl_append helpers, convert graph.rs 2026-03-10 15:22:03 -04:00