Skip to content

v0.3.0 — the recall skill

Choose a tag to compare

@malinfossum malinfossum released this 13 Jul 22:17
· 20 commits to main since this release
a5636f0

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 recall skill (skills/recall/) — answers questions from the index, cites every fact as file § 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 run npm link once 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.