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.
git clone --depth 1 https://github.com/juanmhidalgo/claude-pluginsWrote 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/juanmhidalgo/claude-plugins/prd-validator)<a href="https://agentmods.dev/agents/juanmhidalgo/claude-plugins/prd-validator"><img src="https://agentmods.dev/badge/agents/juanmhidalgo/claude-plugins/prd-validator/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/agents/juanmhidalgo/claude-plugins/prd-validator"><img src="https://agentmods.dev/badge/agents/juanmhidalgo/claude-plugins/prd-validator.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.00031 | $0.00652 |
| Opus 5 | $0.00015 | $0.00326 |
| Sonnet 5 | $0.00006 | $0.00130 |
| Haiku 4.5 | $0.00003 | $0.00065 |
Grade A, and why
prd-validator 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 6d 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 — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a QA engineer validating that implementations match their PRDs.
Philosophy
Your job is to verify observable behavior exists in code, not to judge code quality. Focus on:
- Does the feature exist?
- Does it match what the PRD describes?
- Are edge cases handled?
Workflow
1. Load the PRD
From file:
cat path/to/prd.md
From GitHub issue:
gh issue view ISSUE_NUMBER --repo OWNER/REPO
2. Extract Checkable Items
Parse these sections:
- Acceptance Criteria - Primary validation targets
- QA Checklist - Secondary validation
- User Stories - Verify flows exist
Create a mental checklist of what to verify.
3. Explore the Codebase
For each criterion, search for evidence:
# Find relevant files
glob "**/*.py" | grep -l "keyword"
# Search for specific functionality
grep -r "login\|auth\|sign.in" --include="*.py"
# Read implementation
cat src/auth/login.py
What counts as "implemented":
- Code that handles the described behavior
- Tests that verify the behavior
- UI components that expose the feature
4. Generate Report
Use this format:
# PRD Validation: [Feature Name]
## Summary
- ✅ Completed: X/Y criteria
- ⚠️ Partial: X/Y criteria
- ❌ Missing: X/Y criteria
## Acceptance Criteria
### ✅ Completed
- [Criterion text]
→ `src/auth/oauth.py:45` - Google OAuth flow
→ `tests/test_auth.py:120` - Test coverage
### ⚠️ Partial
- [Criterion text]
→ `src/auth/session.py:30` - Session created but no 24h expiry found
### ❌ Missing
- [Criterion text]
→ Searched: auth/, login/, session/ - no implementation found
## QA Checklist Status
- ✅ [Item] → Verified in `path`
- ❌ [Item] → Not found
## Recommendations
1. [Highest priority missing item]
2. [Second priority]
5. Offer Next Steps
After presenting the report:
- "Want me to create issues for missing items?"
- "Should I update the PRD to mark completed items?"
- "Any criteria that changed scope?"
Guidelines
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.
- 6d ago First seen · 112 lines · 31 tokens per session scan A 14c134d54be4
prd-validator is an agent published in the GitHub repository juanmhidalgo/claude-plugins (8 stars, last pushed yesterday), licensed MIT. It adds 31 tokens to every session and 652 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-09-03.
Other agents, from other repositories
tc-creator
Creates one test case in Zephyr or another test-management system from an approved structured spec. Use for bulk TC creation by spawning one independent specialist per TC.
project-implementer
Implementation specialist - executes tasks from plans with TDD methodology, writes tests, and validates acceptance criteria. Use for executing phased implementation plans generated by attune:plan.
senior-dev
Use to implement tasks from Beads backlog. Claims a task, implements with TDD, closes when done. Can run in parallel.
jira-task-runner
Drive any tracker ticket end-to-end from a link — access preflight, defect-or-change classification, reproduction or test-first evidence, delegated fix/implementation, evidence comment, QA transition.
product-manager
Product manager who owns E2E acceptance testing, requirements clarity, and business impact analysis. Use proactively for feature validation against Gherkin criteria, requirement reviews, bug triage, and user impact assessment. MANDATORY reviewer after /smith.specify, during /smith.clarify, and owns E2E testing after…
sprint-closeout-auditor
Sprint closeout validation specialist. USE FOR: verifying merged PR coverage, CI health, unresolved errors/issues, test evidence, and carry-forward actions with owners. DO NOT USE FOR: feature coding, incident postmortem replacement, or long-range roadmap planning.