A collection of Claude Code plugins by HP-00.
This marketplace provides plugins for Claude Code, Anthropic's agentic coding tool. Plugins can include slash commands, subagents, agent skills, hooks, and MCP server integrations.
Note: Claude Code plugins are in public beta. Features and best practices may evolve.
Add this marketplace to Claude Code:
/plugin marketplace add HP-00/Claude-Code-Plugin-MarketplaceOr using the full URL:
/plugin marketplace add https://github.com/HP-00/Claude-Code-Plugin-Marketplace.gitOnce the marketplace is added, install any plugin:
/plugin install <plugin-name>@hp-00-plugins| Plugin | Version | Description | Category |
|---|---|---|---|
| prisma-schema-reviewer | 1.0.0 | Interactive Prisma schema review with expert guidance on native types, indexes, relations, and referential actions | Database |
# Update marketplace to get latest plugins
/plugin marketplace update hp-00-plugins
# List installed plugins
/plugin list
# Remove marketplace
/plugin marketplace remove hp-00-pluginsValidate the marketplace structure:
/plugin validate .Each plugin should be in the plugins/ directory with the following structure:
plugins/
└── your-plugin/
├── .claude-plugin/
│ └── plugin.json # Required: plugin metadata
├── commands/ # Optional: slash commands
├── agents/ # Optional: subagents
├── skills/ # Optional: agent skills
├── hooks/ # Optional: event hooks
└── README.md # Recommended: plugin documentation
{
"name": "your-plugin",
"version": "1.0.0",
"description": "What your plugin does",
"author": {
"name": "Your Name"
},
"license": "MIT",
"keywords": ["keyword1", "keyword2"]
}Add your plugin to .claude-plugin/marketplace.json:
{
"plugins": [
{
"name": "your-plugin",
"source": "./plugins/your-plugin",
"description": "What your plugin does",
"version": "1.0.0",
"category": "productivity",
"keywords": ["keyword1", "keyword2"]
}
]
}| Issue | Solution |
|---|---|
| Marketplace not found | Ensure the repository is public and URL is correct |
| Plugin not loading | Run /plugin validate . to check structure |
| Commands not appearing | Verify command files have .md extension and valid frontmatter |
- Fork this repository
- Create your plugin in
plugins/your-plugin/ - Add the plugin entry to
.claude-plugin/marketplace.json - Submit a pull request
MIT
Maintainer: HP-00 Repository: GitHub