Add Claude Code plugin + marketplace manifests - #9
Merged
Conversation
Make the threads skill installable via the Claude Code plugin marketplace (`/plugin marketplace add fioenix/threads-cli` → `/plugin install threads@threads-cli`), a third distribution channel alongside `skills install` (CLI agents) and `skills bundle` (Cowork zip upload). - .claude-plugin/plugin.json: single-plugin manifest (name=threads), skills auto-discovered from ./skills/ - .claude-plugin/marketplace.json: single-plugin marketplace (source ".") - tests/test_plugin.py: validate both manifests are well-formed and agree - docs: README + cli-cheatsheet document the marketplace channel The plugin distributes only the skill; the `threads` CLI still installs via pipx. Validated with `claude plugin tag --dry-run` (manifests agree). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
What
Makes the
threadsskill installable as a Claude Code plugin via marketplace — a third distribution channel alongside the existing two.Why
The skill now reaches every runtime:
threads skills installthreads skills install --target <agent>threads skills bundle→ upload zipHow
.claude-plugin/plugin.json— single-plugin manifest (name=threads); skills auto-discovered from./skills/, so no path override needed..claude-plugin/marketplace.json— single-plugin marketplace,source: "."(plugin lives at repo root).tests/test_plugin.py— assert both manifests are well-formed JSON, agree on the plugin name, and the bundledSKILL.mdsits where Claude Code discovers it.Boundary preserved
The plugin distributes only the skill (the playbook). The
threadsCLI it drives still installs viapipx install threads-cli— the skill's onboarding section covers that. No reasoning/analysis baked into the repo.Validation
claude plugin tag --dry-runconfirmsplugin.jsonand the marketplace entry agree (pluginthreadsv0.1.0,plugins[0]).🤖 Generated with Claude Code