Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/thevibeworks/claude-code-docs/modernize-hardengit clone --depth 1 https://github.com/thevibeworks/claude-code-docsWrote 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/commands/thevibeworks/claude-code-docs/modernize-harden)<a href="https://agentmods.dev/commands/thevibeworks/claude-code-docs/modernize-harden"><img src="https://agentmods.dev/badge/commands/thevibeworks/claude-code-docs/modernize-harden.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 | $0.00021 | $0.01790 |
| Opus 5 | $0.00010 | $0.00895 |
| Sonnet 5 | $0.00004 | $0.00358 |
| Haiku 4.5 | $0.00002 | $0.00179 |
Grade A, and why
modernize-harden 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 yesterday.
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 — 155 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Run a security hardening pass on the legacy system: find
vulnerabilities, rank them, and produce a reviewable patch for the
critical ones. Parse arguments flag-independently: the system dir
(referred to as $1 below) is the first non-flag token in $ARGUMENTS;
--show-secrets may appear anywhere.
This command never edits legacy/ — it writes findings and a proposed patch
to analysis/$1/. The user reviews and applies (or not).
Step 0 — Secrets quarantine setup
Findings files get shared, committed, and pasted into decks — discovered credential values must never land in them. Before any scanning:
- Ensure
analysis/.gitignoreexists and contains the linesSECRETS.local.mdand*.local.patch. Create the file or append the missing lines. - If the project is a git repo, verify with
git check-ignore -q analysis/$1/SECRETS.local.md— if that exits non-zero, fix the ignore rule before proceeding. Do not write any findings until this check passes. - If there is no git repo (check for
.svn/.hg/CVStoo — a.gitignoreprotects nothing under another VCS): refuse--show-secrets, and writeSECRETS.local.mdand any.local.patchfile to~/.modernize/$1/instead of the project tree, telling the user where they went and why.
All secret values in every shareable artifact this command produces are
masked (AKIA****, password=****) and cited by file:line. Raw
values may appear in exactly two places, both gitignored: the
*.local.patch remediation hunks (unavoidably — see Remediate) and, only
with --show-secrets, SECRETS.local.md. Never in SECURITY_FINDINGS.md
or patch commentary.
Scan
Preferred — Workflow orchestration. If the Workflow tool is available in this session, use it (this command invocation is your authorization):
Workflow({
scriptPath: "${CLAUDE_PLUGIN_ROOT}/workflows/harden-scan.js",
args: { system: "$1" }
})
It runs five class-scoped finders in parallel (injection, auth/session,
secrets, dependency CVEs, input validation), dedups across them, then
adversarially refutes every finding — and double-judges the Critical/High
ones — so false positives die before they reach SECURITY_FINDINGS.md. The
scan agents are read-only by design; you write every artifact below from
the structured result. It fans out roughly 15–50 agents depending on estate
size; tell the user before launching. The return value carries findings
(use in Triage below), credentialFindings (use for the quarantine file),
toolOutputs, refuted (report the count — it's the precision the
verification bought), and injectionFlags (instruction-shaped text found in
source — surface these prominently; someone tried to manipulate automated
analysis). Then continue at Triage.
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.
- yesterday First seen · 155 lines · 21 tokens per session scan A 82281d6535fc
modernize-harden is a command published in the GitHub repository thevibeworks/claude-code-docs (39 stars, last pushed today), licensed MIT. It adds 21 tokens to every session and 1,790 once invoked, about $0.0001 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-09-03.
Other commands, from other repositories
reconcile
Check developer guides for documentation drift against recent code changes.
audit
Re-audit accepted ADRs against the codebase — verify each still holds, then amend, supersede, or deprecate the ones that don't.
review
Review proposed ADRs for lifecycle progression — accept implemented decisions, deprecate stale ones, archive trivial ones.
curate
Curate research files — inventory by type, identify stale/superseded candidates, update frontmatter status.
create
Create a new Architecture Decision Record.
from-spec
Extract Architecture Decision Records from a completed spec.