From 6149f3635ada80182895d586d803c48124524d7d Mon Sep 17 00:00:00 2001 From: Drew Ritter Date: Tue, 14 Apr 2026 13:48:05 -0700 Subject: [PATCH] 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) --- scripts/sync-to-codex-plugin.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/scripts/sync-to-codex-plugin.sh b/scripts/sync-to-codex-plugin.sh index 323eb883..e64b83d7 100755 --- a/scripts/sync-to-codex-plugin.sh +++ b/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": [] } }