by shinpr
Production-ready development workflows for Claude Code, powered by specialized AI agents.
# Add to your Claude Code skills
git clone https://github.com/shinpr/claude-code-workflowsBuild production-ready software with Claude Code - Plugins and tools that bring best practices, specialized agents, automated quality checks, and safety guardrails to your development process.
This marketplace includes the following plugins:
Choose what fits your project:
# 1. Start Claude Code
claude
# 2. Install the marketplace
/plugin marketplace add shinpr/claude-code-workflows
# 3. Install backend plugin
/plugin install dev-workflows@claude-code-workflows
# 4. Restart session (required)
# Exit and restart Claude Code
# 5. Start building
/implement <your feature>
# 1-2. Same as above (start Claude Code and add marketplace)
# 3. Install frontend plugin
/plugin install dev-workflows-frontend@claude-code-workflows
# 4-5. Same as above (restart and start building)
# Use frontend-specific commands
/front-design <your feature>
Install both plugins to get the complete toolkit for backend and frontend work.
# Install metronome (prevents shortcut-taking behavior)
/plugin install metronome@claude-code-workflows
Note: If you encounter SSH errors during installation, see SSH Setup FAQ below.
graph TB
A[๐ค User Request] --> B[๐ requirement-analyzer]
B --> |"๐ฆ Large (6+ files)"| C[๐ prd-creator]
B --> |"๐ฆ Medium (3-5 files)"| D[๐ technical-designer]
B --> |"๐ฆ Small (1-2 files)"| E[โก Direct Implementation]
C --> D
D --> DR[๐ document-reviewer]
DR --> DS[๐ design-sync]
DS --> F[๐งช acceptance-test-generator]
F --> G[๐ work-planner]
G --> H[โ๏ธ task-decomposer]
H --> I[๐จ task-executor]
E --> I
I --> J[โ
quality-fixer]
J --> K[๐ Ready to Commit]
graph LR
P[๐ Problem] --> INV[๐ investigator]
INV --> |Evidence Matrix| ASS{Complex?}
ASS --> |Yes| VER[โ๏ธ verifier]
ASS --> |No| SOL[๐ก solver]
VER -->...