Development workflow tools for Claude Code
npx claudepluginhub tombakerjr/claude-code-workflowsComplete development workflow: brainstorming, planning, TDD, debugging, agent team execution, subagent fallback, code review, PR merge
A comprehensive Claude Code plugin for feature development, bug fixes, and PR workflows. Enforces best practices through upfront planning, parallelized subagent execution, verification agents, and workflow commands.
run_in_background), auto-selectedThis plugin enforces three core principles:
Features start with brainstorming (Socratic exploration of requirements and design), followed by writing plans that break work into bite-sized, verifiable tasks. This catches issues early and provides clear success criteria.
Plan execution automatically selects the best execution mode:
run_in_background, each subagent gets only what you pass it (lightweight context), independent model selection per taskSubagent mode is more efficient for well-scoped tasks — subagents start fresh with just their prompt, avoiding full context loading overhead.
Git worktrees + agents enable true parallel development:
flowchart TD
subgraph FEATURE ["Feature Development Path"]
A[New feature request] --> B[Brainstorming skill]
B --> C["Explore requirements & design"]
C --> D[Using-git-worktrees skill]
D --> E[Create isolated workspace]
E --> F[Writing-plans skill]
F --> G["Break into tasks with acceptance criteria"]
G --> H{Agent teams enabled?}
H -->|Yes| I1["Plan-execution: team mode"]
I1 --> I2["Parallel implementers + reviewer in worktrees"]
H -->|No| I3["Plan-execution: subagent mode"]
I3 --> I4["Parallel dispatch with lightweight context"]
I2 --> J["Push + create PR"]
I4 --> J
J --> K[PR ready]
end
subgraph BUG ["Bug Fix Path"]
L[Bug report] --> M[Systematic-debugging skill]
M --> N["4-phase root cause analysis"]
N --> O[Test-driven-development skill]
O --> P["Red → Green → Refactor"]
P --> Q[Commit fix]
Q --> R["Push + create PR"]
R --> K
end
subgraph MERGE ["PR Merge Workflow"]
K --> S[CI + Reviews]
S --> T{Approved?}
T -->|No| U[Address feedback]
U --> S
T -->|Yes| V["/pr-status"]
V --> W["Watch CI, find review comment, scan for blockers"]
W --> X{Blockers?}
X -->|Yes| U
X -->|No| Y[Merge & cleanup]
end
style FEATURE fill:#e3f2fd
style BUG fill:#fff3e0
style MERGE fill:#fce4ec
| Phase | Skill/Command | Purpose |
|---|---|---|
| 1. Design | brainstorming | Socratic exploration of requirements and design trade-offs |
| 2. Isolate | using-git-worktrees | Create isolated workspace (optional, for parallel work) |
| 3. Plan | writing-plans | Break feature into bite-sized tasks with acceptance criteria |
| 4. Execute | plan-execution | Parallel via agent teams or subagents (auto-selected) |
| 5. PR & Merge | /pr-status | Watch CI, find review comment, fix loop until ready, merge |
| Phase | Skill/Command | Purpose |
|---|---|---|
| 1. Analyze | systematic-debugging | 4-phase root cause analysis (gather, hypothesize, verify, fix) |
| 2. Test | test-driven-development | Red-green-refactor discipline |
| 3. Commit | N/A | Commit fix with conventional message |
| 4. PR & Merge | /pr-status | Create PR, watch CI, review comment check, merge |
The plugin prevents common mistakes:
| Action | On Main | On Feature Branch |
|---|---|---|
git commit | Blocked | Allowed |
git push origin main | Blocked | N/A |
gh pr merge | Warned (run /pr-status first) | Warned (run /pr-status first) |
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.