← ClaudeAtlas

workflow-developmentlisted

Development workflow — full lifecycle from Branch → Implement → Verify → Review → Deliver. Activated by /swe-workbench:implement, /swe-workbench:design, /swe-workbench:refactor, /swe-workbench:debug, and /swe-workbench:test when the plan being authored modifies the codebase (Mode A) or when driving an implementation (Mode B). Skip for pure design / analysis output. Can also be invoked directly to author a Workflow section, run the 5-phase implementation flow, or orchestrate parallel agents (Mode C).
lugassawan/swe-workbench · ★ 2 · AI & Automation · score 71
Install: claude install-skill lugassawan/swe-workbench
# Development Workflow Single source of truth for how development work flows. Three modes: - **Mode A (Plan Writing):** Embed a `## Workflow` section into plans using `templates/plan-workflow-section.md` - **Mode B (Implementation):** Guide step-by-step execution through all 5 phases - **Mode C (Orchestration):** Coordinate multiple parallel agents across dependency rounds — see `orchestration.md` **Announce at start:** "I'm using the development skill to [write the workflow section / guide this implementation]." ## When This Skill Activates - **Mode A:** Writing or finalizing an implementation plan (before `ExitPlanMode`) - **Mode B:** User says "implement this", "build this" — any branch → code → deliver flow. For focused bug diagnosis prefer `/swe-workbench:debug` (invokes the `debugger` subagent, which composes `superpowers:systematic-debugging`); escalate here when the fix needs the full 5-phase lifecycle. - **Mode C:** User says "orchestrate these issues", "run in parallel", multi-issue campaigns with >3 issues ## Sub-Skill Integration Map ``` Mode B — Single Implementation: Phase 1 (Branch) → rimba add <task> (if rimba on PATH) OR superpowers:using-git-worktrees (fallback) Phase 2 (Implement) → superpowers:executing-plans OR superpowers:subagent-driven-development └─ swe-workbench:principle-tdd (per unit) └─ swe-workbench:workflow-delegated-implementation (scope/complexity warrants isolation) Phase 3