Browse Source

sync-to-codex-plugin: align plugin.json heredoc with current live shape

The live .codex-plugin/plugin.json in the downstream fork was cleaned up
(websiteURL, privacyPolicyURL, termsOfServiceURL, and defaultPrompt
removed) and icon fields were added (composerIcon, logo pointing at
assets/superpowers-small.svg and assets/app-icon.png). Update the
heredoc to produce the same shape so future sync runs don't wipe the
icon fields or reintroduce the removed URL fields.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Drew Ritter 5 months ago
parent
commit
6149f3635a
1 changed files with 2 additions and 8 deletions
  1. 2 8
      scripts/sync-to-codex-plugin.sh

+ 2 - 8
scripts/sync-to-codex-plugin.sh

@@ -113,15 +113,9 @@ generate_plugin_json() {
       "Read",
       "Write"
     ],
-    "websiteURL": "https://github.com/obra/superpowers",
-    "privacyPolicyURL": "https://docs.github.com/site-policy/privacy-policies/github-general-privacy-statement",
-    "termsOfServiceURL": "https://docs.github.com/en/site-policy/github-terms/github-terms-of-service",
-    "defaultPrompt": [
-      "Use Superpowers to plan this feature before we code",
-      "Debug this bug with a systematic root-cause workflow",
-      "Turn this approved design into an implementation plan"
-    ],
     "brandColor": "#F59E0B",
+    "composerIcon": "./assets/superpowers-small.svg",
+    "logo": "./assets/app-icon.png",
     "screenshots": []
   }
 }