feature-parity-auditor

feature-parity-auditor is an agent for Claude Code from felipearomani/claude-shipyard. It costs 106 tokens per session (1,566 once invoked), scanned B, original, MIT.

An automated reviewer that compares a written specification or ticket with a code change. It checks whether the implementation covers the promised requirements and edge cases, rather than reviewing coding style.

In plain words
What is it for?
Use it to audit a pull request against a spec, ticket, design document, or other requirements and report what is delivered, missing, or only partly covered.
Why use it?
It finds features or acceptance criteria that a pull request has missed before the change is merged.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the fleet plugin — 4 skills, 3 agents shipped together

Good fit Use it to audit a pull request against a spec, ticket, design document, or other requirements and report what is delivered, missing, or only partly covered.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/felipearomani/claude-shipyard/feature-parity-auditor
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/felipearomani/claude-shipyard

Made for: Claude Code.

Or install fleet, the plugin that ships this one along with the rest of its 4 skills, 3 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 feature-parity-auditor

README.md
[![agentmods](https://agentmods.dev/badge/agents/felipearomani/claude-shipyard/feature-parity-auditor/github.svg)](https://agentmods.dev/agents/felipearomani/claude-shipyard/feature-parity-auditor)
Your own site
<a href="https://agentmods.dev/agents/felipearomani/claude-shipyard/feature-parity-auditor"><img src="https://agentmods.dev/badge/agents/felipearomani/claude-shipyard/feature-parity-auditor/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 feature-parity-auditor

Your own site · 80×15
<a href="https://agentmods.dev/agents/felipearomani/claude-shipyard/feature-parity-auditor"><img src="https://agentmods.dev/badge/agents/felipearomani/claude-shipyard/feature-parity-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,566 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00106 $0.01566
Opus 5 $0.00053 $0.00783
Sonnet 5 $0.00021 $0.00313
Haiku 4.5 $0.00011 $0.00157

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

Security

Grade B, and why

feature-parity-auditor 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 9d 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.

Tells the agent never to refusemediumAnti-refusal

Suppressing the ability to decline removes a core safety control; a later harmful request then succeeds.

- Do not refuse if some requirements are auditable and others aren't — partial audits are valuable. Just be explicit about what you couldn't check.

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

plugins/fleet/agents/feature-parity-auditor.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a feature-parity auditor. You exist because specs and tickets list things to build, but PRs sometimes ship 80% of them and call it done. Your job is to compare the requirements side by side with the code, and report what's actually delivered vs. what's missing.

You are not a code reviewer. You don't comment on style, abstraction, or maintainability. You answer one question: for every acceptance criterion and functional requirement in the spec/ticket, did the code actually do it?

Inputs you'll be given

In order of priority, you should consume whatever's provided:

  1. Spec document (preferred) — a path handed to you: markdown, HTML, an RFC, a design doc, an ADR. Read whichever sections carry the commitments: acceptance criteria, functional requirements, edge cases and failure modes, API contracts. Section names and language vary by project — match on meaning, not on a fixed heading.
  2. Ticket body — a tracker issue or a markdown brief. Often terser than the spec, but it may carry late edits the spec missed.
  3. PR diff — the artifact under audit. Usually the output of gh pr diff <NUM>, or a path to a file containing it.
  4. Repo path — so you can read files at their post-PR state if you need more context than the diff shows.

If a critical input is missing, say so explicitly and audit what you can. Don't pretend to verify against a spec you don't have.

Method

Work in three passes.

Pass 1 — Extract requirements

From the spec and ticket, build one flat list of testable items. Pull from:

  • Each numbered functional requirement.
  • Each bullet in the acceptance-criteria checklist.
  • Each row of the edge-cases table.
  • Each endpoint / payload / error code in the API contracts section.
  • Each migration step, each feature flag, each new metric/alert.

Normalize each into a short statement that has a clear "did it happen or not" answer. Drop or merge items that are pure non-functional aspirations (e.g. "p95 < 300ms") — you can't verify those from a diff. Note them in a separate "Not auditable from diff" appendix so the reader knows you saw them.

Read the full file on GitHub · 113 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. 9d ago First seen · 113 lines · 106 tokens per session scan B a5a0414d8b32

Subscribe to this mod's changes

feature-parity-auditor is an agent published in the GitHub repository felipearomani/claude-shipyard (1 stars, last pushed 9d ago), licensed MIT. It adds 106 tokens to every session and 1,566 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (tells the agent never to refuse). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

arbiter

Strong-tier, different-family, adversarial, ACTING judge with FINAL veto on holistic acceptance. Unlike the lightweight phase-validator (which reads a HANDOFF and checks exit-condition prose), the arbiter re-runs the objective gates itself (typecheck, tests, lint, the phase's command conditions) and judges holistic…

SethGammon/Citadel · 132 tokens

project-auditor

Use for /audit or when no PROJECT.md exists. Auditor + Architect hybrid — stack detection, vulnerability analysis, outdated dependency scan, architectural debt, and a concrete refactoring plan.

avelikiy/great_cto · 41 tokens

legal-reviewer

Legal-services / legal-tech specialist pre-implementation reviewer for legal archetype (law firms, solo practitioners, legal-SaaS). Outputs threat model TM-{slug}.md and signs off Critical/High mitigations before senior-dev claims tasks.

avelikiy/great_cto · 52 tokens

accounting-reviewer

Bookkeeping / general-ledger / financial-close specialist pre-implementation reviewer for fintech and enterprise-saas archetypes. Outputs threat model TM-accounting-{slug}.md and signs off Critical/High mitigations before senior-dev claims tasks.

avelikiy/great_cto · 52 tokens

edtech-reviewer

Education-technology specialist pre-implementation reviewer for edtech archetype. Specialises in COPPA verifiable parental consent, FERPA student-data handling, GDPR-K (digital age of consent), Section 508 + WCAG 2.2 AA accessibility, child-safety content moderation (CSAM hash, NCMEC reporting), and US state…

avelikiy/great_cto · 112 tokens

performance-engineer

Performance specialist. Owns SLO/SLA budget design, load test execution (k6/Locust/Gatling), latency regression analysis, flame graph interpretation, and capacity planning. Runs after senior-dev, before QA. Writes docs/performance/PERF-{slug}.md. Activated when performance-sla is set in PROJECT.md, or archetype is…

avelikiy/great_cto · 83 tokens