From superpipelines
Functional-verification protocol that checks acceptance-criteria compliance, detects under-build/over-build, and emits a binary pass/fail verdict before Stage 2 quality review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpipelines:pipeline-spec-reviewer-protocolThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<overview>
When the active platform_profile.capabilities.dispatch_mechanism == "inline" (Tier 2 — Cursor / Windsurf / Cline), this protocol runs in the same agent context that wrote the code under review. Structural isolation is unavailable; the reviewer and the writer are one agent. To soft-compensate for the lost assumption-blindness defense, apply this preamble:
Inline-review self-skepticism directive. You are reviewing your own prior work in this same session. Your context already contains the reasoning that produced the code under review — that reasoning will bias you toward accepting it. Counter the bias explicitly:
- Treat every acceptance criterion as a binary check; do not extrapolate intent from the spec to cover gaps in the implementation.
- When in doubt about whether an AC is met, flag rather than pass. The default is FAIL; PASS requires affirmative evidence.
- List the specific lines / files that satisfy each AC. If you cannot point to lines, the AC is unverified.
- Reject any "the spirit of the AC is met" reasoning. Spec compliance is mechanical, not interpretive.
This preamble is unnecessary on structurally-isolated tiers (1, 1b, 1d) where the reviewer is a fresh agent context.
Evaluate the executor's output against each AC:
Check every modified file for over-build:
files list?<rationalization_table>
| Excuse | Reality |
|---|---|
| "Useful over-build" | Creep violates the contract parallel workers depend on; FAIL always. |
| "Mostly met" | Mostly = Under-build. Functional correctness is not a gradient. |
| "Trust the executor" | Executors cannot review themselves. Verify every AC against the actual output. |
| </rationalization_table> |
${CLAUDE_PLUGIN_ROOT}/skills/sk-write-review-isolation/SKILL.md — Isolation protocol.${CLAUDE_PLUGIN_ROOT}/skills/sk-claude-code-conventions/SKILL.md — Formatting rules.npx claudepluginhub gustavo-meilus/superpipelines --plugin superpipelinesProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
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.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.