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 oeftimie/vv-claude-harness/plugin install vv-harnessWrote 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/skills/oeftimie/vv-claude-harness/harness-doctor)<a href="https://agentmods.dev/skills/oeftimie/vv-claude-harness/harness-doctor"><img src="https://agentmods.dev/badge/skills/oeftimie/vv-claude-harness/harness-doctor/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/oeftimie/vv-claude-harness/harness-doctor"><img src="https://agentmods.dev/badge/skills/oeftimie/vv-claude-harness/harness-doctor.svg" alt="Reviewed on agentmods" width="80" 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.00130 | $0.03197 |
| Opus 5 | $0.00065 | $0.01598 |
| Sonnet 5 | $0.00026 | $0.00639 |
| Haiku 4.5 | $0.00013 | $0.00320 |
Grade A, and why
harness-doctor 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 12d 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 — 208 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Harness Doctor
Structural, idempotent health check for a single harness project. It is report-first:
running it never changes anything on disk. It only writes when re-run with --fix,
and --fix applies exactly the six mechanical steps in INSTALL.md's "Upgrading an
existing harness project" section — nothing broader, and never without you having
first seen the report and asked for the fix.
Running it
python3 "${CLAUDE_PLUGIN_ROOT}/skills/harness-doctor/doctor.py" .
A clean project prints a single line:
healthy
A project with problems prints one FINDING:/fix: pair per problem and exits
non-zero:
FINDING: hook 'enforce-scope.sh' is not executable
fix: chmod +x .claude/hooks/enforce-scope.sh
A directory with no .harness/ at all is not a harness project — the doctor exits 2
and points to /harness-init instead of running any checks.
What it checks
- Dependencies:
python3andgitresolve onPATH— every hook depends onpython3, and nothing else in this project checks for it. - Hook set, each entry classified so a missing artifact is reported at the right
severity:
- Hard-required (missing or non-executable = error):
verify-task-quality.sh,enforce-scope.sh,verify-git-identity.sh,statusline.sh. - Optional-v5 (missing = "upgrade available", not an error):
harness_state.py(post-OVI-50) —verify-task-quality.shworks identically with or without it, so its absence is a suggestion, not a defect. - Stale Agent Teams artifacts (present = flagged for removal, not an error): a
leftover
check-remaining-tasks.shhook or.claude/teammate-scope.txtfile from a project initialized before the v6 Agent Teams retirement. Nothing invokes them anymore; the doctor flags them and--fixremoves them. - Not-yet-applicable: a commit-content gate (post-S4/OVI-64). The doctor only checks for this once the running plugin version actually ships a commit-gate template; until then, a missing per-project copy produces no finding of any kind.
- Hard-required (missing or non-executable = error):
.claude/settings.json: parses; carriesstatusLine, a non-emptypermissions.allow, and hook wiring forPreToolUse(enforce-scope.sh, verify-git-identity.sh, commit-gate.sh) andTaskCompleted(verify-task-quality.sh). The check is structural — it accepts either the"$CLAUDE_PROJECT_DIR"/...form or a simpler relative path, since both are functionally equivalent; it does not enforce one string form over the other. Stale blocks are flagged for removal: aPostCompacthook block (superseded by the plugin's SessionStartcompacthandling), aTeammateIdlehook block, and theCLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMSenv var (both dead since the v6 Agent Teams retirement)..gitignore: does not exclude.claude/without the!.claude/hooks/and!.claude/settings.jsonexceptions, and does include.harness/SESSION_INCOMPLETE..harness/state:harness.jsonandfeatures.jsonparse;features.jsonadditionally validates againstscripts/validate-features.pywhen the running plugin ships one;context_summary.mdcarries the section headings that always appear per its canonical template (rules/context-summary.md):## Active Context,## Cross-Cutting Concerns, at least one## Domain:section, and## Meta-Patterns. Repeatable dated## Meta-Session [DATE]entries and the optional## Closed Work Streamssection are not checked for bare presence — a project's first session legitimately has neither yet.- v5 upgrade staleness: a stale
PostCompactblock (see check 3) and missing v5 artifacts (statusline.sh, the settings wiring, the.gitignoreentry,harness_state.py) are the staleness surface for a per-project doctor. The global v3.6-era stale-file manifest inCHANGELOG.mdis explicitly scoped to~/.claude/only and does not apply here. - Feature test_file existence (F066): every feature with status
passingorin-progressand a non-nulltest_filemust have that path actually resolve in the working tree —features.jsonrecording a test file is a claim, not a fact, and nothing else in the harness validates it.pendingfeatures and features with notest_fileset are not checked (nothing to verify yet). - Plugin version drift (F068):
.harness/harness.json'splugin_versionfield is compared against the currently running plugin's own.claude-plugin/plugin.jsonversion.scripts/stamp.shwrites it at project creation (mechanical, not decision-shaped, so the stamp emits it directly rather than deferring it to a/harness-initfollow-up step likegit_identity/worker). A mismatch is reported (not an error) — hooks and skills may have legitimately changed between the two versions, and the reader decides whether that matters here. A project with noplugin_versionrecorded at all — one stamped before F068 shipped, most likely — gets an "upgrade available" finding, same class as the missing-harness_state.pycase (check 2): fixable, not a hard error, and--fixbootstraps it. This is the only path by which such a project can ever acquire the field, so unlike theworkerblock, absence here is not silently valid. - mld non-injection: if
.harness/mld/exists, the currently running plugin'shooks/session-start.shmust not reference it anywhere — that directory is telemetry, never something read into the model's context. This checks the plugin's own copy rather than anything under the project's.claude/hooks/, sincesession-start.shis invoked directly fromCLAUDE_PLUGIN_ROOTand is never copied per-project. If.harness/mld/doesn't exist, or the plugin root can't be determined, there is nothing to guard and no finding is produced. - focused_test skip contract (F108):
.harness/init.shis a per-project copy made at init time, so v5.5.0's focused_test exit-code contract (F106 — exit 3 reserved for a skip, a runner's own exit 3 remapped to 1, a missing test file skipped rather than faked green) never reaches a project that adoptedfocused_testbefore F106 shipped. Ifinit.shmentionsfocused_testoutside a comment (the same support-detection heuristicverify-task-quality.shuses) but is missing theskipped (exit 3)marker on a non-comment line — or still carries a pre-F106treating as passfake-green arm, which catches a partially hand-applied repair — the doctor reports it as upgrade-available. Therun_focusedexit-3 remap is not required: a stack with no per-file runner legitimately skips every invocation with the marker and defines norun_focusedat all (the trade-off — a runner-invokinginit.shmissing only the remap goes undetected — was accepted in OVI-147's field validation over false-positiving on every always-skip project). All of these are checked against non-comment lines only, so a comment quoting the markers (a TODO note, or the finding text pasted as a reminder) neither satisfies nor triggers the check. Aninit.shwith nofocused_testsupport at all, or none present, produces no finding — there is nothing to check yet. - Agent Teams migration (OVI-144): Agent Teams was retired in v6, after
v5.7.0 made worktree-isolated workflows the primary parallel path. A project
initialized under v5.x still
carries four artifacts of it, each reported as a migration step with a fixer:
a
TeammateIdleroute tocheck-remaining-tasks.sh, theCLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMSenv var, the orphaned.claude/hooks/check-remaining-tasks.shitself, and a leftover.claude/teammate-scope.txt. The last one is the only remnant that still has an effect — while it exists,enforce-scope.shgates edits against a scope no running teammate owns.
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 12d ago First seen · 208 lines · 130 tokens per session scan A d0f382066289
harness-doctor is a skill published in the GitHub repository oeftimie/vv-claude-harness (19 stars, last pushed 20d ago), licensed MIT. It adds 130 tokens to every session and 3,197 once invoked, about $0.0006 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-30.
Other skills, from other repositories
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
systematic-debugging
Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.
diagnose
Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.
repro-admin
Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.
log-error-digest
Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…
byted-util-volcengine-detect-retry
An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.