v0.5.0 — Host-agent review protocol + [BETA] memory search + Windows installer
Highlights
- Host-agent review protocol.
auto_dream.pynow stages candidate lessons only. Reasoning moved to the host agent via CLI tools (graduate.py,reject.py,reopen.py,list_candidates.py). Graduation requires--rationale. Zero unattended reasoning, zero provider coupling. - Structured
lessons.jsonlas source of truth.LESSONS.mdis auto-rendered; hand-curated content above the sentinel is preserved; legacy bullets auto-migrate on first run. - Proper single-linkage clustering with bridge-merge. Pattern IDs stable across cluster-membership shifts (claim + conditions hash), distinct for generic-canonical collisions.
- Query-aware retrieval.
context_budgetranks episodes by salience × relevance and filters lessons tostatus=acceptedonly — provisional, legacy, and superseded entries never leak into the system prompt. - [BETA] FTS5 memory search (
.agent/memory/memory_search.py). Opt-in via onboarding or.agent/memory/.features.json. Default off. Prefers ripgrep when FTS5 isn't available, falls back to grep. - Windows installer.
install.ps1runs natively under PowerShell — no Git Bash required.
Fixes (11 codex review rounds on the restructure)
- Batch-sound graduation gate
- Stable slugs across cluster drift
- Provisional re-review + supersession semantics
- REVIEW_QUEUE refresh on every CLI action
- Heuristic-rejection stamping so unrelated LESSONS edits don't churn
- Atomic graduate.py (semantic write first, candidate move last)
.gitignoreordering so.agent/memory/.index/is actually ignored- Fallback search restricted to
.md/.jsonl - Feature toggle file + BETA label in onboarding
Install
# mac / linux
brew update && brew upgrade agentic-stack# Windows
git clone https://github.com/codejunkie99/agentic-stack.git
cd agentic-stack
.\install.ps1 claude-code C:\path\to\your-projectFull details: README.md.