Custom marketplace for Claude Code plugins.
This marketplace provides a curated collection of Claude Code extensions including plugins, commands, agents, hooks, and MCP servers.
Users can add this marketplace to their Claude Code installation using one of the following methods:
/plugin marketplace add retsohuang/retso-marketplace
/plugin marketplace add /path/to/retso-marketplace
/plugin marketplace add https://github.com/retsohuang/retso-marketplace.git
Once the marketplace is added, install plugins with:
/plugin install plugin-name@retso-marketplace
List available plugins:
/plugin marketplace list
Use the --plugin-dir flag to test any plugin during development without installing it:
claude --plugin-dir ./plugins/my-plugin
Once Claude Code starts, try your plugin's skills with /plugin-name:skill-name. You can load multiple plugins at once:
claude --plugin-dir ./plugins/plugin-one --plugin-dir ./plugins/plugin-two
Restart Claude Code to pick up changes as you iterate on your plugin.
Create your plugin directory under plugins/:
mkdir -p plugins/my-plugin
Add your plugin files (commands, agents, hooks, etc.)
Update .claude-plugin/marketplace.json to include your plugin:
{
"name": "my-plugin",
"description": "Description of my plugin",
"version": "1.0.0",
"source": "./plugins/my-plugin",
"author": {
"name": "Your Name",
"email": "[email protected]"
},
"license": "MIT",
"keywords": ["keyword1", "keyword2"]
}
Reference plugins from other repositories:
{
"name": "external-plugin",
"description": "Plugin from another repository",
"version": "1.0.0",
"source": {
"source": "github",
"repo": "organization/plugin-repository"
},
"license": "MIT"
}
Reference plugins from any Git server:
{
"name": "git-plugin",
"description": "Plugin from custom Git server",
"version": "1.0.0",
"source": {
"source": "url",
"url": "https://gitlab.com/team/plugin-repo.git"
},
"license": "MIT"
}
A typical plugin in this marketplace should follow this structure:
plugins/my-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── commands/ # Slash commands
│ └── my-command.md
├── agents/ # AI agents
│ └── my-agent.md
├── hooks/ # Event hooks
│ └── hooks.json
└── mcp-servers/ # MCP server configs
└── server-config.json
The marketplace is configured in .claude-plugin/marketplace.json. Key fields:
./plugins)| Plugin Name | Description | Version |
|---|---|---|
| code-review-tools | Review code changes commit-by-commit with custom rules support. Includes interactive setup and rule creation. | 2.1.1 |
| github-tools | GitHub workflow tools for daily development. Analyze PR review comments and categorize what needs fixing. | 0.1.1 |
| worktree-bootstrap | Automatically copy gitignored files to new worktrees using .worktreeinclude.yaml | 0.1.0 |
To contribute a plugin to this marketplace:
plugins/ directory or reference it externally.claude-plugin/marketplace.json with your plugin entryIndividual plugins may have their own licenses. Check each plugin's license field in the marketplace configuration.
Maintainer: Retso Huang ([email protected])
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub retsohuang/retso-marketplace --plugin github-toolsReview code changes commit-by-commit with custom rules support. Includes interactive setup and rule creation.
Automatically copy gitignored files to new worktrees using .worktreeinclude.yaml
Automated code review for pull requests using multiple specialized agents with confidence-based scoring
Git workflow tools: commits, PRs, review inbox, checkout, and work triage
GitHub CLI integration with focused skills for pull requests, issues, GitHub Actions, and viewing GitHub file URLs
AI code review agent for GitHub and GitLab. View and resolve Greptile's PR review comments directly from Claude Code.
Git workflows - commits, branches, PRs, issue processing, auto-close detection, and repository management
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review