From devconcept
Use when an implementer subagent has produced code you're about to accept, merge, or report as done. Requires two review passes (spec compliance, then code quality) before treating subagent output as finished work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devconcept:subagent-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A subagent's summary describes what it intended to do, not what it did. Accepting subagent output unreviewed is the most common way defects and scope drift enter a session.
A subagent's summary describes what it intended to do, not what it did. Accepting subagent output unreviewed is the most common way defects and scope drift enter a session.
Skip for read-only subagents (research, exploration, summaries) and trivial mechanical dispatches where you've already read the full diff.
Do not collapse the two stages. Each catches different failures, and running them together lets scope-drift hide behind plausible-looking code.
Question: Did the subagent do what was asked — no more, no less?
If the diff doesn't match the spec, prefer sending it back to a subagent with the specific gap when subagent iteration is available and useful. If delegation is unavailable, the fix is small, or local repair is faster and safer, fix it yourself and report the drift explicitly. Silent repair hides the pattern and lets the same drift recur.
Only run after Stage 1 passes.
Question: Would this pass review from a careful teammate on this repo?
Report what the subagent changed and what the review caught (or didn't). If you accepted scope drift, say so explicitly and why.
Stage 1 - Spec compliance: pass | fail
Evidence:
- requirement -> diff/file evidence
Scope drift:
- ...
Stage 2 - Code quality: pass | fail
Issues:
- ...
Decision:
- accept | revise locally | send back to subagent
npx claudepluginhub pewepw/devconcept --plugin devconceptGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.