A collection of reusable Claude Code plugins — slash commands, agent skills, subagents, hooks, and MCP server integrations.
# 1. Add this marketplace
/plugin marketplace add devstefancho/claude-plugins
# 2. Install a plugin
/plugin install <plugin-name>@devstefancho-claude-plugins
# 3. Restart Claude Code to activate| Plugin | Description |
|---|---|
| code-style-plugin | Code review based on SRP, DRY, Simplicity First, YAGNI, and Type Safety |
| code-quality-plugin | Code quality review focusing on DRY, KISS, and Clean Code principles |
| frontend-plugin | React/Next.js component design review |
| Plugin | Description |
|---|---|
| writing-specs-plugin | Spec writing with conflict detection and reporting |
| simple-sdd-plugin | SDD workflow: spec → plan → tasks → implement |
| implement-with-test-plugin | Implement code with tests from specs or direct requests |
| brain-storm-plugin | Brainstorm features and improvements with wireframes and HTML prototype previews |
| Plugin | Description |
|---|---|
| git-worktree-plugin | Manage git worktrees for parallel branch work |
| git-commit-plugin | Auto-generate conventional commit messages |
| smart-commit-plugin | Split uncommitted changes into logical commits |
| pr-create-plugin | Create GitHub PRs with auto-generated descriptions |
| test-commit-push-pr-clean-plugin | Automate lint, test, commit, push, PR, and worktree cleanup |
| Plugin | Description |
|---|---|
| computer-use-plugin | App testing via Computer Use MCP with feedback reports |
| session-reporter-plugin | Generate HTML reports for work sessions |
| worktrace-plugin | Extract work history and generate daily summaries |
| Plugin | Description |
|---|---|
| agent-team-plugin | Create and manage agent teams for worktree sessions |
| hermes-gateway-plugin | Interact with Hermes Agent via local or SSH connection |
| stop-notification-plugin | macOS TTS notification when Claude stops or needs attention |
| Plugin | Description |
|---|---|
| scaffold-claude-feature | Generate Claude Code features with proper structure |
| common-mcp-plugin | Common MCP servers for shared tools and integrations |
| local-test-plugin | Symlink-based local plugin testing |
| Plugin | Description |
|---|---|
| spec-manager-plugin | Replaced by writing-specs-plugin |
Each plugin follows this layout:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata (required)
├── commands/ # Slash commands
├── skills/ # Agent skills
├── agents/ # Subagents
├── hooks/ # Event handlers
├── .mcp.json # MCP servers
└── README.md
# Clone and add as local marketplace
git clone https://github.com/devstefancho/claude-plugins.git
cd claude-plugins
claude
# Inside Claude Code
/plugin marketplace add .
/plugin install <plugin-name>@devstefancho-claude-pluginsMIT