Skip to content

v0.5.0 — Host-agent review protocol + [BETA] memory search + Windows installer

Choose a tag to compare

@codejunkie99 codejunkie99 released this 17 Apr 00:07

Highlights

  • Host-agent review protocol. auto_dream.py now 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.jsonl as source of truth. LESSONS.md is 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_budget ranks episodes by salience × relevance and filters lessons to status=accepted only — 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.ps1 runs 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)
  • .gitignore ordering 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-project

Full details: README.md.