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" } ] }