Token导航 LogoToken导航TokenDH.com
运维和基础设施操作浏览器github未标认证来源可访问clear审计提醒

marketplace-builder市场建设者

Agent Skill

marketplace-builder 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

717

周安装

29

GitHub Stars

16

下载量

225
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:marketplace-builder(市场建设者)
来源仓库:https://github.com/mike-coulbourn/claude-vibes
仓库路径:skills/marketplace-builder
安装命令:
npx skills add https://github.com/mike-coulbourn/claude-vibes --skill marketplace-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mike-coulbourn/claude-vibes --skill marketplace-builder

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 安装方式:GitHub 仓库,命令为 npx skills add <repo> --skill marketplace-builder。
  • 使用前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 可结合原始 README 继续核验具体功能和调用方式。

SKILL.md

Marketplace Builder

A comprehensive guide to creating Claude Code marketplaces and plugins for distributing commands, agents, skills, hooks, and MCP servers.


Quick Reference

Marketplace vs Plugin Distinction

Critical concept: These are NOT the same thing.

ConceptWhat It IsAnalogy
MarketplaceJSON catalog listing where plugins liveLibrary catalog
PluginPackaged collection of componentsBook
ComponentsCommands, agents, skills, hooks, MCP serversChapters

Relationship: One marketplace → many plugins → many components per plugin

Key insight: Marketplaces don't HOST plugins. They INDEX them. Plugins can live anywhere (GitHub, GitLab, private git, local paths).


JSON Schema Quick Reference

Minimal marketplace.json:

{
  "name": "marketplace-name",
  "owner": {"name": "Owner Name"},
  "plugins": [
    {
      "name": "plugin-name",
      "source": "./path-to-plugin",
      "description": "What this plugin does",
      "version": "1.0.0"
    }
  ]
}

Minimal plugin.json (inside .claude-plugin/):

{
  "name": "plugin-name",
  "description": "What this plugin does",
  "version": "1.0.0"
}

Team settings.json (inside .claude/):

{
  "extraKnownMarketplaces": {
    "marketplace-name": {
      "source": {"source": "github", "repo": "owner/repo"}
    }
  },
  "enabledPlugins": {
    "plugin-name@marketplace-name": true
  }
}

Source Types

TypeSyntaxBest For
GitHub{"source": "github", "repo": "owner/repo"}Public plugins
Git URL{"source": "git", "url": "https://..."}Private/GitLab
Directory{"source": "directory", "path": "./path"}Monorepo
Relative"./path"Shorthand for directory

Command Reference

# Add a marketplace
/plugin marketplace add owner/repo
/plugin marketplace add https://gitlab.com/org/repo.git
/plugin marketplace add ./local-marketplace

# List marketplaces
/plugin marketplace list

# Update marketplace catalog
/plugin marketplace update marketplace-name

# Browse and install plugins
/plugin                                    # Interactive browser
/plugin install plugin-name@marketplace    # Direct install

# Manage plugins
/plugin enable plugin@marketplace
/plugin disable plugin@marketplace
/plugin uninstall plugin@marketplace

# Validate structure
claude plugin validate .

6-Phase Workflow

Phase 1: Requirements Gathering

Use AskUserQuestion to understand the user's needs:

  1. What are you distributing?

- Commands (slash commands) - Agents (subagents) - Skills (model-invoked capabilities) - Hooks (event handlers) - MCP servers (external tools) - Mix of the above

  1. How many plugins?

- Single plugin - Multiple related plugins - Large plugin collection

  1. Who is the audience?

- Personal use (just me) - Team (colleagues via git) - Organization (company-wide) - Public community

  1. What hosting?

- GitHub (public or private) - GitLab or other git service - Self-hosted git - Local development only

Document the answers before proceeding.


Phase 2: Architecture Decision

Based on requirements, recommend one of these patterns:

Pattern A: Basic Marketplace (Single Plugin)

Use when: One plugin, simple distribution

my-marketplace/
├── .claude-plugin/
│   ├── plugin.json
│   └── marketplace.json
├── commands/
└── agents/

Pattern B: Monorepo (Multiple Plugins, One Repo)

Use when: Related plugins, unified versioning, team ownership

company-plugins/
├── .claude-plugin/
│   └── marketplace.json
├── plugins/
│   ├── formatter/
│   │   ├── .claude-plugin/plugin.json
│   │   └── commands/
│   ├── linter/
│   │   ├── .claude-plugin/plugin.json
│   │   └── commands/
│   └── tester/
│       ├── .claude-plugin/plugin.json
│       └── agents/

Pattern C: Multi-Repo (Plugins in Separate Repos)

Use when: Independent plugins, different owners, community collection

# Marketplace repo
my-marketplace/
└── .claude-plugin/
    └── marketplace.json  # Points to other repos

