maintaining-a-marketplace
npx machina-cli add skill ed3dai/ed3d-plugins/maintaining-a-marketplace --openclawMaintaining a Marketplace
Overview
A Claude Code Plugin Marketplace is a git repository containing .claude-plugin/marketplace.json that catalogs plugins for discovery and installation. The primary maintenance challenge is sync drift — keeping versions, descriptions, and metadata consistent across plugin.json, marketplace.json, and CHANGELOG.md.
When to Use
- Setting up a new marketplace from scratch
- Releasing a new plugin version
- Adding a plugin to an existing marketplace
- Auditing marketplace consistency
- Troubleshooting plugin installation failures
Marketplace Structure
my-marketplace/
.claude-plugin/
marketplace.json # Required: marketplace catalog
plugins/
plugin-a/
.claude-plugin/
plugin.json # Required: plugin manifest
skills/
commands/
agents/
plugin-b/
.claude-plugin/
plugin.json
marketplace.json Schema
{
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
"name": "my-marketplace",
"owner": {
"name": "Your Name",
"email": "you@example.com"
},
"metadata": {
"description": "Brief marketplace description",
"version": "1.0.0",
"pluginRoot": "./plugins"
},
"plugins": [
{
"name": "my-plugin",
"source": "./plugins/my-plugin",
"description": "What this plugin does",
"version": "1.0.0",
"author": {
"name": "Your Name",
"email": "you@example.com"
},
"license": "MIT",
"keywords": ["category1", "category2"],
"category": "development"
}
]
}
Required fields:
name— Kebab-case marketplace identifier. Users see this:/plugin install my-tool@marketplace-nameowner.name— Maintainer name (string, not bare string for owner)plugins— Array of plugin entries
Each plugin entry requires:
name— Kebab-case plugin identifiersource— Where to fetch the plugin (see Source Formats below)
Common optional fields: description, version, author, license, keywords, category, tags, homepage, repository
Fields that DO NOT exist (do not invent these): displayName, installUrl, path, marketplace (as wrapper object)
Source Formats
// Relative path (monorepo — only works with git-based marketplace add)
"source": "./plugins/my-plugin"
// GitHub repository
"source": { "source": "github", "repo": "owner/repo" }
// GitHub with pinned version
"source": { "source": "github", "repo": "owner/repo", "ref": "v2.0.0", "sha": "a1b2c3..." }
// Git URL (GitLab, Bitbucket, self-hosted)
"source": { "source": "url", "url": "https://gitlab.com/team/plugin.git" }
Release Checklist
When releasing a new plugin version, update these files in this order:
plugins/<name>/.claude-plugin/plugin.json— Bumpversion.claude-plugin/marketplace.json— Update matching plugin entry'sversionto the same valueCHANGELOG.md— Add entry at the top (after# Changelogheading)- Validate — Run
claude plugin validate .or/plugin validate .from the marketplace root - Commit and push — Single commit with all three file changes
Changelog Format
## plugin-name X.Y.Z
Brief description of the release (1-2 sentences).
**New:**
- Specific new features or additions
**Changed:**
- Modifications to existing behavior
**Fixed:**
- Bug fixes
Only include sections that apply. Be specific — "Added code-review-checklist skill for systematic code review" not "Added new skill."
Version Sync Verification
After editing, verify these match:
plugins/<name>/.claude-plugin/plugin.json→version.claude-plugin/marketplace.json→ plugin entry'sversionCHANGELOG.md→ entry header## plugin-name X.Y.Z
All three MUST show the same version string.
Creating a New Marketplace
From Scratch
- Create directory structure with
.claude-plugin/marketplace.json - Add plugin entries with
nameandsourceat minimum - Add
$schemafield for validation - Validate:
claude plugin validate . - Test locally:
/plugin marketplace add ./my-marketplace - Push to git host for distribution
Adding a Plugin to Existing Marketplace
- Read the plugin's
plugin.jsonto extract metadata - Add entry to
pluginsarray inmarketplace.jsonwith fields matching plugin.json - Validate:
claude plugin validate . - Add changelog entry for the marketplace update
Distribution
Users add your marketplace by its git location:
# GitHub
/plugin marketplace add owner/repo
# Other git hosts
/plugin marketplace add https://gitlab.com/company/plugins.git
# Specific branch/tag
/plugin marketplace add https://gitlab.com/company/plugins.git#v1.0.0
# Local (development)
/plugin marketplace add ./my-marketplace
Users install plugins from your marketplace:
/plugin install plugin-name@marketplace-name
Auto-Updates
- Official Anthropic marketplaces auto-update by default
- Third-party marketplaces have auto-update disabled by default
- Users toggle auto-update per marketplace in
/plugin→ Marketplaces tab
Team Configuration
Add to .claude/settings.json in a project repo to prompt team members to install:
{
"extraKnownMarketplaces": {
"company-tools": {
"source": { "source": "github", "repo": "your-org/claude-plugins" }
}
},
"enabledPlugins": {
"formatter@company-tools": true
}
}
Private Repositories
Manual install uses existing git credential helpers. For background auto-updates, set environment tokens:
| Provider | Variables |
|---|---|
| GitHub | GITHUB_TOKEN or GH_TOKEN |
| GitLab | GITLAB_TOKEN or GL_TOKEN |
| Bitbucket | BITBUCKET_TOKEN |
Common Mistakes
| Mistake | Symptom | Fix |
|---|---|---|
| Version drift between plugin.json and marketplace.json | Old version installed despite push | Verify both files show same version |
| Skipping validation | JSON syntax errors, missing fields | Run claude plugin validate . before every push |
| Generic changelog entries | Users can't evaluate upgrade value | Describe specific changes, name affected skills/agents |
| Inventing schema fields | Validation errors, plugins not found | Only use fields from the schema above |
Using owner as string | Validation error | owner must be object: {"name": "...", "email": "..."} |
| Missing source in plugin entry | Plugin can't be installed | Every plugin entry needs source |
| Relative paths in URL-based marketplace | "path not found" errors | Only use relative paths with git-based marketplace add |
| Not committing all sync files together | Partial release, version mismatch | Single commit for plugin.json + marketplace.json + CHANGELOG.md |
| Forgetting to push | Local changes, users see old version | Commit AND push after release |
Quick Reference
| Task | Files to Touch |
|---|---|
| New plugin version | plugin.json + marketplace.json + CHANGELOG.md |
| New plugin added | marketplace.json + CHANGELOG.md |
| New marketplace | .claude-plugin/marketplace.json only |
| Description update | plugin.json + marketplace.json (keep in sync) |
| Validate | claude plugin validate . or /plugin validate . |
Source
git clone https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-extending-claude/skills/maintaining-a-marketplace/SKILL.mdView on GitHub Overview
Maintaining a Marketplace helps you manage a Claude Code Plugin Marketplace repo. It focuses on preventing sync drift across plugin.json, marketplace.json, and CHANGELOG.md, ensuring versions and metadata stay accurate as plugins evolve.
How This Skill Works
The skill outlines the marketplace.json schema, required fields, and supported source formats, so you can structure the catalog consistently. It also provides a release checklist, changelog conventions, and a validation step to prevent drift by running claude plugin validate from the marketplace root.
When to Use It
- Setting up a new marketplace from scratch
- Releasing a new plugin version
- Adding a plugin to an existing marketplace
- Auditing marketplace consistency
- Troubleshooting plugin installation failures
Quick Start
- Step 1: Initialize a new marketplace folder with .claude-plugin/marketplace.json and a plugins/ directory containing each plugin's .claude-plugin/plugin.json.
- Step 2: For each release, bump the plugin version, update the marketplace entry to the same version, and add a top-of-file CHANGELOG.md entry.
- Step 3: Run claude plugin validate . from the marketplace root and commit all changes in a single commit.
Best Practices
- Bump a plugin's version in plugin.json before aligning marketplace.json.
- Update the matching marketplace.json entry to the same version.
- Add a clear CHANGELOG.md entry at the top after the '# Changelog' heading.
- Validate the entire marketplace with claude plugin validate . before committing.
- Verify post-edit consistency with Version Sync Verification to ensure plugin.json and marketplace.json match.
Example Use Cases
- Setting up a fresh marketplace from scratch for a new project.
- Releasing version 1.2.0 of a plugin and syncing marketplace.json accordingly.
- Adding a new plugin to an existing marketplace while maintaining metadata consistency.
- Auditing marketplace.json and plugin.json for drift across multiple plugins.
- Troubleshooting a failed plugin install by correcting mismatched version data.