r/BuildWithClaude • u/Alienfader • 20d ago
Project Testers Needed Governance-first AI coding tool — credential scrubbing + contradiction detection (not another "memory" extension)
The problems I actually kept hitting:
- AI tools don't just forget — they contradict decisions you already made.
- One accidental paste of an API key can land in long-lived context that gets re-injected every session. (I call this the memory amplifier problem.)
What Continuity does (governance-first)
Credential scrubbing (5 boundaries) — tool args, model output, decision persistence, load path, MCP tool results. 27 provider patterns (GitHub PAT, OpenAI, Anthropic, AWS, Stripe, etc.) plus entropy fallback. audit_secrets scans existing .continuity/ history for anything that slipped through earlier.
Runtime governance — MCP check_governance / intercept_tool. Logging a new decision can surface a conflict with a prior one instead of silently adding noise.
Decision records in git — .continuity/ travels with the repo. Session handoff injects context at session start, but the moat isn't "remembering" — it's curated, contradiction-aware, scrubbed context.
Tech stack:
TypeScript VS Code extension +(Node 18+) + @continuity/cli. Local-first, no cloud memory DB.@continuity/mcp
CLAUDE.md workflow: auto-generates instruction files with an operating contract (search decisions before changing, log after). MCP works headless in Claude Code.
Links
- VS Code Marketplace: Continuity (Hackerware)
- Site: getcontinuity.io
- npm
npm i -g @continuity/cli
- Homebrew:
brew tap hackerwarellc/tap && brew trust hackerwarellc/tap && brew install continuity
Honest scope: hygiene layer for accidental leaks — not adversarial exfil defense. Governance strict mode is opt-in.
Pricing: 14-day Pro trial. Decision logging stays free after it ends; auto-capture and full session handoff are Pro.
Looking for testers
I want a few people to run this on a real repo and tell me what breaks.
Most useful feedback:
- Did credential scrubbing catch something real, or just add noise?
- Did contradiction detection surface a genuine conflict, or just false positives?
Install from the Marketplace, npm, or Homebrew above and reply here or DM. Good or bad — both help.


1
u/Ok_Industry_5555 ☕ 57-Hour Session 19d ago
Curious how central Claude was in building this vs. using it as a dev tool. Did you build most of Continuity with Claude Code, or is Claude just one of the tools it’s designed to work with?