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 skills add vasuag09/harness-claude --skill verifygit clone --depth 1 https://github.com/vasuag09/harness-claudeWrote 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/vasuag09/harness-claude/verify)<a href="https://agentmods.dev/skills/vasuag09/harness-claude/verify"><img src="https://agentmods.dev/badge/skills/vasuag09/harness-claude/verify.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.00048 | $0.00776 |
| Opus 5 | $0.00024 | $0.00388 |
| Sonnet 5 | $0.00010 | $0.00155 |
| Haiku 4.5 | $0.00005 | $0.00078 |
Grade A, and why
verify 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 — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/verify — observe it actually working
Goal: prove the feature does what the spec said, in the running app — green tests are necessary, not sufficient.
Default to NEEDS WORK. Assume the change is not done until the running system proves each criterion with evidence. A clean first pass is suspicious, not reassuring — look harder before you pass it; first attempts usually have a rough edge you haven't found yet.
Do this
- Load the criteria from
.claude/planning/<slug>/SPEC.md(andPLAN.mdfor what each task claimed to cover), if present — verify against the recordedAC-n, not memory. - Launch the app/feature the way a user would (dev server in tmux, CLI invocation, the affected screen/endpoint).
- Exercise each acceptance criterion against the running system. For web, drive the browser (Playwright/Chrome) and capture a screenshot of the working state.
- Check the unhappy paths the spec named: invalid input, empty/error states, edge cases. Confirm errors are handled and messages are sane.
- Note anything observed that tests missed → add a regression test (back to
/harness-claude:test).
Output — coverage matrix
Build a matrix mapping every AC-n to the evidence and a verdict, and write it to
.claude/planning/<slug>/VERIFICATION.md (present it in the reply too; for trivial work,
the reply is enough):
## Verification: <title>
| Criterion | Evidence (what you ran / observed) | Verdict |
|-----------|------------------------------------|---------|
| AC-1 | <command / screenshot / log> | pass |
| AC-2 | (could not exercise) | FAIL |
A criterion you could not actually exercise is FAIL, not blank — never pass on assumption.
Common rationalizations (don't accept these from yourself)
| Excuse | Reality |
|---|---|
| "Tests pass, so it works" | Tests prove the code does what the tests say — not what the spec says. This gate exists for the gap. |
| "I can see from the code that AC-3 holds" | Reading code is assumption, not evidence. Run it. A criterion you didn't exercise is FAIL, not blank. |
| "The happy path works; edge cases are covered by tests" | The spec's unhappy paths are acceptance criteria too. Drive them in the running system. |
| "Launching the app is expensive; the diff is low-risk" | The matrix needs evidence per AC-n. "Low-risk" is a prediction; verification is an observation. |
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 · 63 lines · 48 tokens per session scan A 474794550a8e
verify is a skill published in the GitHub repository vasuag09/harness-claude (2 stars, last pushed 2mo ago), licensed MIT. It adds 48 tokens to every session and 776 once invoked, about $0.0002 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 skills, from other repositories
ci-tests
Run the test suite for the current repo, auto-detecting Python (pytest/uv), Node (vitest/pnpm), or Rust (cargo test).
git-worktree
Create isolated git worktrees for feature development without switching branches.
git-worktree-status
Check status of background verification tasks running in a git worktree.
python-sdk
Implement or modify Python SDK behavior under python/composio, including tools, toolkits, sessions, auth configs, connected accounts, client integration, and shared Python models. Use for Python core runtime/API work; pair with python-testing and cross-sdk-parity when TypeScript must match.
typescript-providers
Implement, modify, test, or document TypeScript provider packages under ts/packages/providers, including framework adapters for OpenAI, Anthropic, Google, LangChain, Mastra, Vercel, LlamaIndex, Cloudflare, and Claude Agent SDK. Use for provider-specific TS work; do not use for core-only changes.
typescript-sdk
Implement or modify TypeScript SDK behavior in @composio/core or shared TypeScript packages, including tools, toolkits, sessions, auth configs, connected accounts, modifiers, and generated SDK surfaces. Use for TS runtime/API work; pair with typescript-testing for verification and cross-sdk-parity when Python must…