Agent skill
b
ONLY when user explicitly types /b. Never auto-trigger on plan, design, or architect.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/b
SKILL.md
/b - Structured Plan for Subagent Execution
Create blueprint.md that a fresh /c session can execute with zero prior context.
blueprint.md is the only context bridge between this session and execution. Everything a subagent needs must be in the plan.
Design principle: Maximize safe parallel execution. Design for parallelism from the start, then serialize only where truly necessary.
Flow
- Goal — Clarify what's being built. Check for
decisions.mdat repository root — if found, read it and apply Scan Integration rules below. Ifdecisions.mdcontains## Unresolved, warn the user and ask whether to resolve now or proceed. Fall back to conversation context if nodecisions.mdexists. - Research — Read codebase, identify files, patterns, dependencies
- Design phases (parallelism-first) — See Phase Design below
- Validate — See Validation Checklist below
- Write blueprint.md — At repository root (NEVER in subdirectories). Use
datefor timestamps - Delete
decisions.md— MUST delete immediately after writing blueprint.md. Leaving it behind causes stale context in future sessions - Confirm — Show summary, suggest running
/cin a fresh session
Scan Integration
Only applies when decisions.md exists. Actively transform it — don't just copy:
- Themed decision groups → organize phases by theme
- Pitfalls / Risks → concrete guardrails placed in the specific phase where they apply
- Key decisions → stated in the phase they constrain, so the subagent sees them in context
- Rejected alternatives → per-phase guardrails ("Do NOT use X because Y")
- Scope (what's out) → restate exclusions in relevant phases to prevent drift
The Rationale section is rewritten for execution, not copied from decisions.md. A subagent needs: the approach, what NOT to do, and the patterns to follow.
Phase Design (Parallelism-First)
- Identify the work units — every distinct file or module change
- Group by independence — which units touch completely separate files?
- Form parallel groups first — units that can't conflict go in the same group as separate phases
- Serialize only what must be serial — shared interfaces, types that other phases consume
- Split to unlock parallelism — if a phase touches 4 files but only 1 creates a dependency, split it
Granularity rule: Prefer more smaller phases over fewer large ones, as long as each phase remains coherent. More phases = more parallelism. Never split below the point where a phase can't be understood in isolation.
Phase Requirements
Each phase executes as an isolated subagent in a fresh context — must be self-contained:
- Explicit file paths — name specific files, never "the file from Phase 2"
- No cross-phase references — describe what's needed, don't point to other phases
- One clear objective — single responsibility
- Concrete tasks — actionable, unambiguous
Context Budget
/c targets 50-150 lines per subagent dispatch. Design phases to fit:
- A phase with 5 Reference files and 8 tasks will blow the budget — split it
- If a phase needs extensive context to execute, it's too big or too vague
Reference Field
The **Reference:** field is how a subagent orients itself without exploring the codebase. Guide attention:
**Reference:**
- `src/auth/middleware.ts` — follow the existing guard pattern (line ~30) for new guards
- `src/types/api.ts` — conform to the Response<T> wrapper type
What to include: files to read, what pattern to follow, interfaces to conform to. What NOT to include: files the subagent won't need.
Guardrails Field
Per-phase guardrails derived from decisions.md pitfalls and codebase constraints:
**Guardrails:**
- Do NOT modify the existing User type — extend with a new interface
- All new endpoints must use the validation middleware from src/middleware/validate.ts
Only include when a phase has real risks of going wrong. Not every phase needs guardrails.
Dependencies
- Explicit numeric: "Depends: 2,3"
- No transitive repetition (if 3→2→1, phase 3 lists only "2")
- Document what it provides: "Depends: 2 (creates lib/core.py)" — /c passes this verbatim to subagents
Parallel Safety
- Same group MUST NOT touch same files
- Each phase lists what it modifies via Modifies: field
- When truly uncertain after analysis, serialize (safety > speed)
Validation Checklist
Before writing blueprint.md, verify:
- Parallel maximization — could any sequential dependency be broken by splitting a phase? Could any phase's dependencies be reduced?
- No file collisions — scan every parallel group, confirm no two phases in the same group touch the same file
- Subagent autonomy — for each phase: "could a subagent execute this with ONLY the phase text and the Reference files?" If no, add what's missing. Check that dispatch stays within ~150 lines
- Guardrail placement — every decisions.md pitfall is addressed in a specific phase, not just floating in the Rationale
- Completeness — all decisions are reflected in at least one phase's tasks or guardrails
blueprint.md Format
<!-- @blueprint: /b YYMMDD_HHMM -->
# [Goal Title]
**Goal:** [1-2 sentence description]
**Created:** YYYY-MM-DD
## Rationale
Rewritten for subagent consumption — what approach, what to avoid, what patterns to follow.
**Approach:** [chosen approach]
**Why:** [key reasons grounded in codebase evidence]
**Patterns:** [codebase conventions subagents must follow]
**Non-goals:** [what's explicitly out of scope]
## Phases Overview
| Phase | Name | Depends | Parallel Group | Est. Lines |
|-------|------|---------|----------------|------------|
| 1 | ... | - | A | ~60 |
| 2 | ... | 1 | B | ~80 |
| 3 | ... | 1 | B | ~45 |
| 4 | ... | 2,3 | C | ~70 |
## Phase Details
### Phase 1: [title]
**Modifies:** [file/directory scope]
**Reference:**
- `path/to/file.ts` — [what to look at and why]
**Guardrails:**
- [constraint, if any]
**Tasks:**
- [ ] Task 1
- [ ] Task 2
Note: Depends and Parallel Group live only in the Phases Overview table (for /c's orchestration). Phase Details sections contain only what subagents need: Modifies, Reference, Guardrails, Tasks.
Output
Blueprint created: blueprint.md
- Phases: N (M can run in parallel)
- Parallel groups: N
- Est. dispatch sizes: all within budget / Phase X may be tight
Run /c in a fresh session to execute.
Lifecycle
/a → decisions.md written
↓ (fresh session)
/b → reads decisions.md → writes blueprint.md → deletes decisions.md
↓ (fresh session)
/c → checkpoint → executes → deletes blueprint.md (or reset to checkpoint on failure)
Both decisions.md and blueprint.md are disposable. Each stage produces an artifact, the next consumes and deletes it. The code changes are the deliverable, not the artifacts.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?