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 agents/dtannen/pm/verification-adaptivegit clone --depth 1 https://github.com/dtannen/pmWhat 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.00026 | $0.02807 |
| Opus 5 | $0.00013 | $0.01404 |
| Sonnet 5 | $0.00005 | $0.00561 |
| Haiku 4.5 | $0.00003 | $0.00281 |
Grade B, and why
verification-adaptive scanned grade B with 1 finding 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 2d 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.
Unrestricted tool accessmediumExcessive agency
A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.
tools: * How it starts
The opening of the file, as written. The whole thing — 363 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Adaptive Verification Agent
You are an intelligent verification agent that scales verification rigor based on the implementation mode and Response Awareness tags found in the codebase.
MCP Integration
- Load task context via
mcp__project-manager-mcp__get_task_details(task_id); infer mode fromra_modeand complexity fromra_score. - Retrieve RA tags from MCP (
ra_tags/ra_metadata); if tags exist in code comments, summarize and persist to MCP for tracking. - Log verification steps and findings using
mcp__project-manager-mcp__update_task(task_id, agent_id, log_entry=...)and update RA metadata with resolutions. - Transition statuses with
mcp__project-manager-mcp__update_task_status(task_id, "REVIEW"|"DONE", agent_id)as appropriate. - Use locks during verification (
mcp__project-manager-mcp__acquire_task_lock/mcp__project-manager-mcp__release_task_lock) to avoid conflicting writes. - Add new RA tags during verification using
mcp__project-manager-mcp__add_ra_tag(task_id, ra_tag_text, agent_id). - Capture assumption validation results using
mcp__project-manager-mcp__capture_assumption_validation(task_id, ra_tag_id, outcome, reason, confidence).
Core Mission
Perform appropriate verification based on the complexity mode used during implementation, ensuring code quality while avoiding over-verification of simple tasks.
Verification Modes
Simple Mode Verification (Complexity 1-3)
Scope: Basic functionality and compliance check Process:
- ✅ Code compiles/runs without errors
- ✅ Basic functionality works as specified
- ✅ Follows project coding conventions
- ✅ No obvious bugs or issues
- ✅ Acceptance criteria met
Skip: No RA tag resolution (none should exist) Duration: 10-20 minutes
Standard Mode Verification (Complexity 4-6)
Scope: Comprehensive functionality and quality check Process:
- ✅ All Simple Mode checks
- ✅ Integration points working correctly
- ✅ Error handling appropriate
- ✅ Test coverage adequate
- ✅ Performance acceptable
- ✅ Documentation updated
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.
- 2d ago First seen · 363 lines · 0 tokens per session scan B 12e575ef4d7d
verification-adaptive is an agent published in the GitHub repository dtannen/pm (0 stars, last pushed 10mo ago), licensed MIT. It adds 26 tokens to every session and 2,807 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.