prd-validator

prd-validator is an agent for Claude Code from juanmhidalgo/claude-plugins. It costs 31 tokens per session (652 once invoked), scanned A, original, MIT.

A quality-checking agent that compares implemented code with a PRD’s acceptance criteria, user stories, and QA checklist. A PRD is a feature requirements document, and acceptance criteria are the specific behaviors used to judge completion.

In plain words
What is it for?
Use it to inspect code, tests, and user flows, then produce a report with evidence and recommendations for missing work.
Why use it?
It shows which requirements are implemented, incomplete, or absent instead of relying on a general sense that the feature is finished.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the prd-toolkit plugin — 1 skill, 3 commands, 2 agents shipped together

Good fit Use it to inspect code, tests, and user flows, then produce a report with evidence and recommendations for missing work.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/juanmhidalgo/claude-plugins/prd-validator
Install

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.

Clone the repo
git clone --depth 1 https://github.com/juanmhidalgo/claude-plugins

Made for: Claude Code.

Or install prd-toolkit, the plugin that ships this one along with the rest of its 1 skill, 3 commands, 2 agents.

Wrote 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.

agentmods badge for prd-validator

README.md
[![agentmods](https://agentmods.dev/badge/agents/juanmhidalgo/claude-plugins/prd-validator/github.svg)](https://agentmods.dev/agents/juanmhidalgo/claude-plugins/prd-validator)
Your own site
<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.

agentmods 80×15 button for prd-validator

Your own site · 80×15
<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>
Per session 31 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 652 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash 14c134d54be4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

prd-toolkit/agents/prd-validator.md · 112 lines

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

Read the full file on GitHub · 112 lines

Changes

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.

  1. 6d ago First seen · 112 lines · 31 tokens per session scan A 14c134d54be4

Subscribe to this mod's changes

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.

Related

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.

HoangNguyen0403/agent-skills-standard · 35 tokens

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.

athola/claude-night-market · 38 tokens

senior-dev

Use to implement tasks from Beads backlog. Claims a task, implements with TDD, closes when done. Can run in parallel.

avelikiy/great_cto · 31 tokens

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.

atretyak1985/swarmery · 42 tokens

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…

ATTCKDigital/smith · 78 tokens

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.

ivegamsft/basecoat · 59 tokens