From 247e991d2e70efe564b4b280ab3cd7e5b5651f5a Mon Sep 17 00:00:00 2001 From: Stephen Benjamin Date: Tue, 8 Sep 2026 13:26:20 -0400 Subject: [PATCH] Fix Codex plugin installation from marketplace --- .agents/plugins/marketplace.json | 2 +- .codex-plugin/plugin.json | 1 + plugins/link/.codex-plugin/plugin.json | 39 -------------------------- scripts/sync-skill-version.js | 2 +- 4 files changed, 3 insertions(+), 41 deletions(-) delete mode 100644 plugins/link/.codex-plugin/plugin.json diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json index 235cd8e2..ee297dfa 100644 --- a/.agents/plugins/marketplace.json +++ b/.agents/plugins/marketplace.json @@ -8,7 +8,7 @@ "name": "link", "source": { "source": "local", - "path": "./plugins/link" + "path": "./" }, "policy": { "installation": "AVAILABLE", diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 96183171..2ca954b9 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,5 +1,6 @@ { "name": "link", + "version": "0.18.0", "description": "Secure, one-time-use payment credentials from Link", "author": { "name": "Stripe", diff --git a/plugins/link/.codex-plugin/plugin.json b/plugins/link/.codex-plugin/plugin.json deleted file mode 100644 index 2b249616..00000000 --- a/plugins/link/.codex-plugin/plugin.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "link", - "version": "0.15.1", - "description": "Secure, one-time-use payment credentials from Link", - "author": { - "name": "Stripe", - "url": "https://link.com/agents" - }, - "homepage": "https://link.com/agents", - "repository": "https://github.com/stripe/link-cli", - "license": "MIT", - "keywords": [ - "payments", - "wallet", - "checkout", - "credentials", - "stripe", - "link" - ], - "skills": "./skills/", - "mcpServers": "./.mcp.json", - "interface": { - "displayName": "Link", - "shortDescription": "Secure one-time-use payments", - "longDescription": "Authenticate with Link, create spend requests, and retrieve one-time-use card or shared payment token credentials for user-approved purchases.", - "developerName": "Stripe", - "category": "Finance", - "capabilities": [], - "websiteURL": "https://link.com/agents", - "privacyPolicyURL": "https://link.com/privacy", - "termsOfServiceURL": "https://link.com/terms", - "defaultPrompt": [ - "Use Link to create a payment credential for this purchase" - ], - "screenshots": [], - "composerIcon": "./assets/link.svg", - "logo": "./assets/link.svg" - } -} diff --git a/scripts/sync-skill-version.js b/scripts/sync-skill-version.js index 0eca51a2..902082c4 100644 --- a/scripts/sync-skill-version.js +++ b/scripts/sync-skill-version.js @@ -50,5 +50,5 @@ syncPluginJsonVersion( ); syncPluginJsonVersion( '.codex-plugin/plugin.json', - resolve(root, 'plugins/link/.codex-plugin/plugin.json'), + resolve(root, '.codex-plugin/plugin.json'), );