superbuild
npx skills add https://github.com/adamos486/skills --skill superbuild
Agent 安装分布
Skill 文档
Superbuild: Plan Execution Engine
Execute implementation plans one phase at a time with strict quality enforcement, test verification, and conventional commit generation.
Overview
Superbuild is a rigid execution engine for implementation plans. It enforces:
- Phase-by-phase execution (no skipping ahead)
- Definition of Done verification before phase completion
- Test presence and passing verification
- Linter/formatter/typechecker enforcement
- Conventional commit message generation per phase
This is NOT a planning skill. Use superplan to create plans, then superbuild to execute them.
Critical Workflow
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â SUPERBUILD EXECUTION FLOW â
â (REPEAT FOR EACH PHASE) â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¤
â â
â 1. INGEST PLAN â User provides plan document path â
â â â NO PLAN = EXIT (ask user, then exit if none) â
â 2. READ PHASES â Output ALL phases with estimates â
â â â IF context high â suggest compact first â
â 3. EXECUTE PHASE â One phase at a time (or parallel if marked) â
â â â USE SUB-AGENTS for parallel phases â
â 4. ENFORCE DOD â Tests exist? Tests pass? Linter? Formatter? â
â â â ALL must pass â continue. ANY fail â STOP â
â 5. UPDATE PLAN â Check off tasks, update status in plan file â
â â â â ï¸ THIS HAPPENS AFTER EVERY PHASE â
â 6. COMMIT MSG â Generate conventional commit (NEVER git ops) â
â â â User handles all git operations â
â 7. FUNCTIONAL TESTâ Explain how to test. Offer integration script â
â â â NEVER auto-create scripts. ALWAYS ask first â
â 8. STOP â Full stop. Suggest compact. Wait for user. â
â â OVERRIDE: --build-all flag continues â
â â
â ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ â
â Steps 3-8 repeat for EACH PHASE. Plan updates after EVERY phase. â
â ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ â
â â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Step 1: Ingest Plan
REQUIRED: Plan document must be provided.
I'll help you execute your implementation plan.
Please provide the plan document:
1. Path to plan file (e.g., docs/feature-plan.md)
2. Paste the plan content directly
Which would you prefer?
If no plan provided after asking: EXIT immediately.
I cannot execute without a plan document.
To create a plan, use the `superplan` skill first:
/superplan
Then come back with the completed plan.
[EXIT - No further action]
NO EXCEPTIONS. Do not improvise. Do not create plans on the fly. Do not proceed without a plan document.
Step 2: Read All Phases
After ingesting the plan:
- Output all phases with their estimates and dependencies
- Check context usage – if high, suggest compacting first
PLAN LOADED: [Feature Name]
ââââââââââââââââââââââââââââââââââââââââââââââââ
| Phase | Name | Est. | Depends On | Parallel With | Status |
|-------|------|------|------------|---------------|--------|
| 0 | Bootstrap | 5 | - | - | ⬠|
| 1 | Setup | 3 | 0 | - | ⬠|
| 2A | Backend | 8 | 1 | 2B, 2C | ⬠|
| 2B | Frontend | 5 | 1 | 2A, 2C | ⬠|
| 2C | Tests | 3 | 1 | 2A, 2B | ⬠|
| 3 | Integration | 5 | 2A,2B,2C | - | ⬠|
Total: 29 points | Parallel phases: 2A, 2B, 2C
â ï¸ Context Usage Advisory
If context is high, consider compacting before continuing.
Large plans consume significant context per phase.
Ready to execute Phase 0?
Step 3: Execute Phase
Sequential Phases
Execute one at a time. Do not proceed to next phase until current is COMPLETE.
Parallel Phases
For phases marked “Parallel With”, MUST use sub-agents or parallel Task tool calls.
EXECUTING PARALLEL PHASES: 2A, 2B, 2C
âââââââââââââââââââââââââââââââââââââ
Launching 3 parallel sub-agents...
[Sub-agent 2A: Backend implementation]
[Sub-agent 2B: Frontend implementation]
[Sub-agent 2C: Test implementation]
Each sub-agent MUST return:
- Implementation status
- Definition of Done checklist status
- Conventional commit message
CRITICAL: Each sub-agent returns its commit message. Main agent MUST bubble up ALL commit messages to user.
Step 4: Enforce Definition of Done
EVERY phase must pass ALL quality gates before completion.
Quality Gate Checklist
DEFINITION OF DONE - Phase [X]
ââââââââââââââââââââââââââââââ
[ ] Tests exist for new code
[ ] All tests pass (new AND existing)
[ ] Linter passes ([detected linter])
[ ] Formatter passes ([detected formatter])
[ ] Type checker passes ([detected checker])
[ ] No new warnings introduced
[ ] Plan document updated (checkboxes, status) â BEFORE commit message
Enforcement Rules
| Check | If PASS | If FAIL |
|---|---|---|
| Tests exist | Continue | STOP – Point out missing tests |
| Tests pass | Continue | STOP – Ask user to fix |
| Linter | Continue | STOP – Ask user to fix |
| Formatter | Continue | STOP – Ask user to fix |
| Type checker | Continue | STOP – Ask user to fix |
| Plan updated | Generate commit | STOP – Update plan first |
STOP means STOP. Do not proceed. Do not offer to fix automatically. Ask user to fix and re-run.
Failure Output Format
When any check fails, output:
â DEFINITION OF DONE FAILED
âââââââââââââââââââââââââââ
Issue: [Missing tests | Tests failing | Linter errors | etc.]
[Details of what failed]
Please fix, then tell me to continue.
[EXECUTION HALTED]
See references/ENFORCEMENT-GUIDE.md for detailed failure message templates and output parsing patterns.
Step 5: Update Plan Document (EVERY PHASE)
â ï¸ MANDATORY: This step executes after EVERY phase, not just at the end.
After ALL quality gates pass, BEFORE generating commit message, UPDATE THE PLAN FILE:
- Check off completed tasks (
- [ ]â- [x]) - Update phase status in overview table (
â¬ââ) - Mark DoD items complete (
- [ ]â- [x])
PLAN DOCUMENT UPDATED - Phase [X]
âââââââââââââââââââââââââââââââââ
File: [plan-file-path]
Updates applied:
- Tasks: X/X items checked [x]
- DoD: X/X items checked [x]
- Status: ⬠â â
The plan now reflects Phase [X] completion.
See references/PLAN-UPDATES.md for detailed patterns and error handling.
WHY EVERY PHASE:
- Plan survives context compaction (conversation may not)
- Progress visible to anyone reading the plan
- Enables clean handoff between sessions
- Creates audit trail in git history
DO NOT SKIP THIS STEP. If you find yourself generating a commit message without updating the plan first, STOP and update the plan.
Step 6: Generate Conventional Commit
After Definition of Done passes, generate commit message.
CRITICAL: OUTPUT ONLY. NEVER run git commands.
PHASE [X] COMPLETE - Conventional Commit Message
ââââââââââââââââââââââââââââââââââââââââââââââââ
<type>(<scope>): <short summary>
<body - detailed description of changes>
Files changed:
- path/to/file1.ts (CREATE)
- path/to/file2.ts (MODIFY)
- path/to/file3.ts (DELETE)
<footer - issue refs, breaking changes>
ââââââââââââââââââââââââââââââââââââââââââââââââ
â ï¸ DO NOT COMMIT - Copy this message and run:
git add . && git commit -m "..."
User handles all git operations.
Commit Types
| Type | When |
|---|---|
feat |
New feature |
fix |
Bug fix |
refactor |
Code restructure (no behavior change) |
test |
Adding/updating tests |
docs |
Documentation |
style |
Formatting (no code change) |
chore |
Build, config, dependencies |
perf |
Performance improvements |
Git CLI Safe Commit Messages
CRITICAL: Commit messages must be safe for direct use with git commit -m.
AVOID: Double quotes, backticks, dollar signs, exclamation marks, backslashes, hash at line start
SAFE: Letters, numbers, spaces, -, _, ., ,, :, (, ), /, '
See references/COMMIT-FORMAT.md for full character table and HEREDOC format for multi-line messages.
Parallel Phase Commits
When parallel phases complete, output ALL commit messages:
PARALLEL PHASES COMPLETE (2A, 2B, 2C)
ââââââââââââââââââââââââââââââââââââââ
PHASE 2A - Commit Message:
ââââââââââââââââââââââââââ
feat(api): implement user authentication endpoints
...
PHASE 2B - Commit Message:
ââââââââââââââââââââââââââ
feat(ui): create login form component
...
PHASE 2C - Commit Message:
ââââââââââââââââââââââââââ
test(auth): add authentication test coverage
...
â ï¸ Create separate commits for each phase, or squash as appropriate.
User handles all git operations.
Step 7: Functional Testing Instructions
After commit message, explain how to functionally test the phase.
FUNCTIONAL TESTING - Phase [X]
ââââââââââââââââââââââââââââââ
To manually verify this phase works:
1. [Step 1 - e.g., Start the development server]
$ npm run dev
2. [Step 2 - e.g., Navigate to the feature]
Open http://localhost:3000/[feature]
3. [Step 3 - e.g., Test the happy path]
- Fill in [field1] with "test value"
- Click [button]
- Verify [expected result]
4. [Step 4 - e.g., Test error handling]
- Submit empty form
- Verify error message appears
Expected Results:
- [Result 1]
- [Result 2]
Integration Test Script Offer
ONLY if applicable. ALWAYS ask. NEVER auto-create.
Would you like me to write an integration test script for this phase?
This would:
- Automate the manual verification steps above
- Be saved to scripts/test-phase-[X].sh (or .py)
- Be runnable for regression testing
Options:
1. Yes, write the integration test script
2. No, manual testing is sufficient
[WAIT FOR USER RESPONSE]
If user says yes: Write script to scripts/ directory.
If user says no: Continue to Step 8.
Step 8: Stop Execution
FULL STOP after each phase (unless –build-all override).
ââââââââââââââââââââââââââââââââââââââââââââââââ
PHASE [X] EXECUTION COMPLETE
ââââââââââââââââââââââââââââââââââââââââââââââââ
Summary:
- Definition of Done: â
All checks passed
- Plan Document: â
Updated (tasks and status checked off)
- Conventional Commit: â
Generated (user to commit)
- Functional Testing: â
Instructions provided
Progress:
| Phase | Status |
|-------|--------|
| 0 | â
Complete |
| 1 | â
Complete |
| 2A | ⬠Next |
| 2B | ⬠Pending |
| 2C | ⬠Pending |
| 3 | ⬠Pending |
ð¡ Context Management Suggestion
Consider compacting the conversation before the next phase
to preserve context for the remaining work.
[EXECUTION PAUSED]
To continue: "Continue to Phase 2A"
To compact first: Use /compact then return with "Resume superbuild"
ââââââââââââââââââââââââââââââââââââââââââââââââ
Context Compaction Behavior
CRITICAL: If this session resumes after context compaction:
- Complete ONLY the phase that was in-progress
- Output the commit message and functional test instructions
- STOP – Do not auto-continue to next phase
- Wait for explicit user instruction: “Continue to Phase X”
The todo list showing pending phases is NOT authorization to continue. Only explicit user instruction authorizes next phase execution.
POST-COMPACTION RESUME
ââââââââââââââââââââââ
Detected: Session resumed after compaction
Phase in progress: [X]
Completing Phase [X]...
[finish work]
PHASE [X] COMPLETE
[commit message + functional test instructions]
[EXECUTION PAUSED]
Remaining phases: [list]
To continue: "Continue to Phase [Y]"
â ï¸ I will NOT auto-continue. Awaiting your instruction.
Build-All Override
ONLY if user explicitly specifies.
â ï¸ BUILD-ALL MODE DETECTED
ââââââââââââââââââââââââââ
You've requested to build the entire plan without stopping.
This is NOT RECOMMENDED because:
- Context may be exhausted mid-build
- Errors compound across phases
- You lose ability to commit incrementally
Are you sure you want to continue?
1. Yes, build all phases (override safety)
2. No, execute phase by phase (recommended)
Rationalizations to Reject
| Excuse | Reality |
|---|---|
| “Let me just do the next phase too” | NO. Stop after each phase. |
| “The tests are mostly there” | NO. Tests must exist for ALL new code. |
| “It’s just a small linting error” | NO. All quality gates must pass. |
| “I’ll commit later” | NO. Generate commit message NOW. |
| “This phase doesn’t need tests” | NO. Every phase with code needs tests. |
| “Let me skip to the important part” | NO. Execute phases in dependency order. |
| “I can fix the formatter later” | NO. Formatter must pass before completion. |
| “The user wants to move fast” | NO. Quality enforcement is non-negotiable. |
Red Flags – STOP Immediately
If you catch yourself thinking any of these, STOP:
- “This is taking too long, let me skip ahead”
- “The user seems impatient, let me batch phases”
- “Tests can come after the feature works”
- “Linting is just style, not critical”
- “I’ll generate all commit messages at the end”
- “The plan doesn’t explicitly require tests”
All of these = violation of superbuild protocol.
Quality Commands by Stack
See references/ENFORCEMENT-GUIDE.md for stack-specific commands (JS/TS, Python, Go, Rust).
Summary: The Iron Rules
- No plan = No execution – Exit if plan not provided
- One phase at a time – Unless parallel phases (use sub-agents)
- All quality gates must pass – No exceptions
- Update plan after EVERY phase – Check off tasks, update status
- Generate commit message – Never run git commands
- Explain functional testing – Ask before writing scripts
- Full stop after phase – Unless –build-all override
- Suggest compact – Context management is critical
Superbuild is rigid by design. The enforcement protects code quality. Do not rationalize around it.