Plan review skill
Skill smith-horn/product-builder-starter/skills/plan-review-skill
11 Claude Code skills for product builders shipping with agentic AI
npx -y skills add smith-horn/product-builder-starter --skill plan-review-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 11 stars11 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Multi-perspective plan review with VP Product, VP Engineering, and VP Design. Use when reviewing implementation plans, design docs, architecture proposals, or wave plans for blockers, anti-patterns, conflicts, and regressions.
SKILL.md
2.6 KB, as published. Nobody here has run it
Plan Review
Multi-perspective plan review with VP Product, VP Engineering, and VP Design to identify blockers, anti-patterns, conflicts, and regressions.
Execution
When triggered, immediately:
- Read
agent-prompt.mdfrom this skill's directory:- User install:
~/.claude/skills/plan-review-skill/agent-prompt.md - Project install:
.claude/skills/plan-review-skill/agent-prompt.md
- User install:
- Spawn a single Task with
subagent_type: "general-purpose"passing the agent-prompt content as the prompt - Include in the prompt: the user's request, the plan file path or content, and current working directory
- Wait for the agent to complete
- Present the agent's summary to the user
Do NOT execute the review workflow in this session. The subagent handles VP agent spawning, issue consolidation, and user interaction (AskUserQuestion). Plan edits are returned as recommendations for the coordinator to apply — the subagent should not edit files directly, as background execution auto-denies Write/Edit tools.
Execution Context Requirements
This skill spawns a general-purpose subagent that coordinates VP review agents and consolidates findings.
Foreground execution required: Yes for interactive AskUserQuestion prompts. Background execution auto-denies clarifying questions.
Dispatcher tools (frontmatter): Read, Task Subagent tools: Read, Grep, Glob, AskUserQuestion
Write/Edit delegation: The subagent returns approved plan modifications as text. The coordinator (main conversation) applies edits via its own Edit tool. This makes the skill resilient to all permission modes.
Reference: See Claude Code documentation on subagent tool permissions.
Changelog
v2.0.0
- Refactor: Thin dispatcher pattern — full logic extracted to agent-prompt.md
- Skill runs in isolated subagent context, significantly reducing post-compaction restoration overhead
See agent-prompt.md for prior changelog entries.