Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
hello-world logo

hello-world

my-team-plugin-marketplace

examplesClaude Codeby Your Team

Summary

A simple example plugin demonstrating basic Claude Code plugin functionality

Install to Claude Code

/plugin install hello-world@my-team-plugin-marketplace

Run in Claude Code. Add the marketplace first with /plugin marketplace add armstrongl/super-duper-disco if you haven't already.

README.md

Claude Code Plugin Marketplace Template

A GitHub template repository for creating and managing your own Claude Code plugin marketplace with a plugin development toolkit.

Quick Start

Use as Template

1. Click "Use this template" button on GitHub 2. Create your new repository 3. Clone your new repository:

   git clone https://github.com/your-org/your-marketplace-name.git
   cd your-marketplace-name

4. Customize the marketplace:

   # Update marketplace metadata
   vim .claude-plugin/marketplace.json

5. Install the plugin development tools:

   # Add your local marketplace
   /plugin marketplace add ./path-to-your-marketplace
   
   # Install the plugin-development plugin
   /plugin install plugin-development@my-team-plugin-marketplace

6. Test locally (see Testing section)

What's Included

This template provides:

  • Marketplace Configuration (.claude-plugin/marketplace.json): Central registry for all plugins following the official schema
  • Plugin Development Plugin (plugin-development): Comprehensive toolkit for creating, validating, and managing plugins with:
  • Scaffolding and component generation commands
  • Automated validation and testing
  • Best practices and documentation integration
  • Review agent for release readiness
  • Sample Plugin (hello-world): Fully functional example demonstrating:
  • Proper plugin manifest structure
  • Command with frontmatter
  • Best practices and documentation
  • Comprehensive Documentation (docs/): Complete guides for plugin development, hooks, settings, commands, skills, and sub-agents
  • GitHub Actions: Automated plugin validation workflow

Configuration

Marketplace Configuration

Edit .claude-plugin/marketplace.json to customize your marketplace:

{
  "name": "my-team-plugin-marketplace",
  "owner": {
    "name": "Your Organization",
    "email": "team@your-org.com"
  },
  "metadata": {
    "description": "A curated collection of plugins for our team",
    "version": "1.0.0"
  },
  "plugins": [
    // Add your plugins here
  ]
}

Note: The name field should use kebab-case (lowercase with hyphens). See the Plugin Marketplaces documentation for complete schema details.

Team Settings (Optional)

You can configure automatic marketplace installation for team projects by adding .claude/settings.json:

{
  "extraKnownMarketplaces": {
    "team-tools": {
      "source": {
        "source": "github",
        "repo": "your-org/your-marketplace-name"
      }
    }
  }
}

When team members trust the repository folder, Claude Code automatically installs these marketplaces. See Configure team marketplaces for details.

Testing

Local Testing

1. Navigate to your project directory:

   cd your-marketplace-name

2. Start Claude Code:

   claude

3. Add your local marketplace:

   /plugin marketplace add ./path-to-your-marketplace

4. Install a plugin:

   /plugin install hello-world@marketplace-name
   /plugin install plugin-development@marketplace-name

5. Test commands:

   /hello World
   /plugin-development:validate

6. Verify installation:

   /help

Your plugin commands should appear in the help list.

Using the Marketplace from GitHub

Once published to GitHub, users can add your marketplace:

# Add marketplace from GitHub
/plugin marketplace add your-org/your-repo-name

# Install plugins
/plugin install plugin-name@your-marketplace-name

Creating New Plugins

Option 1: Use the Plugin Development Plugin (Recommended)

This template includes a powerful plugin-development plugin that automates plugin scaffolding:

# After cloning and adding this marketplace
/plugin install plugin-development@my-team-plugin-marketplace

# Scaffold a new plugin
/plugin-development:init my-new-plugin

# Add components as needed
/plugin-development:add-command my-command "Description of what the command does"
/plugin-development:add-skill my-skill "Use when working with..."
/plugin-development:validate

See the plugin-development README for complete documentation.

Option 2: Manual Setup

# Create plugin directory
mkdir -p plugins/my-plugin/.claude-plugin
mkdir -p plugins/my-plugin/commands

# Create plugin metadata
touch plugins/my-plugin/.claude-plugin/plugin.json
touch plugins/my-plugin/README.md

Step 2: Define Plugin Metadata

Edit plugins/my-plugin/.claude-plugin/plugin.json:

{
  "name": "my-plugin",
  "version": "1.0.0",
  "description": "Description of what your plugin does",
  "author": {
    "name": "Your Name",
    "email": "your-email@example.com",
    "url": "https://github.com/your-username"
  },
  "homepage": "https://github.com/your-org/your-marketplace-name",
  "repository": "https://github.com/your-org/your-marketplace-name",
  "license": "MIT",
  "keywords": ["keyword1", "keyword2"]
}

Note: The author field must be an object with name, email, and optionally url. See the Plugins Reference for complete schema details.

Step 3: Create Command

Create plugins/my-plugin/commands/my-command.md:

---
description: Brief description of what the command does
argument-hint: [arg1] [arg2]
---

# My Command

[Detailed instructions for Claude on how to execute this command]

## Instructions

1. [Step 1]
2. [Step 2]
3. [Step 3]

[Additional context and guidelines]

Note: Commands should include frontmatter with description and optionally argument-hint. The content is a prompt that Claude executes. See the Slash Commands documentation for details.

Step 4: Register in Marketplace

Add to .claude-plugin/marketplace.json:

{
  "plugins": [
    {
      "name": "my-plugin",
      "description": "Description of what your plugin does",
      "version": "1.0.0",
      "author": {
        "name": "Your Name"
      },
      "source": "./plugins/my-plugin",
      "category": "utilities",
      "tags": ["tag1", "tag2"],
      "keywords": ["keyword1", "keyword2"]
    }
  ]
}

Note: The marketplace plugin entry uses the same schema as plugin.json with all fields optional, plus marketplace-specific fields like source, category, and tags. The author field should be an object.

Documentation

Local Documentation

This repository includes comprehensive documentation for the Claude Code plugin system in the docs/ directory:

Start with docs/plugins.md for plugin development basics, or docs/README.md for a complete overview of all available documentation.

Official Claude Code Documentation

License

MIT License - see LICENSE file for details

Related plugins

Browse all →