A curated collection of Claude Code plugins for various development workflows. Each plugin extends Claude Code's capabilities with custom slash commands, MCP servers, skills, and agents.
Install this marketplace to access all available plugins:
# Using GitHub (recommended)
/plugin marketplace add gpambrozio/ClaudeCodePlugins
# Or using local path during development
/plugin marketplace add /path/to/ClaudeCodePluginsOnce the marketplace is added, install plugins:
# List available plugins
/plugin marketplace list
# Install a specific plugin
/plugin install SwiftDevelopment@ClaudeCodePluginsSwift and iOS development toolkit with MCP servers and slash commands.
Want to add your plugin to this marketplace?
Follow the standard Claude Code plugin structure:
YourPlugin/
├── .claude-plugin/
│ └── plugin.json
├── commands/ # Optional: slash commands
├── skills/ # Optional: agent skills
├── agents/ # Optional: custom agents
├── .mcp.json # Optional: MCP servers
└── README.md
- Fork this repository
- Add your plugin directory at the root level
- Update
.claude-plugin/marketplace.json:
{
"plugins": [
{
"name": "your-plugin",
"description": "What your plugin does",
"source": "./YourPlugin",
"version": "0.1.0",
"author": {
"name": "your-name"
},
"keywords": ["relevant", "tags"],
"license": "MIT"
}
]
}- Submit a pull request
- Include a comprehensive README.md
- Follow semantic versioning
- Test all commands and MCP servers
- Document prerequisites and dependencies
- Include examples and usage instructions
Update the marketplace catalog:
# Edit .claude-plugin/marketplace.json
# Add/remove plugin entries
# Update versions and metadataAfter changes, users can refresh:
/plugin marketplace update ClaudeCodePluginsWhen updating a plugin:
- Update version in plugin's
plugin.json - Update version in marketplace.json entry
- Update
lastUpdatedtimestamp in marketplace.json - Document changes in plugin's README
# Add marketplace from local directory
/plugin marketplace add /path/to/ClaudeCodePlugins
# Test plugin installation
/plugin install SwiftDevelopment@ClaudeCodePlugins
# Verify plugin works
/plugin listUse the SwiftDevelopment plugin as a template:
# Copy structure
cp -r SwiftDevelopment YourNewPlugin
# Update metadata in .claude-plugin/plugin.json
# Customize commands, skills, agents
# Update README.md- Claude Code Documentation
- Plugin Development Guide
- MCP Server Documentation
- Agent Skills
- Slash Commands Reference
Individual plugins may have their own licenses. See each plugin's directory for details.
Marketplace structure: MIT
For issues with:
- Specific plugins: Open an issue with the plugin name in the title
- Marketplace itself: Open an issue tagged "marketplace"
- Claude Code: Report at https://github.com/anthropics/claude-code/issues