From cb233428cd5017a4ec2910ce4082edcb8826d3e9 Mon Sep 17 00:00:00 2001 From: oceans404 Date: Fri, 22 May 2026 08:12:41 -0700 Subject: [PATCH 1/2] fix: correct plugin install command to use marketplace name 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 #28 --- README.md | 2 +- site/src/data/installers.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6d2cf6..82f8892 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ These skills work with any agent that supports the [Agent Skills](https://agents /plugin marketplace add stellar/stellar-dev-skill # Then install the skill -/plugin install stellar-dev@stellar-dev-skill +/plugin install stellar-dev@stellar-dev ``` ### [npx skills](https://skills.sh) diff --git a/site/src/data/installers.mjs b/site/src/data/installers.mjs index bf6b6d1..1f94016 100644 --- a/site/src/data/installers.mjs +++ b/site/src/data/installers.mjs @@ -21,7 +21,7 @@ export const INSTALLERS = [ description: "Install using the plugin marketplace:", commands: [ "/plugin marketplace add stellar/stellar-dev-skill", - "/plugin install stellar-dev@stellar-dev-skill", + "/plugin install stellar-dev@stellar-dev", ], }, { From f82959f7030a789a037cef95a0ee3d466fc81fe4 Mon Sep 17 00:00:00 2001 From: oceans404 Date: Fri, 22 May 2026 08:16:26 -0700 Subject: [PATCH 2/2] docs: add OpenAI Codex install instructions Per feedback in #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. --- README.md | 6 ++++++ site/src/data/installers.mjs | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/README.md b/README.md index 82f8892..a66e182 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,12 @@ These skills work with any agent that supports the [Agent Skills](https://agents /plugin install stellar-dev@stellar-dev ``` +### [OpenAI Codex](https://developers.openai.com/codex/skills/) + +```bash +git clone https://github.com/stellar/stellar-dev-skill ~/.codex/skills/stellar-dev-skill +``` + ### [npx skills](https://skills.sh) ```bash diff --git a/site/src/data/installers.mjs b/site/src/data/installers.mjs index 1f94016..d5ba32b 100644 --- a/site/src/data/installers.mjs +++ b/site/src/data/installers.mjs @@ -30,6 +30,13 @@ export const INSTALLERS = [ "Install from the Cursor Marketplace, or add manually via Settings → Rules → Add Rule → Remote Rule (GitHub) with this slug:", commands: ["stellar/stellar-dev-skill"], }, + { + name: "OpenAI Codex", + description: "Clone the repo into your Codex skills directory:", + commands: [ + "git clone https://github.com/stellar/stellar-dev-skill ~/.codex/skills/stellar-dev-skill", + ], + }, { name: "npx skills", description: "Install using the npx skills CLI:",