A collection of Claude Code plugins by HP-00.
Website: huzayfah.here.now/plugins — browsable plugin listing, per-plugin pages, install commands. Regenerated from this repo on every push.
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 |
| dependency-security-gate | 1.0.0 | Pre-install security gate: blocks npm install / pip install / cargo install / curl-downloads / git clone / HuggingFace pulls and forces a structured 11-item review (delegated to a dependency-research subagent) before approving |
Security |
| minimal-mono-design | 1.0.0 | Minimal monochrome design system — Geist Mono, light/dark/system theme via CSS custom properties with FOUC-free init, terminal-styled components. Optimized for Astro + Tailwind 4; explicit guidance for Next.js (App Router), plain HTML/CSS, and other CSS frameworks | Design |
# 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