Mneme now has a wrapper for the first real AI-assisted compile loop.
scripts/mneme_llm_roundtrip.py
Runs this flow:
- ingest raw evidence
- prepare LLM bundles
- optionally validate a candidate JSON file
- optionally materialize validated entries into compiled outputs
Prepare bundles for one category (currently: projects, systems, decisions, incidents, people, timeline):
./scripts/mneme_llm_roundtrip.py \
--root /path/to/workspace \
--category projects \
--jsonRun the full loop with a candidate file:
./scripts/mneme_llm_roundtrip.py \
--root /path/to/workspace \
--category projects \
--candidate ./candidate-projects.json \
--jsonThis is the seam where Mneme stops being only deterministic plumbing and starts supporting real judgment:
- deterministic ingest/prep/validation/materialization
- LLM grouping/summarization in the middle
That is the intended architecture.