From c134518f6d53ba9686c7004c3f5bf990526d3fca Mon Sep 17 00:00:00 2001 From: Mine77 Date: Fri, 28 Aug 2026 06:25:41 +0000 Subject: [PATCH] Link official ChatGPT plugin listing --- README.md | 7 ++----- README.zh-CN.md | 7 ++----- tests/plugin.test.mjs | 10 ++++++++++ 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9f02daa..bf28d12 100644 --- a/README.md +++ b/README.md @@ -40,12 +40,9 @@ claude plugin marketplace add StarryKit/starrykit-plugin claude plugin install starrykit-plugin@starrykit ``` -### Codex +### ChatGPT & Codex -```bash -codex plugin marketplace add StarryKit/starrykit-plugin -codex plugin add starrykit-plugin@starrykit -``` +[Install StarryKit from the official ChatGPT Plugin Directory.](https://chatgpt.com/plugins/plugin_asdk_app_6a7ad0afe3ec819188809d7760d8bc2a) ### Cursor diff --git a/README.zh-CN.md b/README.zh-CN.md index bcd6d2a..e2012e4 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -40,12 +40,9 @@ claude plugin marketplace add StarryKit/starrykit-plugin claude plugin install starrykit-plugin@starrykit ``` -### Codex +### ChatGPT & Codex -```bash -codex plugin marketplace add StarryKit/starrykit-plugin -codex plugin add starrykit-plugin@starrykit -``` +[前往 ChatGPT 官方 Plugin Directory 安装 StarryKit。](https://chatgpt.com/plugins/plugin_asdk_app_6a7ad0afe3ec819188809d7760d8bc2a) ### Cursor diff --git a/tests/plugin.test.mjs b/tests/plugin.test.mjs index 1374b2e..6e121c7 100644 --- a/tests/plugin.test.mjs +++ b/tests/plugin.test.mjs @@ -5,6 +5,7 @@ import { describe, it } from "node:test"; const ROOT = resolve(import.meta.dirname, ".."); const PRODUCTION_MCP_URL = "https://mcp.starrykit.com/mcp"; +const OFFICIAL_CHATGPT_PLUGIN_URL = "https://chatgpt.com/plugins/plugin_asdk_app_6a7ad0afe3ec819188809d7760d8bc2a"; const DEVELOPMENT_APP_ID = "asdk_app_6a7d4856434081919523a0971a413bb4"; const HOSTS = ["codex", "claude-code", "grok-build", "cursor", "opencode", "openclaw", "pi", "other-hosts"]; @@ -80,6 +81,15 @@ describe("plugin bundle", () => { }); }); + it("links ChatGPT and Codex users to the official Plugin Directory listing", () => { + for (const path of ["README.md", "README.zh-CN.md"]) { + const source = read(path); + assert.ok(source.includes(OFFICIAL_CHATGPT_PLUGIN_URL), `${path} must link to the official ChatGPT Plugin listing`); + assert.ok(!source.includes("codex plugin marketplace add"), `${path} must not advertise the legacy Codex marketplace flow`); + assert.ok(!source.includes("codex plugin add"), `${path} must not advertise the legacy Codex install flow`); + } + }); + it("provides concise Codex discovery metadata and starter prompts", () => { const { interface: metadata } = json(".codex-plugin/plugin.json");