This directory contains some official Claude Code plugins that extend functionality through custom commands, agents, and workflows. These are examples of what's possible with the Claude Code plugin system—many more plugins are available through community marketplaces.
Claude Code plugins are extensions that enhance Claude Code with custom slash commands, specialized agents, hooks, and MCP servers. Plugins can be shared across projects and teams, providing consistent tooling and workflows.
Learn more in the official plugins documentation.
Claude Agent SDK Development Plugin
Streamlines the development of Claude Agent SDK applications with scaffolding commands and verification agents.
/new-sdk-app - Interactive setup for new Agent SDK projectsagent-sdk-verifier-py and agent-sdk-verifier-ts - Validate SDK applications against best practicesGit Workflow Automation Plugin
Simplifies common git operations with streamlined commands for committing, pushing, and creating pull requests.
/commit - Create a git commit with appropriate message/commit-push-pr - Commit, push, and create a PR in one command/clean_gone - Clean up stale local branches marked as [gone]Automated Pull Request Code Review Plugin
Provides automated code review for pull requests using multiple specialized agents with confidence-based scoring to filter false positives.
/code-review - Automated PR review workflowComprehensive Feature Development Workflow Plugin
Provides a structured 7-phase approach to feature development with specialized agents for exploration, architecture, and review.
/feature-dev - Guided feature development workflowcode-explorer - Deeply analyzes existing codebase featurescode-architect - Designs feature architectures and implementation blueprintscode-reviewer - Reviews code for bugs, quality issues, and project conventionsThese plugins are included in the Claude Code repository. To use them in your own projects:
Install Claude Code globally:
npm install -g @anthropic-ai/claude-code
Navigate to your project and run Claude Code:
claude
Use the /plugin command to install plugins from marketplaces, or configure them in your project's .claude/settings.json.
For detailed plugin installation and configuration, see the official documentation.
Each plugin follows the standard Claude Code plugin structure:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── commands/ # Slash commands (optional)
├── agents/ # Specialized agents (optional)
└── README.md # Plugin documentation
When adding new plugins to this directory:
.claude-plugin/plugin.json