/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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install aicade-galaxy-skills - After installation, invoke the skill by name or use
/aicade-galaxy-skills - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 105 downloads so far.
How do I install aicade galaxy skills?
Run "/install aicade-galaxy-skills" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is aicade galaxy skills free?
Yes, aicade galaxy skills is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does aicade galaxy skills support?
aicade galaxy skills is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created aicade galaxy skills?
It is built and maintained by shifenghu (@shifenghu); the current version is v1.0.0.