Skip to content

HP-00/Claude-Code-Plugin-Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HP-00 Claude Code Plugin Marketplace

License: MIT Claude Code

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.

Overview

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.

Installation

Add this marketplace to Claude Code:

/plugin marketplace add HP-00/Claude-Code-Plugin-Marketplace

Or using the full URL:

/plugin marketplace add https://github.com/HP-00/Claude-Code-Plugin-Marketplace.git

Installing Plugins

Once the marketplace is added, install any plugin:

/plugin install <plugin-name>@hp-00-plugins

Available 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

Managing the Marketplace

# Update marketplace to get latest plugins
/plugin marketplace update hp-00-plugins

# List installed plugins
/plugin list

# Remove marketplace
/plugin marketplace remove hp-00-plugins

Validation

Validate the marketplace structure:

/plugin validate .

Plugin Structure

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

Plugin Manifest (plugin.json)

{
  "name": "your-plugin",
  "version": "1.0.0",
  "description": "What your plugin does",
  "author": {
    "name": "Your Name"
  },
  "license": "MIT",
  "keywords": ["keyword1", "keyword2"]
}

Adding to Marketplace

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"]
    }
  ]
}

Troubleshooting

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

Documentation

Contributing

  1. Fork this repository
  2. Create your plugin in plugins/your-plugin/
  3. Add the plugin entry to .claude-plugin/marketplace.json
  4. Submit a pull request

License

MIT


Maintainer: HP-00 Repository: GitHub

About

Open marketplace of Claude Code plugins by HP-00

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors