From 60091a11d53f49cf601392f0a4ec70e10f7d004a Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Wed, 8 Jul 2026 09:33:59 +0900 Subject: [PATCH] chore: generate Codex, Cursor, and Antigravity plugin manifests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Generated via the plugin-dev multi-format generator from .claude-plugin/plugin.json (source of truth): - .codex-plugin/plugin.json — Codex runtime manifest - .cursor-plugin/plugin.json — Cursor runtime manifest - plugin.json — Antigravity root manifest - hooks.json — Antigravity root hooks (mirrors hooks/hooks.json with ${CLAUDE_PLUGIN_ROOT}/ rewritten to ./) No MCP servers are declared, so no .mcp.json was generated. release-please-config.json's extra-files for the root ask-plugin package now include all three new version-bearing manifests, so their $.version stays synced with .claude-plugin/plugin.json on release. --- .codex-plugin/plugin.json | 33 +++++++++++++++++++++++++++++++++ .cursor-plugin/plugin.json | 24 ++++++++++++++++++++++++ hooks.json | 16 ++++++++++++++++ plugin.json | 19 +++++++++++++++++++ release-please-config.json | 15 +++++++++++++++ 5 files changed, 107 insertions(+) create mode 100644 .codex-plugin/plugin.json create mode 100644 .cursor-plugin/plugin.json create mode 100644 hooks.json create mode 100644 plugin.json diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..03419e1 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,33 @@ +{ + "name": "ask", + "version": "0.4.11", + "description": "ASK (Agent Skills Kit) — AI agent skills for managing library documentation registry entries", + "author": { + "name": "Minsu Lee", + "url": "https://github.com/amondnet" + }, + "interface": { + "displayName": "Ask", + "shortDescription": "ASK (Agent Skills Kit) — AI agent skills for managing library documentation registry entries", + "longDescription": "ASK (Agent Skills Kit) — AI agent skills for managing library documentation registry entries", + "developerName": "Minsu Lee", + "category": "Development", + "capabilities": [ + "Skill" + ], + "defaultPrompt": [ + "Help me use Ask for my current task." + ], + "websiteURL": "https://github.com/pleaseai/ask" + }, + "homepage": "https://github.com/pleaseai/ask", + "repository": "https://github.com/pleaseai/ask", + "license": "MIT", + "keywords": [ + "documentation", + "registry", + "library", + "agent-skills", + "ask" + ] +} diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json new file mode 100644 index 0000000..efdbe6d --- /dev/null +++ b/.cursor-plugin/plugin.json @@ -0,0 +1,24 @@ +{ + "name": "ask", + "displayName": "Ask", + "description": "ASK (Agent Skills Kit) — AI agent skills for managing library documentation registry entries", + "version": "0.4.11", + "author": { + "name": "Minsu Lee" + }, + "category": "Development", + "homepage": "https://github.com/pleaseai/ask", + "repository": "https://github.com/pleaseai/ask", + "license": "MIT", + "keywords": [ + "documentation", + "registry", + "library", + "agent-skills", + "ask" + ], + "tags": [ + "tooling", + "documentation" + ] +} diff --git a/hooks.json b/hooks.json new file mode 100644 index 0000000..2232a65 --- /dev/null +++ b/hooks.json @@ -0,0 +1,16 @@ +{ + "description": "Suggest ask CLI commands when WebFetch targets GitHub or a known library docs site", + "hooks": { + "PreToolUse": [ + { + "matcher": "WebFetch", + "hooks": [ + { + "type": "command", + "command": "node \"./hooks/fetch-hint.mjs\"" + } + ] + } + ] + } +} diff --git a/plugin.json b/plugin.json new file mode 100644 index 0000000..03f1f3f --- /dev/null +++ b/plugin.json @@ -0,0 +1,19 @@ +{ + "name": "ask", + "version": "0.4.11", + "description": "ASK (Agent Skills Kit) — AI agent skills for managing library documentation registry entries", + "author": { + "name": "Minsu Lee", + "url": "https://github.com/amondnet" + }, + "homepage": "https://github.com/pleaseai/ask", + "repository": "https://github.com/pleaseai/ask", + "license": "MIT", + "keywords": [ + "documentation", + "registry", + "library", + "agent-skills", + "ask" + ] +} diff --git a/release-please-config.json b/release-please-config.json index bf6176c..5432c9a 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -40,6 +40,21 @@ "type": "json", "path": ".claude-plugin/plugin.json", "jsonpath": "$.version" + }, + { + "type": "json", + "path": ".codex-plugin/plugin.json", + "jsonpath": "$.version" + }, + { + "type": "json", + "path": ".cursor-plugin/plugin.json", + "jsonpath": "$.version" + }, + { + "type": "json", + "path": "plugin.json", + "jsonpath": "$.version" } ] }