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.

01
Prep
Configure / Plan
/initG
Initialize CLAUDE.md
/checkout-workLG
Resolve ref → worktree
/create-plan-from-issueL
Draft plan, post questions
/validate-issueL
Make issue execution-ready
/pull-issue-responsesL
Summarize Q&A threads
new-treeG
Create worktree + branch
plan-treeG
Worktree + execution prompt
02
Build
Implementation
/execute-issueLGG
Parallel agents, commits, PR
/execute-planGG
Local plan → tasks + PR
/feature-dev-linearL
Plan, decompose, create issues
/feature-devG
Guided feature development
/commitG
Create a git commit
03
Review
Verify
/codebase-reviewLG
Full codebase health scan
/verify-worktreeG
Merge main, resolve, test
/reviewG
Quick PR review
/pr-review-toolkitG
Multi-agent specialist review
/security-reviewG
Security scan of changes
/simplifyG
Code quality + reuse check
04
Deploy
Ship
/commit-push-prGG
Commit, push, open PR
/cleanup-worktreeLG
Merge to main, clean up
05
Refine
Automate
/project-statusLGG
Linear + GitHub + git summary
/revise-claude-mdG
Update CLAUDE.md with learnings
/claude-md-improverG
Audit CLAUDE.md files
/automation-recommender
Suggest Claude Code automations
/git-xrayG
Git history diagnostics
/clean_goneG
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)