Development Pipeline
Every feature moves through five phases: prep, build, review, deploy, and refine. Each phase has a set of commands—some custom, some built-in, some from plugins—that orchestrate the work across Linear, GitHub, and the local git worktree.
Golden Path /feature-dev-linear → /validate-issue → /execute-issue → /verify-worktree → /cleanup-worktree → /project-status
01
Prep
Configure / Plan
/init
Initialize CLAUDE.md
/checkout-work
Resolve ref → worktree
/create-plan-from-issue
Draft plan, post questions
/validate-issue
Make issue execution-ready
/pull-issue-responses
Summarize Q&A threads
new-tree
Create worktree + branch
plan-tree
Worktree + execution prompt
02
Build
Implementation
/execute-issue
Parallel agents, commits, PR
/execute-plan
Local plan → tasks + PR
/feature-dev-linear
Plan, decompose, create issues
/feature-dev
Guided feature development
/commit
Create a git commit
03
Review
Verify
/codebase-review
Full codebase health scan
/verify-worktree
Merge main, resolve, test
/review
Quick PR review
/pr-review-toolkit
Multi-agent specialist review
/security-review
Security scan of changes
/simplify
Code quality + reuse check
04
Deploy
Ship
/commit-push-pr
Commit, push, open PR
/cleanup-worktree
Merge to main, clean up
05
Refine
Automate
/project-status
Linear + GitHub + git summary
/revise-claude-md
Update CLAUDE.md with learnings
/claude-md-improver
Audit CLAUDE.md files
/automation-recommender
Suggest Claude Code automations
/git-xray
Git history diagnostics
/clean_gone
Remove stale branches
Infrastructure
Git Branching
main ← manual promotion
staging ← receives PRs
work-<issue-id> ← one per issue
Parallel Dispatch
- One worktree per feature/issue
- Independent tasks run simultaneously
- File overlap prevents parallel execution
- Cross-task context via task metadata
- One commit per task, never batch
Guards & Hooks
- No grep/cat/find via Bash—use tools
- No literal ~/... paths—use absolute
- Test before commit, always
- Agents target staging, never main
- Agents never merge their own PRs
custom (this repo)
shell (.zshrc)
claude (built-in)
plugin (marketplace)
script (~/.myai/tools)