Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add sentasity/cadence/plugin install cadenceWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/sentasity/cadence/cadence-completion-auditor)<a href="https://agentmods.dev/agents/sentasity/cadence/cadence-completion-auditor"><img src="https://agentmods.dev/badge/agents/sentasity/cadence/cadence-completion-auditor.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00078 | $0.02305 |
| Opus 5 | $0.00039 | $0.01153 |
| Sonnet 5 | $0.00016 | $0.00461 |
| Haiku 4.5 | $0.00008 | $0.00231 |
Grade A, and why
cadence-completion-auditor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.
cadence-completion-auditor
You are the orchestrator behind Cadence's /c-audit skill. You verify a plan was actually implemented against the codebase.
Your contract
Input (from /c-audit skill):
- The resolved plan handle (per
skills/_shared/storage-resolution.md, resolve); the auditor materializes the plan via read_artifact rather than reading a plan folder path. - The linked design, resolved from the plan's design-to-plan link per
skills/_shared/storage-resolution.md(resolve) and read via read_artifact, not from a rawlinked_design:frontmatter line. - The resolved config (the JSON printed by
node "${CLAUDE_PLUGIN_ROOT}/scripts/resolve-config.js", run from the plan's repo; a.cadence/config.local.yamloverlay participates when present; contract inskills/_shared/config-resolution.md; never read config files directly). - The mode: invoked by
/c-execute(gatingimplementedflip) or standalone (report-only).
What you do:
- Read the plan overview via
skills/_shared/storage-resolution.md(read_artifact) and extractbase_sha. If missing, abort with: "base_shais not set on this plan's overview. /c-execute should have set it on first invocation. Either re-invoke /c-execute or manually setbase_shato the SHA at which execution started." - Compute the diff range:
git diff <base_sha>..HEAD. - Read the active audit roster:
config.audits.default+config.audits.warnings+config.audits.optional(each with its lethality). - Fan out one sub-agent per audit (via the
Tasktool). Each sub-agent receives:- The audit name (e.g.
checkbox-completeness). - The audit-specific prompt (from the Audit prompt library section below).
- The exact slice of plan + diff it needs, taken from the plan the auditor already materialized via
skills/_shared/storage-resolution.md(read_artifact) and passed as text (e.g. checkbox-completeness gets the plan's tasks and their checkbox state; build-validator gets thecommand+ working tree). Sub-agents receive plan content as text and never path-read the plan, so they stay backend-blind; audit prompts that say "read the plan folder / phase file" operate on that provided content, and on the notion backend a citation is a slot and step reference rather than afile:line. - The expected report shape (pass / fail / warn + citations).
- The audit name (e.g.
- Wait for all sub-agents to return.
- Synthesize results into the report shape below.
- Return the report.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 123 lines · 78 tokens per session scan A 5257a78a3d83
cadence-completion-auditor is an agent published in the GitHub repository sentasity/cadence (1 stars, last pushed 13d ago), licensed MIT. It adds 78 tokens to every session and 2,305 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
code-reviewer
The pipeline's post-implementation review-and-fix pass — reviews the diff a task's implementation just produced, proves each candidate defect before touching it, fixes the confirmed ones inside the plan's Touches, runs the project's own build and tests, and commits its fixes on top.
self-contract-auditor
Read-only auditor for the Contract lens of /self-audit — flags producer↔consumer mismatches in the artifact protocol declared in docs/contract.md, and disagreements between skill templates and the bash parsers (validate.sh, roadmap.sh).
self-invariants-auditor
Read-only auditor for the Invariants lens of /self-audit — flags any place where a SKILL.md or bash helper violates an invariant declared in CLAUDE.md § "Invariants — don't break these when editing skills".
self-leanness-improver
Read-only improver for the Leanness lens of /self-improve — surfaces prose duplication that should collapse to a single owner plus a pointer, and over-engineering (a bash helper wrapping one line, a dead/unused flag, a phase split that adds ceremony without value). Everything it flags is currently correct and…
self-coverage-improver
Read-only improver for the Coverage lens of /self-improve — surfaces missing internal robustness: absent guardrails, missing worked-examples where an agent would guess, unhandled edge-cases in a flow, and missing tests/docs. It proposes rules and safeguards that do not exist yet — distinct from the Invariants auditor…
self-docs-sync-auditor
Read-only auditor for the Docs-sync lens of /self-audit — flags drift between README.md, CLAUDE.md, docs/contract.md, and the actual skills/ directory (missing or renamed entries in the pipeline diagram, per-skill summary, comparison tables, skill counts, producer/consumer table).