fix: correct plugin install command + add Codex install docs#29
Conversation
The marketplace.json defines the marketplace name as `stellar-dev`, not `stellar-dev-skill`, so the documented install command fails with "Marketplace 'stellar-dev-skill' not found". Update the README and the site installer card to use `stellar-dev@stellar-dev`. Closes stellar#28
There was a problem hiding this comment.
Pull request overview
This PR fixes the documented Claude Code plugin install command to reference the correct marketplace name (stellar-dev), aligning user-facing docs with .claude-plugin/marketplace.json so installs don’t fail with “Marketplace not found”.
Changes:
- Update the README install command to
/plugin install stellar-dev@stellar-dev. - Update the site’s “Installing” card command to match the corrected marketplace name.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| site/src/data/installers.mjs | Fixes the Claude Code installer command shown on the landing page/llms.txt to use the correct marketplace name. |
| README.md | Fixes the documented Claude Code install command to reference the actual marketplace name. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Per feedback in stellar#27 from @jamesbachini, surface a one-liner for cloning the repo into the Codex skills directory. Adds the section to both the README and the landing-page installer cards.
|
Verified against Codex's loader source. Discovery is recursive up to depth 6, so the clone-into-subdir form you proposed works correctly; Codex will find each The path is marked "deprecated" in Codex source in favor of |
Summary
.claude-plugin/marketplace.jsonisstellar-dev, notstellar-dev-skill. Updates README and the site installer card to/plugin install stellar-dev@stellar-dev.~/.codex/skills/) to both the README and the landing-page installer cards.Repro of the install bug (closes #28)
Reported by @iamjayrome on Twitter: https://x.com/iamjayrome/status/2057528609599111530
Codex docs (part of #27)
Addresses one item from @jamesbachini's feedback in #27: surface a one-line Codex install command. Path uses
~/.codex/skills/to match the existing Skill Directory table in the README.Test plan
/plugin marketplace add stellar/stellar-dev-skillthen/plugin install stellar-dev@stellar-devin Claude Code and confirm install succeeds.~/.codex/skills/stellar-dev-skillclone is the right pattern for Codex skill discovery (or adjust path).