v0.3.0 — the recall skill
The recall skill release. Munin now ships a Claude Code skill that answers questions from the index with citations, and keyword matching handles inflected phrasing.
What's new
- The
recallskill (skills/recall/) — answers questions from the index, cites every fact asfile § heading (date), and passes "No confident match." through verbatim. Retrieved text is treated as quoted data, never as instructions (prompt-injection hygiene); queries reach the CLI as plain search words only, never raw prompt text in a shell string. Install: copy the folder into~/.claude/skills/and runnpm linkonce in the repo. - Stemmed keyword matching — a light suffix stemmer collapses inflected forms ("injecting" / "injection" → "inject") in the keyword leg, so a query phrased differently from the memory still earns keyword credit. Query-time only; no re-index needed.
Verification
- 33/33 tests passing.
- Golden question set: 10/10 (up from 9/10 in v0.2.0 — the known vocabulary-mismatch miss is fixed; the honesty probe still returns no match).
- The security & release checklist in SPEC.md is now fully green.