Claude Code Plugins
A curated collection of custom agents and slash commands to enhance Claude Code with powerful development workflows. 中文版
🌟 Features
🤖 Specialized AI Agents (subagents plugin)
Development Workflow Agents:
- strategic-planner - Expert software architect for feature planning and technical design
- task-executor - Precision engineer for atomic task implementation
- code-reviewer - Automated code quality and security review specialist
Supporting Agents:
- steering-architect - Project analysis and documentation architect
- data-scientist - SQL queries, BigQuery operations, and data analysis
- debugger - Error troubleshooting and root cause analysis
- prd-writer - Product requirements document generation
⚡ Git Workflow Commands
Git Flow Branch Management (git plugin):
/git:feature <name> - Create a new feature branch from develop
/git:hotfix <name> - Create a new hotfix branch from main
/git-flow:status - Display comprehensive Git Flow status
GitHub (git-flow plugin):
/git-flow:pr:create - Create Pull Requests with automated branch management
/git-flow:pr:review - Comprehensive PR code review with structured analysis
GitLab (git-flow plugin):
/git-flow:mr:create - Create Merge Requests
/git-flow:mr:review - MR review with customizable scope (performance, security, style)
Git Commit (git-flow plugin):
/git-flow:commit:create - Generate semantic commits from staged changes
🔌 MCP Servers (mcp plugin)
Pre-configured MCP servers for enhanced capabilities:
- context7 - Up-to-date documentation retrieval for any library
- sequential-thinking - Structured problem-solving through chain of thought
- memory - Persistent knowledge graph for conversation context
- tavily-mcp - Powerful web search and content extraction
- chrome-devtools - Browser automation and debugging
🛠️ Development Skills (skills plugin)
Specialized skills for specific development workflows:
- feature-dev - Guided feature development with codebase understanding and architecture focus
- code-review - Advanced code review capabilities for quality, security, and maintainability
🪝 Git Hooks (git-flow plugin)
Automated workflows triggered by events:
- php-cs-fixer - Auto-format PHP files on write/edit
- auto-git-add - Automatically stage modified files
- smart-commit - Intelligent commit message generation
📦 Installation
Install from GitHub
- Run the following command in Claude Code:
claude plugin marketplace add huangdijia/oh-my-claude-code-plugins
- Install the plugins:
claude plugin install subagents@oh-my-claude-code-plugins
claude plugin install git@oh-my-claude-code-plugins
claude plugin install git-flow@oh-my-claude-code-plugins
claude plugin install mcp@oh-my-claude-code-plugins
claude plugin install skills@oh-my-claude-code-plugins
🚀 Quick Start
Spec-Driven Development Workflow
This plugin implements a three-phase development workflow:
1. Planning Phase
Use the strategic planner to design your feature:
Use the strategic-planner agent to help me plan a user authentication feature
This creates structured specs in specs/<feature-name>/:
requirements.md - User stories with acceptance criteria
design.md - Technical blueprint with diagrams
tasks.md - Granular task checklist
2. Execution Phase
Execute tasks one-by-one with surgical precision:
Use the task-executor agent to implement the next task from specs/user-auth/tasks.md
The agent will:
- Execute exactly one task at a time
- Update task checkboxes
[ ] → [x]
- Run tests before marking complete
- Support autonomous mode for unattended execution
3. Review Phase
Automated quality assurance:
Use the code-reviewer agent to review my recent changes
Using Development Skills
Feature Development:
Use the feature-dev skill to help me implement a user authentication system
Code Review:
Use the code-review skill to review my recent changes
Using Slash Commands
Create a commit:
/git-flow:commit:create
Create and review PRs:
/git-flow:pr:create
/git-flow:pr:review 123
Review with specific scope:
/git-flow:mr:review 456 performance
/git-flow:mr:review 789 security
📚 Documentation
Agent Workflow Pattern
The plugin implements a sophisticated multi-agent system: