/install aicade-galaxy-skills
AICADE Galaxy Skills
Use This Skill When
- The user wants to use AICADE Galaxy platform capabilities from https://www.aicadegalaxy.com/
- The user wants AI payment, paid API, membership, subscription, earning, or token-based tool access
- The user wants to discover the latest platform tools from the AICADE Galaxy gateway
Core Rule
- On first install or first activation, always run
bootstrapbefore doing anything else bootstrapmust complete environment setup and artifact export in the same flow- Do not call
invoke_artifactbeforebootstrapsucceeds - Host integrations should read
skill-entry.jsonas the machine-readable source of truth for install, export, list, and invoke commands - If the host platform supports an install hook or post-install command, bind it to
scripts/bootstrap.mjsorscripts/bootstrap.py - If the host platform does not support install hooks, the first command after install must still be
bootstrap
Runtime Rule
- Prefer
nodefirst - If
nodeis unavailable, usepython3 - If both are unavailable, ask the user to install Node.js
Required Environment
This skill uses these .env variables:
AICADE_GALAXY_BASE_URLAICADE_GALAXY_API_KEYAICADE_GALAXY_OUTPUT_PATH
Authentication:
- Header name:
X-API-Key - Header value source:
AICADE_GALAXY_API_KEY
Default output directory:
output
Install And Prepare
Run this on install or first activation:
node {baseDir}/scripts/bootstrap.mjs
Fallback when node is unavailable:
python3 {baseDir}/scripts/bootstrap.py
Bootstrap behavior:
- Checks whether
.envalready has required values - Runs
setup_envwhen values are missing - Runs
export_artifactimmediately after setup - Produces
{AICADE_GALAXY_OUTPUT_PATH}/aicade-galaxy-skill.json
Main Capabilities
Discover Current Platform Tools
Export the latest dynamic tool list from /admin/gateway/services:
node {baseDir}/scripts/export_artifact.mjs
Fallback:
python3 {baseDir}/scripts/export_artifact.py
Artifact path:
{AICADE_GALAXY_OUTPUT_PATH}/aicade-galaxy-skill.json
Invoke A Platform Tool
Pass request parameters through an args file:
node {baseDir}/scripts/invoke_artifact.mjs --artifact {AICADE_GALAXY_OUTPUT_PATH}/aicade-galaxy-skill.json --tool TOOL_NAME --args-file /tmp/invoke.json
Fallback:
python3 {baseDir}/scripts/invoke_artifact.py --artifact {AICADE_GALAXY_OUTPUT_PATH}/aicade-galaxy-skill.json --tool TOOL_NAME --args-file /tmp/invoke.json
Args file example:
{
"city": "Beijing",
"responsePaths": ["reason", "error_code"]
}
Invoker behavior:
- Reads the artifact and finds the target tool by
name - Reads parameters from
--args-file - Validates required fields against
inputSchema - Calls the real platform endpoint with the tool's metadata
- Returns normalized JSON output
Normalized output:
- Success:
{"ok": true, "status": 200, "tool": "...", "serviceId": "...", "data": ..., "raw": ...} - Failure:
{"ok": false, "status": 4xx/5xx, "tool": "...", "serviceId": "...", "error": {"message": "...", "raw": ...}}
List Current Supported Tools
SKILL.md does not hardcode the live service list. The latest supported tools come from the exported artifact.
Use:
node {baseDir}/scripts/list_tools.mjs --artifact {AICADE_GALAXY_OUTPUT_PATH}/aicade-galaxy-skill.json
Fallback:
python3 {baseDir}/scripts/list_tools.py --artifact {AICADE_GALAXY_OUTPUT_PATH}/aicade-galaxy-skill.json
Use the artifact or list_tools result as the source of truth for current services.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install aicade-galaxy-skills - 安装完成后,直接呼叫该 Skill 的名称或使用
/aicade-galaxy-skills触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
aicade galaxy skills 是什么?
Use AICADE Galaxy on https://www.aicadegalaxy.com/ to discover and invoke platform tools for AI monetization, paid APIs, subscriptions, memberships, blockcha... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 105 次。
如何安装 aicade galaxy skills?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install aicade-galaxy-skills」即可一键安装,无需额外配置。
aicade galaxy skills 是免费的吗?
是的,aicade galaxy skills 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
aicade galaxy skills 支持哪些平台?
aicade galaxy skills 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 aicade galaxy skills?
由 shifenghu(@shifenghu)开发并维护,当前版本 v1.0.0。