From devflow
Use during PREVC Review phase — validates design and plan through agent-driven review with superpowers code review discipline
npx claudepluginhub nexuz-sys/devflow --plugin devflowThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Validates the design spec and implementation plan before any code is written. Uses agent orchestration to get multi-perspective review.
<HARD-GATE> Do NOT begin implementation until the review phase produces approval. No code before review approval on MEDIUM+ scale workflows. </HARD-GATE>Announce at start: "I'm using the devflow:prevc-review skill for the Review phase."
agent({ action: "orchestrate", phase: "R", task: "<task-description>" })
agent({ action: "getSequence", task: "<task-description>" })
MCP returns the optimal reviewer sequence. Typical: architect → code-reviewer → security-auditor.
Read these agent playbooks and apply their review checklists:
.context/agents/architect-specialist.md — always.context/agents/code-reviewer.md — always.context/agents/security-auditor.md — if the task touches auth, data, or APIsInvoke superpowers:requesting-code-review for the plan (not code — the plan itself).
Review the spec and plan for:
The architect agent provides structured feedback via MCP orchestration.
Apply the architect checklist manually. Focus on the 4 criteria above.
Review the implementation plan for:
Skip for SMALL scale or tasks that don't touch security surfaces.
Review for:
agent({ action: "orchestrate", agents: ["security-auditor"], task: "<task-description>" })
Read .context/agents/security-auditor.md and apply its checklist.
Present all review findings to the user in a structured format:
## Review Summary
### Architecture: PASS/FAIL
- [findings]
### Feasibility: PASS/FAIL
- [findings]
### Security: PASS/N/A
- [findings]
### Recommendation: PROCEED / REVISE / BLOCK
If REVISE: specify what needs to change and return to Planning phase. If BLOCK: explain the fundamental issue and discuss with user.
The Review phase gate requires:
When gate is met:
Full mode:
workflow-advance() # Moves to E phase
Lite/Minimal mode: Update task tracking, proceed to Execution.
| Thought | Reality |
|---|---|
| "The plan looks fine to me" | You wrote the plan. Review requires a different perspective. Apply agent checklists. |
| "Security doesn't apply here" | If the task touches data, APIs, auth, or user input — it applies. |
| "Review is slowing us down" | Review catches 80% of issues that would cost 10x to fix in Execution. |
| "Let me just start coding and review later" | That's not review, that's rework. Gate is non-negotiable. |