By tombakerjr
Complete development workflow: brainstorming, planning, TDD, debugging, agent team execution, subagent fallback, code review, PR merge
Use PROACTIVELY before any commit to verify code quality. Runs typecheck, security scan, and debug code checks. MUST BE USED after writing code, before git commit.
Implementation agent with tooling conventions. Use for task implementation in plan-execution workflow (subagent mode).
MUST BE CALLED before any PR merge operation. Verifies CI passes, waits for delayed comments, scans for blockers. Use PROACTIVELY when about to merge or when asked to check PR status.
Quick code quality gate. Use after spec review to check code quality before phase review.
Fast combined spec+quality review for simple tasks (≤2 files, mechanical changes). Use INSTEAD of separate spec-reviewer and quality-reviewer for simple/routine tasks.
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when executing implementation plans. Selects between agent teams (parallel teammates in worktrees) and subagents (parallel Task tool dispatch) based on availability.
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
Use when implementing any feature or bugfix, before writing implementation code
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
Executes bash commands
Hook triggers when Bash tool is used
Uses power tools
Uses Bash, Write, or Edit tools
Runs pre-commands
Contains inline bash commands via ! syntax
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
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-selectedgh ops, no slash command wrapper)This 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["Verify CI + SHA-anchored sticky comment"]
V --> W["gh pr checks --watch + match Reviewed commit: SHA to head"]
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 | Native gh ops | gh pr checks --watch, SHA-match latest sticky 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 | Native gh ops | Create PR, gh pr checks --watch, SHA-match sticky comment, merge |
The plugin prevents common mistakes:
npx claudepluginhub tombakerjr/claude-code-workflows --plugin dev-workflowImplementation planning, execution, and PR creation workflows with multi-agent collaboration
End-to-end development workflow: design → draft-plan → orchestrate → review → pr-create → pr-review → pr-merge
AI-powered agents for specialized development tasks
Opinionated 5-phase development lifecycle for Claude Code — language-agnostic, repo-local bin/* delegation
Persona-driven AI development team: orchestrator, team agents, review agents, skills, slash commands, and advisory hooks for Claude Code
Long-running agent harness with 5-layer memory architecture, GitHub integration, autonomous batch processing, Agent Teams with ATDD, 9 hooks (safety, quality gates, team coordination), and 6 Agent Skills