Merged
Conversation
Move the deterministic bag-of-words LLM provider from cmd/benchmark-quality/stubllm.go to a shared package so it can be reused by the upcoming lifecycle test suite. The benchmark-quality binary now imports from the shared package via thin re-exports. No behavior change — same vocabulary, embeddings, and response templates. Closes #249 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add cmd/lifecycle-test/, a standalone Go binary that simulates the full mnemonic user journey from fresh install through 3 months of usage. 8 phases exercise all cognitive agents against a real SQLite database with a deterministic stub LLM: 1. Install — DB init, schema verification 2. First Use — 10 seed memories, encoding, episoding, retrieval 3. Ingest — synthetic project ingestion with dedup verification 4. Daily Use — 250+ memories over 12 simulated days 5. Consolidation — 10 decay cycles, signal/noise separation 6. Dreaming — dream replay, abstraction, metacognition audit 7. Growth — scale to 500+ memories over 3 months 8. Long-term Health — aggressive decay, archival verification Includes terminal + markdown report output and `make lifecycle-test` Makefile target. Closes #250, closes #251, closes #252, closes #253, closes #254, closes #255, closes #256 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Grow from 30 to 80+ unique memory templates across 3 projects (mnemonic, felix-lm, sample-project) - Split templates into mcpSignalTemplates and noiseTemplates for clearer source distribution control - Append day+index suffix to each generated memory to avoid encoding dedup on repeated templates - Add more filesystem, terminal, and clipboard noise variety Closes #257 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Document the lifecycle simulation test suite, make lifecycle-test target, and internal/testutil/ shared package in the project guide. Closes #258 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Lifecycle Test: 8 Phases
All 8 phases pass with 23/23 assertions green (~9s total runtime with stub LLM).
Test plan
Closes #249, #250, #251, #252, #253, #254, #255, #256