This skill should be used when the user wants to "create a marketplace", "setup a marketplace catalog", "scaffold marketplace.json", or "initialize a plugin registry". Use this even if they just mention "setting up a marketplace".
From agent-scaffoldersnpx claudepluginhub richfrem/agent-plugins-skills --plugin agent-scaffoldersThis skill is limited to using the following tools:
acceptance-criteria.mdevals/evals.jsonevals/results.tsvexamples/marketplace.jsonmanage-marketplace-flow.mmdreferences/acceptance-criteria.mdreferences/architecture.mdreferences/marketplace-schema.mdDispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Guides idea refinement into designs: explores context, asks questions one-by-one, proposes approaches, presents sections for approval, writes/review specs before coding.
Guidelines for authoring, appending, and distributing plugin marketplace catalogs.
To create a new marketplace:
.claude-plugin/ directory at the root.marketplace.json file inside .claude-plugin/.{
"name": "my-marketplace",
"owner": {
"name": "My Name",
"email": "optional@example.com"
},
"plugins": []
}
Reserved names (blocked by Claude Code):
claude-code-marketplace,claude-code-plugins,claude-plugins-official,anthropic-marketplace,anthropic-plugins,agent-skills,knowledge-work-plugins,life-sciences. Names that impersonate official marketplaces (e.g.official-claude-plugins) are also blocked.
To add entries to your marketplace plugins list:
name (kebab-case).source — choose the type that matches your hosting:Same-repo subdirectory (monorepo — verified working)
{ "source": "./plugins/my-plugin-folder" }
Path is resolved relative to the marketplace root (the directory containing .claude-plugin/), not from .claude-plugin/ itself. Must start with ./.
Note: Relative paths only work when the marketplace is added via Git (GitHub, GitLab, git URL). If added via a direct URL to
marketplace.json, relative paths fail — usegithub,npm, orurlsources instead.
GitHub repository
{ "source": { "source": "github", "repo": "owner/repo", "ref": "v2.0.0", "sha": "a1b2c3d..." } }
ref and sha are optional. Omit to use the default branch.
Monorepo subdirectory via sparse clone (avoids fetching whole repo)
{ "source": { "source": "git-subdir", "url": "https://github.com/owner/repo", "path": "plugins/my-plugin" } }
Note: field is path (not subdir), and the key is source (not type). Also accepts GitHub shorthand or SSH URLs.
npm package
{ "source": { "source": "npm", "package": "@scope/my-plugin", "version": "^1.0.0", "registry": "https://registry.npmjs.org" } }
version defaults to latest; registry defaults to the public npm registry.
Non-GitHub git host
{ "source": { "source": "url", "url": "https://gitlab.com/owner/repo.git", "ref": "main" } }
The .git suffix is optional — Azure DevOps and AWS CodeCommit URLs without it work fine.
Set strict mode:
strict: true (default) — plugin's own plugin.json is authoritative; marketplace entry can supplement with additional components.strict: false — marketplace entry IS the entire definition; plugin must NOT also have a plugin.json declaring components (conflict = plugin fails to load).Optional: use metadata.pluginRoot to shorten relative source paths. Setting "pluginRoot": "./plugins" lets you write "source": "formatter" instead of "source": "./plugins/formatter".
Optional: pin a version. Warning: do not set version in both the marketplace entry and the plugin's plugin.json — plugin.json wins silently and the marketplace version is ignored. For relative-path plugins, set version in the marketplace entry. For all other sources, set it in plugin.json.
Plugin Author Note: In hooks or server configs, use
${CLAUDE_PLUGIN_ROOT}(read-only install path) and${CLAUDE_PLUGIN_DATA}(persistent state directory) instead of absolute host paths.
Run validation to catch schema errors before consumers see them:
/plugin validate .
# or via CLI:
claude plugin validate .
Validator checks: plugin.json, skill/agent/command frontmatter, hooks/hooks.json syntax and schema.
Common errors:
| Error | Solution |
|---|---|
File not found: .claude-plugin/marketplace.json | Create the file with required fields |
Duplicate plugin name "x" | Give each plugin a unique name |
plugins[0].source: Path contains ".." | Use paths without .. |
YAML frontmatter failed to parse | Fix YAML syntax in the skill/agent file |
.claude-plugin/marketplace.json at the repo root (not inside a subdirectory).main).Consumers register the marketplace with:
/plugin marketplace add owner/repo
Example: /plugin marketplace add richfrem/agent-plugins-skills
On success, Claude Code responds: Successfully added marketplace: <name>
Known non-working subcommands (Claude Code 2.1.81):
/plugin marketplace browse — returns no content, not a supported subcommand/plugin list or /plugin help to discover what subcommands are available in your versionAfter adding the marketplace, install any listed plugin by name:
/plugin install <name>
This opens an interactive Plugins panel (not plain text output) showing:
marketplace.jsonScope flags (if using CLI directly):
/plugin install <name> — user scope (default)/plugin install <name> --scope project — team shared/plugin install <name> --scope local — machine localNote: The command returns no stdout — the install UI renders in the Plugins panel, not the terminal.
After install, run /reload-plugins to activate immediately without restarting. Output format:
Reloaded: N plugins · N skill · N agents · N hooks · N plugin MCP servers · N plugin LSP server
/plugin)Running /plugin with no arguments opens the full plugin manager with tabs:
Shows each registered marketplace with:
• claude-plugins-official * ← * = built-in/pinned
anthropics/claude-plugins-official
117 available • 2 installed • Updated 3/22/2026
• my-marketplace-id
owner/repo
27 available • 1 installed • Updated 3/22/2026
Keybindings: Enter select · u update · r remove
Selecting an installed plugin shows:
plugin-name @ marketplace-id
Scope: project
Version: 2.0.0
<description>
Author: Author Name
Status: Enabled
Installed components:
• Skills: skill-a, skill-b
Options: Disable plugin · Mark for update · Update now · Uninstall · View repository · Back to plugin list
.claude/settings.json){
"extraKnownMarketplaces": {
"my-marketplace-id": {
"source": {
"source": "github",
"repo": "owner/repo"
}
}
},
"enabledPlugins": {
"my-plugin@my-marketplace-id": true
}
}
extraKnownMarketplaces is a keyed object (not an array) where the key is the marketplace ID (kebab-case). enabledPlugins is also a keyed object using the format "plugin-name@marketplace-id": true. Both make the marketplace and plugin available by default for every team member.
strictKnownMarketplaces in managed settings restricts which sources users can add:
{ "strictKnownMarketplaces": [] } // complete lockdown
{ "strictKnownMarketplaces": [{ "source": "github", "repo": "acme/approved" }] } // allowlist
{ "strictKnownMarketplaces": [{ "source": "hostPattern", "hostPattern": "^github\\.example\\.com$" }] } // regex on host
{ "strictKnownMarketplaces": [{ "source": "pathPattern", "pathPattern": "^/opt/approved/" }] } // regex on path
Note: this is a policy gate only — it does NOT register marketplaces. Pair with extraKnownMarketplaces to pre-register allowed ones.
export CLAUDE_CODE_PLUGIN_SEED_DIR=/path/to/pre-installed-plugins
# Seed directory mirrors ~/.claude/plugins structure (known_marketplaces.json, marketplaces/, cache/)
# Seed entries are read-only — auto-updates disabled for seeded marketplaces
# To layer multiple seed dirs, separate with : (Unix) or ; (Windows)
Point two marketplace entries at different ref values of the same repo:
{ "name": "stable-tools", "plugins": [{ "name": "my-plugin", "source": { "source": "github", "repo": "acme/plugin", "ref": "stable" } }] }
{ "name": "latest-tools", "plugins": [{ "name": "my-plugin", "source": { "source": "github", "repo": "acme/plugin", "ref": "latest" } }] }
Each ref's plugin.json must declare a different version — same version = Claude Code treats them as identical and skips the update.
/plugin marketplace list # list all registered marketplaces
/plugin marketplace update <name> # refresh catalog from remote
/plugin marketplace remove <name> # remove (also uninstalls its plugins)
/plugin install <plugin>@<marketplace> # install (user scope default)
/plugin disable <plugin>@<marketplace> # disable without uninstalling
/plugin enable <plugin>@<marketplace> # re-enable
/plugin uninstall <plugin>@<marketplace> # remove completely
claude plugin install <plugin> --scope project # install at specific scope
Shortcuts: /plugin market = /plugin marketplace, rm = remove.
| Variable | Purpose |
|---|---|
CLAUDE_CODE_PLUGIN_SEED_DIR | Pre-populate plugins for containers/CI |
CLAUDE_CODE_PLUGIN_GIT_TIMEOUT_MS | Git clone/pull timeout in ms (default: 120000) |
GITHUB_TOKEN / GH_TOKEN | Auth for private GitHub marketplace repos (auto-updates) |
GITLAB_TOKEN / GL_TOKEN | Auth for private GitLab repos |
BITBUCKET_TOKEN | Auth for private Bitbucket repos |
FORCE_AUTOUPDATE_PLUGINS=true | Keep plugin auto-updates on when DISABLE_AUTOUPDATER is set |
skillsmp.com auto-indexes open-source SKILL.md skills from GitHub daily.
SKILL.md files containing name + description frontmatterclaude-skills and/or claude-code-skillTODO: CHECK INDEXING - Topics added to
richfrem/agent-plugins-skillson 2026-03-22. Verify at skillsmp.com after 2026-03-23.
Skills at plugins/<plugin>/skills/<skill>/SKILL.md (4 levels deep) may not be crawled. If not indexed after first sync, add a top-level skills/ directory mirroring the skill folders.