# Plugin repos (separate)
tool-a/
├── .claude-plugin/plugin.json
└── commands/

tool-b/
├── .claude-plugin/plugin.json
└── agents/

Pattern D: Enterprise (Hybrid Private + Public)

Use when: Mix of internal and external tools, strict access control

{
  "plugins": [
    {"name": "internal-tool", "source": {"source": "git", "url": "https://git.corp/..."}},
    {"name": "community-tool", "source": {"source": "github", "repo": "public/tool"}}
  ]
}

Decision tree:

  • Single plugin? → Pattern A
  • Multiple plugins, same team? → Pattern B
  • Plugins from different sources? → Pattern C
  • Enterprise with private + public? → Pattern D

Phase 3: Plugin Creation

For each plugin, create this structure:

plugin-name/
├── .claude-plugin/
│   └── plugin.json         # Required: plugin manifest
├── commands/               # Optional: slash commands
│   └── my-command.md
├── agents/                 # Optional: subagents
│   └── my-agent.md
├── skills/                 # Optional: skills
│   └── my-skill/
│       └── SKILL.md
├── hooks/                  # Optional: event handlers
│   └── hooks.json
└── .mcp.json              # Optional: MCP servers

Write plugin.json:

{
  "name": "plugin-name",
  "description": "Clear description of what this plugin provides",
  "version": "1.0.0",
  "author": {
    "name": "Author Name",
    "email": "author@example.com"
  },
  "homepage": "https://docs.example.com",
  "repository": "https://github.com/owner/repo",
  "license": "MIT"
}

Naming conventions:

  • Plugin name: kebab-case (e.g., code-formatter)
  • Version: Semantic versioning MAJOR.MINOR.PATCH
  • Commands: verb-noun.md (e.g., format-code.md)
  • Agents: role-name.md (e.g., code-reviewer.md)

Phase 4: Marketplace Creation

Create .claude-plugin/marketplace.json:

For monorepo (plugins in same repo):

{
  "name": "company-tools",
  "owner": {
    "name": "Company Name",
    "email": "team@company.com"
  },
  "metadata": {
    "description": "Company development tools",
    "version": "1.0.0",
    "pluginRoot": "./plugins"
  },
  "plugins": [
    {
      "name": "formatter",
      "source": "./plugins/formatter",
      "description": "Code formatting tools",
      "version": "1.0.0"
    },
    {
      "name": "linter",
      "source": "./plugins/linter",
      "description": "Code linting tools",
      "version": "1.0.0"
    }
  ]
}

For multi-repo (plugins in separate repos):

{
  "name": "community-collection",
  "owner": {
    "name": "Community",
    "email": "maintainers@example.com"
  },
  "plugins": [
    {
      "name": "tool-a",
      "source": {
        "source": "github",
        "repo": "community/tool-a"
      },
      "description": "Tool A description",
      "version": "2.1.0"
    },
    {
      "name": "tool-b",
      "source": {
        "source": "github",
        "repo": "community/tool-b"
      },
      "description": "Tool B description",
      "version": "1.3.0"
    }
  ]
}

Phase 5: Distribution Setup

For Personal Use

No additional setup. Add marketplace locally:

/plugin marketplace add ./path-to-marketplace

For Team Distribution

Add to project's .claude/settings.json:

{
  "extraKnownMarketplaces": {
    "team-tools": {
      "source": {
        "source": "github",
        "repo": "company/claude-plugins"
      }
    }
  },
  "enabledPlugins": {
    "formatter@team-tools": true,
    "linter@team-tools": true
  }
}

How it works:

  1. Team member clones project
  2. Claude Code reads .claude/settings.json
  3. Prompts to trust configured marketplaces
  4. Prompts to install enabled plugins
  5. New team members get correct setup automatically

