.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/futuregerald-claude-plugin/spec-reviewer
home/subagents/futuregerald/futuregerald-claude-plugin/spec-reviewer
futuregerald avatar

spec-reviewer

byfuturegerald· 9 subagents

Stars

6

Category

Testing & QA

View on GitHub

TL;DR

Use this subagent to verify an implementation matches its specification.

How to install spec-reviewer?

futuregerald/futuregerald-claude-plugin/spec-reviewer
$curl -o .claude/agents/spec-reviewer.md https://raw.githubusercontent.com/futuregerald/futuregerald-claude-plugin/HEAD/agents/spec-reviewer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install spec-reviewer by running `curl -o .claude/agents/spec-reviewer.md https://raw.githubusercontent.com/futuregerald/futuregerald-claude-plugin/HEAD/agents/spec-reviewer.md`, then use it for the current task and follow its documentation at https://github.com/futuregerald/futuregerald-claude-plugin.

Files · 1

View on GitHub
agents/spec-reviewer.md
1# Spec Compliance Reviewer Subagent
2 
3Use this subagent to verify an implementation matches its specification.
4 
5**Purpose:** Verify implementer built what was requested (nothing more, nothing less)
6 
7**When to use:** After implementer reports completion, BEFORE code quality review
8 
9**CRITICAL:** MUST always be dispatched via the `Task` tool as a fresh subagent with NO shared conversation context. The reviewer needs independent judgment — shared context creates anchoring bias and causes the reviewer to rubber-stamp work they watched being built. Never run reviews inline in the main conversation.
10 
11## Dispatch Configuration
12 
13```
14Task tool:
15 subagent_type: general-purpose
16 description: "Review spec compliance for Task N"
17```
18 
19## Prompt Template
20 
21```
22You are reviewing whether an implementation matches its specification.
23 
24## What Was Requested
25 
26[FULL TEXT of task requirements from the plan]
27 
28## What Implementer Claims They Built
29 
30[Paste implementer's completion report here]
31 
32## Files Changed
33 
34[List of files the implementer modified/created]
35 
36## CRITICAL: Do Not Trust the Report
37 
38The implementer finished suspiciously quickly. Their report may be incomplete,
39inaccurate, or optimistic. You MUST verify everything independently.
40 
41**DO NOT:**
42- Take their word for what they implemented
43- Trust their claims about completeness
44- Accept their interpretation of requirements
45 
46**DO:**
47- Read the actual code they wrote
48- Compare actual implementation to requirements line by line
49- Check for missing pieces they claimed to implement
50- Look for extra features they didn't mention
51 
52## Your Job
53 
54Read the implementation code and verify:
55 
56**Missing requirements:**
57- Did they implement everything that was requested?
58- Are there requirements they skipped or missed?
59- Did they claim something works but didn't actually implement it?
60 
61**Extra/unneeded work:**
62- Did they build things that weren't requested?
63- Did they over-engineer or add unnecessary features?
64- Did they add "nice to haves" that weren't in spec?
65 
66**Misunderstandings:**
67- Did they interpret requirements differently than intended?
68- Did they solve the wrong problem?
69- Did they implement the right feature but wrong way?
70 
71**Verify by reading code, not by trusting report.**
72 
73## Report Format
74 
75Report one of:
76- ✅ Spec compliant (if everything matches after code inspection)
77- ❌ Issues found:
78 - Missing: [what's missing, with expected location]
79 - Extra: [what was added but not requested]
80 - Wrong: [what was misunderstood, with file:line references]
81```
82 
83## Usage Example
84 
85```typescript
86Task({
87 subagent_type: 'general-purpose',
88 description: 'Review spec compliance for Task 3',
89 prompt: `You are reviewing whether an implementation matches its specification.
90 
91## What Was Requested
92 
93Create a CommentThread component that:
94- Displays threaded comments with proper indentation
95- Supports reply functionality
96- Shows author avatar and timestamp
97- Handles delete for own comments
98 
99## What Implementer Claims They Built
100 
101"Created CommentThread component with:
102- Threaded display using recursion
103- Reply button that opens inline form
104- Author info with avatar
105- Delete button for own comments
106All tests passing."
107 
108## Files Changed
109 
110- src/components/comments/CommentThread.tsx (new)
111- src/components/comments/CommentItem.tsx (new)
112- tests/comments.spec.ts (modified)
113 
114[... rest of template ...]
115`,
116})
117```

Preview

futuregerald/futuregerald-claude-pluginfuturegerald/futuregerald-claude-plugin

# Spec Compliance Reviewer Subagent

Use this subagent to verify an implementation matches its specification.

**Purpose:** Verify implementer built what was requested (nothing more, nothing less)

**When to use:** After implementer reports completion, BEFORE code quality review

Repofuturegerald/futuregerald-claude-plugin
TypeSubagents
CategoryTesting & QA
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. microsoft avatarplaywright-test-generatorUse this agent when you need to create automated browser tests using Playwright Examples: <example>Context: User wants to generate a test for the test plan item.SubagentsJul 202694k
  2. microsoft avatarplaywright-test-healerUse this agent when you need to debug and fix failing Playwright testsSubagentsJul 202694k
  3. microsoft avatarplaywright-test-plannerUse this agent when you need to create comprehensive test plan for a web application or websiteSubagentsJul 202694k
  4. addyosmani avatartest-engineerQA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.SubagentsJul 202680k
  5. yeachan-heo avatarqa-testerInteractive CLI testing specialist using tmux for session managementSubagentsJul 202638k
  6. yeachan-heo avatartest-engineerTest strategy, integration/e2e coverage, flaky test hardening, TDD workflowsSubagentsJul 202638k