Design spec-based review workflows with visual proof and issue classification. Use when setting up review processes, validating against specifications, or implementing screenshot-based visual validation.
Designs spec-based review workflows with visual proof and issue classification. Use when setting up review processes, validating against specifications, or implementing screenshot-based visual validation.
/plugin marketplace add melodic-software/claude-code-plugins/plugin install google-ecosystem@melodic-softwareThis skill is limited to using the following tools:
Design review workflows that validate implementation against specifications with visual proof.
Review answers: "Is what we built what we asked for?"
This is different from testing which answers: "Does it work?"
Establish where specifications live:
specs/
├── feature-{name}.md
├── bug-{name}.md
└── chore-{name}.md
Or:
specs/issue-{number}-{type}.md
Identify critical paths that need visual proof:
Example:
1. Take screenshot of dashboard (initial state)
2. Click "Export" button
3. Take screenshot of export modal
4. Complete export
5. Take screenshot of success message
Configure issue severity levels:
| Severity | Criteria | Action |
|---|---|---|
| blocker | Prevents release, harms UX | Auto-resolve |
| tech_debt | Quality issue, works | Document |
| skippable | Polish, preference | Ignore |
Design the auto-resolution loop:
Review
├── Issues found?
│ ├── Blockers? → /patch → /implement → Re-review
│ └── No blockers → Success
└── No issues → Success
Maximum 3 retry attempts
Options for screenshot storage:
agents/{adw_id}/review_img/# Review Implementation Against Spec
## Variables
spec_file: $1
## Instructions
1. **Read Specification**
- Understand requirements
- Note success criteria
2. **Analyze Changes**
- git diff origin/main
- Compare against spec
3. **Capture Screenshots**
- 1-5 screenshots of critical functionality
- Number: 01_name.png, 02_name.png
4. **Classify Issues**
- blocker: Must fix before release
- tech_debt: Document for later
- skippable: Can ignore
## Output Format
{
"success": boolean,
"review_summary": "string",
"review_issues": [...]
}
{
"issue_description": "What's wrong",
"issue_resolution": "How to fix it",
"issue_severity": "blocker| tech_debt |skippable"
}
for attempt in range(1, MAX_ATTEMPTS + 1):
review_result = run_review()
if review_result.success:
break # No blockers
blockers = filter(issues, severity="blocker")
for blocker in blockers:
create_patch(blocker)
implement_patch()
# Loop continues with re-review
/plan → What are we building?
/build → Make it real
/test → Does it work?
/review → Is it what we asked for? ← THIS SKILL
/patch → Fix blockers
/document → How does it work?
Date: 2025-12-26 Model: claude-opus-4-5-20251101
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.