For Public Distribution

  1. Push marketplace repo to GitHub
  2. Document installation in README: ``` ## Installation Add the marketplace: `bash /plugin marketplace add owner/repo `` Install plugins: /plugin install formatter@owner-tools `

For Enterprise

  1. Set up private git access (SSH keys or tokens)
  2. Create internal marketplace with git URL sources
  3. Configure .claude/settings.json in project templates
  4. Document for IT/security review

Phase 6: Validation and Testing

Step 1: Validate JSON Syntax

# Validate marketplace structure
claude plugin validate .

# Manual JSON validation
python3 -c "import json; json.load(open('.claude-plugin/marketplace.json'))"
python3 -c "import json; json.load(open('.claude-plugin/plugin.json'))"

Step 2: Test Marketplace Addition

# Add marketplace locally
/plugin marketplace add ./path-to-marketplace

# Verify it appears
/plugin marketplace list

Step 3: Test Plugin Installation

# Browse available plugins
/plugin

# Install a plugin
/plugin install plugin-name@marketplace-name

# Verify components work
/help  # Check commands appear

Step 4: Test Team Flow (if applicable)

  1. Clone project with settings.json to new location
  2. Trust folder when prompted
  3. Verify marketplaces and plugins install correctly

Step 5: Verify All Components

  • Commands: Run /command-name to test
  • Agents: Check /agents or try invoking via Task
  • Skills: Use trigger terms to activate
  • Hooks: Trigger events to test
  • MCP servers: Check MCP tool availability

Architecture Patterns

Monorepo Pattern

Structure:

company-plugins/
├── .claude-plugin/
│   └── marketplace.json
├── plugins/
│   ├── plugin-a/
│   ├── plugin-b/
│   └── plugin-c/
└── README.md

Pros:

  • Single repo to manage
  • Unified versioning
  • Easy cross-plugin changes
  • Simpler CI/CD

Cons:

  • All plugins share access control
  • Larger repo size
  • All-or-nothing updates

Best for: Team tools, related plugins, unified ownership


Multi-Repo Pattern

Structure:

# Marketplace repo
tools-marketplace/
└── .claude-plugin/marketplace.json

# Separate plugin repos
plugin-a/   # github.com/org/plugin-a
plugin-b/   # github.com/org/plugin-b
plugin-c/   # github.com/org/plugin-c

Pros:

  • Independent versioning
  • Separate access control
  • Distributed ownership
  • Smaller repos

Cons:

  • More repos to manage
  • Version coordination needed
  • More complex CI/CD

Best for: Community collections, mixed ownership, independent plugins


Hybrid Pattern

Structure:

{
  "plugins": [
    {"name": "core", "source": "./plugins/core"},
    {"name": "community", "source": {"source": "github", "repo": "community/tool"}},
    {"name": "internal", "source": {"source": "git", "url": "https://git.corp/..."}}
  ]
}

Pros:

  • Flexibility to mix sources
  • Can include community plugins
  • Supports private + public

Cons:

  • More complex to maintain
  • Mixed trust levels
  • Varied update cycles

Best for: Enterprise, mature ecosystems, gradual migration


Common Pitfalls

1. Confusing Marketplace with Plugin

Wrong: Thinking marketplace.json IS the plugin Right: marketplace.json POINTS TO plugins

marketplace.json is a catalog. The actual plugin code lives in separate directories or repos.

2. Wrong Source Type

Wrong: Using GitHub shorthand for private repos

{"source": "github", "repo": "private-org/private-repo"}  // May fail

Right: Use git URL for private repos

{"source": "git", "url": "git@github.com:private-org/private-repo.git"}

3. Missing Required Fields

marketplace.json required:

  • name
  • owner.name
  • plugins array

plugin.json required:

  • name
  • description
  • version

4. Path Errors

Wrong: Relative paths from wrong directory

{"source": "../plugins/tool"}  // Relative to what?

Right: Paths relative to marketplace.json location

{"source": "./plugins/tool"}  // Relative to .claude-plugin/

5. Version Mismatch

Keep versions in sync:

  • plugin.json version
  • marketplace.json plugin entry version

When you update a plugin, update both files.

6. Forgetting Validation

Always run before publishing:

claude plugin validate .

7. Trust Model Misunderstanding

Users MUST explicitly trust marketplaces. You cannot force-install plugins on team members. The settings.json only PRE-CONFIGURES - users still approve.


When to Use This Skill

Use marketplace-builder when:

  • Creating a new marketplace
  • Publishing plugins for distribution
  • Setting up team-wide plugin configuration
  • Converting local plugins to distributable packages
  • Troubleshooting marketplace or plugin issues

Don't use when:

  • Creating individual commands (use slash-command-builder)
  • Creating individual agents (use agent-builder)
  • Creating individual skills (use skill-builder)
  • Just using existing plugins (use /plugin commands directly)

File Reference

Templates

  • templates/basic-marketplace.md - Single plugin, simple setup
  • templates/plugin-structure.md - Complete plugin creation guide
  • templates/multi-plugin.md - Monorepo pattern
  • templates/multi-repo.md - Distributed plugins pattern
  • templates/enterprise-marketplace.md - Enterprise with team config

Examples

  • examples/development-tools.md - 6 dev tool plugins
  • examples/team-workflows.md - 6 team workflow plugins
  • examples/specialized-domains.md - 6 domain-specific plugins

Reference

  • reference/syntax-guide.md - Complete JSON schemas
  • reference/best-practices.md - Design principles
  • reference/troubleshooting.md - Common issues and debugging

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.95%
按下载量换算63

OpenCode

23.09%
按下载量换算52

Gemini CLI

17.1%
按下载量换算38

Antigravity

11.53%
按下载量换算26

windsurf

7.63%
按下载量换算17

Codex

3.41%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills