MongoClaw, A mutation runtime for MongoDB with write-time agent safety
Catches the stale-write bug every AI+database pipeline hits: version checking before mutation.
Deterministic, hash-based verification for docs that reference code. Fail-closed. Zero fuzzy matching.
Hash-verified doc citations enforce truth—genuinely solves AI agent hallucination on stale docs.
Teams using AI agents for code generation, documentation maintainers, DevOps/CI engineers
Docusaurus link validation · Check-all-refs · markdown-link-check
VeriContext tries to make those docs verifiable.
When a doc references code, it embeds a SHA-256 hash of the exact snippet inside an HTML comment. On verification, either it matches or it fails (fail-closed).
What’s useful in practice is the workflow around it: • You can install it as an agent skill, so the agent runs verification before finishing a task / finalizing a plan / committing, and updates the citations/hashes when it edits docs. • You can also enforce it mechanically via pre-commit hooks or CI, e.g. npx vericontext verify workspace ..., so stale docs simply can’t be merged.
This way docs aren’t “trusted” — they’re constrained to stay aligned with code.
I’d love feedback on trade-offs (strict fail-closed vs. ergonomics), and whether AST-aware verification would be worth it vs. raw snippet hashing.
Catches the stale-write bug every AI+database pipeline hits: version checking before mutation.
AST-level symbol anchoring beats text-matching for catching stale docs in CI.
Timestamps every web extraction for agents—solves real AI hallucination failure mode.
Closes a real AI tooling gap: detects stale AGENTS.md before agents waste tokens on wrong instructions.
VERONICA puts an enforcement shim between your agent and the model so you can halt costly spirals before a request hits the provider — it natively exposes hard budget enforcement, circuit breakers, retry containment and degradation levels. The README + runnable runaway-loop demo make the failure mode concrete and the API (BudgetEnforcer, RuntimeContext, BudgetExceeded) is small and practical. I'd like to see richer observability/adapter docs for common agent frameworks, but as an enforcement-first primitive this is a clever, useful tool.
REPL with agentic LLM can inspect runtime and fix code—clever, but prototype-stage and insecure.