feat(phase-5): Claude Code skill marketplace install path#14
Merged
Conversation
…all path Lets Claude Code users install watch-cli as a skill via: /plugin marketplace add sonpiaz/watch-cli /plugin install watch-cli@watch-cli The marketplace.json points at the existing skills/watch-cli/SKILL.md (symlinked from repo root). No new SKILL content — this is purely the plumbing that makes the existing portable SKILL.md installable through Claude Code's plugin manager without manual cp -r. README install section gets a Claude Code subsection with the two-line install. Removes the now-obsolete 'requires v0.3.0 to be cut first' caveat since v0.3.0 has shipped. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
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.
Summary
Adds `.claude-plugin/marketplace.json` so Claude Code users can install watch-cli as a skill via:
```
/plugin marketplace add sonpiaz/watch-cli
/plugin install watch-cli@watch-cli
```
The marketplace.json points at the existing `skills/watch-cli/SKILL.md` (symlinked from the repo-root canonical SKILL.md authored in Phase 2). No new skill content — this is purely the plumbing that makes the existing portable SKILL.md installable through Claude Code's plugin manager without manual `cp -r ~/.claude/skills/`.
Files changed
Why this matters
Phase 2 shipped a portable `SKILL.md` valid in Claude Code + OpenClaw + Hermes. Until this PR, Claude Code users had to:
```
git clone https://github.com/sonpiaz/watch-cli ~/.claude/skills/watch-cli
```
After this PR, two slash commands handle it.
Test plan