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 XcodeBuildTools@ClaudeCodePluginsControl iOS Simulators using native macOS tools. Manage simulators, automate UI interactions, take screenshots, and more - all without additional dependencies beyond Xcode.
Swift project scaffolding and code generation tools. Generate project structures, create boilerplate code from templates, and initialize new iOS/MacOS projects with common configurations.
Adds Marvin the Paranoid Android personality from The Hitchhiker's Guide to the Galaxy - pessimistic, melancholic, existentially weary, but brilliantly competent. Transforms Claude into a critical thinker who questions assumptions and identifies flaws while remaining highly capable.
Xcode development tools using token-efficient build output. Provides 8 consolidated skills covering the full Xcode development workflow.
Skills:
swift-package- Build, test, run, and manage SPM projectsxcode-project- Discover projects, list schemes, view settings, get bundle IDsxcodebuild- Build for simulator, device, or macOSxcode-test- Run unit and UI testsxcode-doctor- Diagnose development environmentdevice-app- Manage apps on physical Apple devicesmacos-app- Launch and stop macOS applicationssim-log- Capture logs from iOS Simulator apps
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 XcodeBuildTools@ClaudeCodePlugins
# Verify plugin works
/plugin listUse an existing plugin as a template:
# Copy structure from an existing plugin
cp -r XcodeBuildTools 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