feat(plugin): expose repo as a marketplace with two installable plugins#14
Merged
Conversation
`/plugin marketplace add mittwald/agent-skills` failed because the repo only shipped a single-plugin manifest (.claude-plugin/plugin.json) and no marketplace catalog, so Claude Code could not find marketplace.json. - Add .claude-plugin/marketplace.json cataloguing both skills as plugins - Add per-skill .claude-plugin/plugin.json (single-SKILL.md-at-root layout), keeping the skills/ dirs in place so `npx skills add` and manual clone installs keep working - Drop the repo-root plugin.json that treated the whole repo as one plugin - Fix README install command: mittwald-zerodeploy-skill -> mittwald-zerodeploy Validated with `claude plugin validate .` (passes). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The registered marketplace name (the `@…` install suffix) comes from the `name` field in marketplace.json — there is no client-side alias at add time. Rename it from the generic `agent-skills` to `mittwald-agent-skills` so the origin is clear and it won't collide with other generic marketplaces. Install suffix is now `@mittwald-agent-skills`; README updated to match. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
gandie
approved these changes
Jul 1, 2026
gandie
left a comment
Member
There was a problem hiding this comment.
thanks for clarification and fix! LGTM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
/plugin marketplace add mittwald/agent-skillsfailed with:The repo shipped a single-plugin manifest (
.claude-plugin/plugin.json) but no marketplace catalog, so/plugin marketplace addhad nothing to read. The README's install commands could never resolve.Change
Turn the repo into a marketplace with two individually installable plugins:
.claude-plugin/marketplace.json— catalog namedmittwald-agent-skills, listing both skills as plugins (source: ./skills/<name>). The name is explicit rather than the genericagent-skillsso the origin is clear and it won't collide with other marketplaces (the@…install suffix comes from thisnamefield — there is no client-side alias at add time)..claude-plugin/plugin.json— each skill dir becomes a single plugin using the "oneSKILL.mdat plugin root" layout. Theskills/dirs stay in place, sonpx skills addand manual-clone installs keep working.plugin.json— it treated the whole repo as one bundled plugin and conflicted with the marketplace approach.mittwald-zerodeploy) and the install suffix (@mittwald-agent-skills).Validation
claude plugin validate .→ passesscripts/validate-skills.sh→ 2 skills passUsage after merge
🤖 Generated with Claude Code