en un clic
source-command-build
Build the current sprint
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Build the current sprint
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Security and quality audit of application codebase
Autonomous agent execution mode
Bridgebuilder — Autonomous PR Review
Triage a bug report through structured phases and create micro-sprint
L2 cost-budget enforcer — daily token cap with fail-closed semantics under uncertainty (billing-API primary, internal counter fallback, periodic reconciliation cron)
L5 cross-repo status reader — reads structured cross-repo state via gh API with TTL cache + stale fallback, BLOCKER extraction from NOTES.md, per-source error capture, p95 <30s for 10 repos
| name | source-command-build |
| description | Build the current sprint |
Use this skill when the user asks to run the migrated source command build.
Build the current sprint. Auto-detects which sprint needs work and delegates to /implement. Zero arguments needed — just type /build.
This is a Golden Path command. It routes to the existing truename command (/implement sprint-N) with automatic sprint detection.
/build # Build current sprint (auto-detected)
/build sprint-3 # Override: build specific sprint
Verify a sprint plan exists:
source .claude/scripts/golden-path.sh
phase=$(golden_detect_plan_phase)
If phase != "complete", show:
No sprint plan found. You need to plan before building.
Next: /plan
sprint=$(golden_detect_sprint)
If user provided an override argument (e.g., sprint-3), use that instead.
| Condition | Action |
|---|---|
| Sprint found | Execute /implement {sprint} |
| No sprint (all complete) | Show: "All sprints complete! Next: /review" |
Before delegating, show what's happening:
Building sprint-2 (auto-detected)
→ Running /implement sprint-2
| Argument | Description |
|---|---|
sprint-N | Override: build a specific sprint |
| (none) | Auto-detect current sprint |
| Error | Response |
|---|---|
| No sprint plan | "No sprint plan found. Run /plan first." |
| All sprints complete | "All sprints complete! Next: /review" |
| Invalid sprint ID | "Sprint not found in plan. Available: sprint-1, sprint-2, sprint-3" |
/build
Building sprint-2 (auto-detected)
Sprint 1: ✓ complete
Sprint 2: ○ in progress ← you are here
Sprint 3: ○ not started
→ Running /implement sprint-2
/build sprint-3
Building sprint-3 (manual override)
→ Running /implement sprint-3
/build
All sprints complete!
Sprint 1: ✓ complete
Sprint 2: ✓ complete
Sprint 3: ✓ complete
Next: /review