From a6d6d5771ef34e0b679e472d4e40d7705267abff Mon Sep 17 00:00:00 2001 From: n-seiji <49780855+n-seiji@users.noreply.github.com> Date: Thu, 28 May 2026 10:37:11 +0900 Subject: [PATCH] Add Codex marketplace index Add a Codex marketplace index under .agents/plugins so the repository is discoverable through codex plugin marketplace add. Point the marketplace entry at ./plugins/webwright, matching the Codex marketplace layout expected by the plugin creator guidance and bundled marketplaces. Use a symlink from plugins/webwright back to the repository root so the existing .codex-plugin/plugin.json and skills/webwright tree stay authoritative instead of duplicating the skill files. --- .agents/plugins/marketplace.json | 20 ++++++++++++++++++++ plugins/webwright | 1 + 2 files changed, 21 insertions(+) create mode 100644 .agents/plugins/marketplace.json create mode 120000 plugins/webwright diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json new file mode 100644 index 0000000..002706e --- /dev/null +++ b/.agents/plugins/marketplace.json @@ -0,0 +1,20 @@ +{ + "name": "webwright", + "interface": { + "displayName": "Webwright" + }, + "plugins": [ + { + "name": "webwright", + "source": { + "source": "local", + "path": "./plugins/webwright" + }, + "policy": { + "installation": "AVAILABLE", + "authentication": "ON_INSTALL" + }, + "category": "Productivity" + } + ] +} diff --git a/plugins/webwright b/plugins/webwright new file mode 120000 index 0000000..a96aa0e --- /dev/null +++ b/plugins/webwright @@ -0,0 +1 @@ +.. \ No newline at end of file