Professional development workflows for Claude Code - Language-agnostic best practices, specialized agents, and quality assurance patterns for building production-ready software
This plugin is not yet in any themed marketplace. To install it, you'll need to add it from GitHub directly.
Choose your preferred installation method below
A marketplace is a collection of plugins. Every plugin gets an auto-generated marketplace JSON for individual installation, plus inclusion in category and themed collections. Add a marketplace once (step 1), then install any plugin from it (step 2).
One-time setup for access to all plugins
When to use: If you plan to install multiple plugins now or later
Step 1: Add the marketplace (one-time)
/plugin marketplace add https://claudepluginhub.com/marketplaces/all.json
Run this once to access all plugins
Step 2: Install this plugin
/plugin install claude-code-workflows@all
Use this plugin's auto-generated marketplace JSON for individual installation
When to use: If you only want to try this specific plugin
Step 1: Add this plugin's marketplace
/plugin marketplace add https://claudepluginhub.com/marketplaces/plugins/claude-code-workflows.json
Step 2: Install the plugin
/plugin install claude-code-workflows@claude-code-workflows
Professional development workflows for Claude Code - Language-agnostic best practices, specialized agents, and quality assurance patterns for building production-ready software.
# 1. Start Claude Code
claude
# 2. Install plugin
/plugin marketplace add shinpr/claude-code-workflows
/plugin install claude-code-workflows@shinpr
# 3. Restart session (required)
# Exit and restart Claude Code
# 4. Start building
/implement <your feature>
# Tip: Type /imp + Tab (full: /claude-code-workflows:implement)
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 --> 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]
Streamline your development with purpose-built commands:
Command | Purpose | When to Use |
---|---|---|
/implement | End-to-end feature development | New features, complete workflows |
/task | Execute single task with precision | Bug fixes, small changes |
/design | Create design documentation | Architecture planning |
/plan | Generate work plan from design | Planning phase |
/build | Execute from existing task plan | Resume implementation |
/review | Verify code against design docs | Post-implementation check |
11 production-ready agents for every phase of development:
Agent | Purpose | Activation |
---|---|---|
requirement-analyzer | Assess task scope and complexity | Start of /implement |
prd-creator | Create product requirements documents | Large-scale features |
technical-designer | Design architecture and technical approach | Medium/large features |
work-planner | Break down work into executable tasks | After design |
task-decomposer | Decompose plans into commit-sized tasks | Task breakdown |
task-executor | Execute individual tasks with TDD | Implementation |
quality-fixer | Fix all quality issues automatically | After code changes |
code-reviewer | Verify compliance with design docs | Post-implementation |
acceptance-test-generator | Generate E2E and integration tests | Testing phase |
rule-advisor | Select optimal rules for current task | Task initiation |
document-reviewer | Review documentation consistency | Documentation phase |
Battle-tested best practices that work across all languages:
Key Insight: Proper workflows + specialized agents = production-quality code at AI speed
/implement "Add user authentication with JWT"
# โ Automatically:
# 1. Analyzes requirements
# 2. Creates design documents
# 3. Breaks down into tasks
# 4. Implements with TDD
# 5. Fixes all quality issues
# 6. Reviews against design
/task "Fix validation error message"
# โ Direct implementation with quality checks
/review
# โ Verifies implementation matches design docs
claude-code-workflows/
โโโ .claude-plugin/ # Plugin metadata
โ โโโ marketplace.json
โ โโโ plugin.json
โโโ agents/ # Specialized agent definitions
โ โโโ acceptance-test-generator.md
โ โโโ code-reviewer.md
โ โโโ document-reviewer.md
โ โโโ prd-creator.md
โ โโโ quality-fixer.md
โ โโโ requirement-analyzer.md
โ โโโ rule-advisor.md
โ โโโ task-decomposer.md
โ โโโ task-executor.md
โ โโโ technical-designer.md
โ โโโ work-planner.md
โ โโโ guides/ # User documentation
โ โ โโโ sub-agents.md
โ โโโ rules/ # Development rules
โ โ โโโ ai-development-guide.md
โ โ โโโ coding-principles.md
โ โ โโโ documentation-criteria.md
โ โ โโโ testing-principles.md
โ โ โโโ rules-index.yaml
โ โ โโโ architecture/
โ โโโ templates/ # Document templates
โ โโโ adr-template.md
โ โโโ design-template.md
โ โโโ plan-template.md
โ โโโ prd-template.md
โโโ commands/ # Workflow commands
โ โโโ implement.md
โ โโโ design.md
โ โโโ plan.md
โ โโโ build.md
โ โโโ review.md
โ โโโ task.md
โโโ LICENSE
โโโ README.md
Q: Do I need to learn special commands?
A: Just use /implement
to start. The plugin handles the complexity automatically.
Q: What if there are errors?
A: The quality-fixer
agent automatically fixes most issues. If it can't, it provides clear guidance.
Q: SSH authentication error during plugin installation? A: Set up SSH keys for GitHub:
# 1. Check if SSH key already exists
ls ~/.ssh/id_ed25519.pub
# 2. Generate new SSH key (if needed)
ssh-keygen -t ed25519 -C "your_email@example.com"
# โ Press Enter to save to default location
# โ Enter a strong passphrase when prompted (recommended for security)
# 3. Add SSH key to ssh-agent
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
# 4. Copy public key to clipboard
cat ~/.ssh/id_ed25519.pub
# โ Copy the output
# 5. Add to GitHub
# Go to https://github.com/settings/keys
# Click "New SSH key"
# Paste your public key and save
# 6. Test connection
ssh -T git@github.com
# โ Should see: "Hi username! You've successfully authenticated..."
MIT License - Free to use, modify, and distribute.
See LICENSE for full details.
Happy Coding with Claude Code Workflows! ๐โจ
2.0.0