返回顶部
a

aicade-galaxy-skills

Use AICADE Galaxy on https://www.aicadegalaxy.com/ to discover and invoke platform tools for AI monetization, paid APIs, subscriptions, memberships, blockchain-based payments with AicadePoint, and reward-earning workflows. Use this skill when users want to charge for APIs, access paid tools, enable AI payment flows, list current platform capabilities, or call dynamic services exposed by the AICADE Galaxy gateway.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
70
下载量
0
收藏
概述
安装方式
版本历史

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 `bootstrap` before doing anything else - `bootstrap` must complete environment setup and artifact export in the same flow - Do not call `invoke_artifact` before `bootstrap` succeeds - Host integrations should read `skill-entry.json` as 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.mjs` or `scripts/bootstrap.py` - If the host platform does not support install hooks, the first command after install must still be `bootstrap` ## Runtime Rule - Prefer `node` first - If `node` is unavailable, use `python3` - If both are unavailable, ask the user to install Node.js ## Required Environment This skill uses these `.env` variables: - `AICADE_GALAXY_BASE_URL` - `AICADE_GALAXY_API_KEY` - `AICADE_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: ```bash node {baseDir}/scripts/bootstrap.mjs ``` Fallback when `node` is unavailable: ```bash python3 {baseDir}/scripts/bootstrap.py ``` Bootstrap behavior: - Checks whether `.env` already has required values - Runs `setup_env` when values are missing - Runs `export_artifact` immediately 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`: ```bash node {baseDir}/scripts/export_artifact.mjs ``` Fallback: ```bash 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: ```bash node {baseDir}/scripts/invoke_artifact.mjs --artifact {AICADE_GALAXY_OUTPUT_PATH}/aicade-galaxy-skill.json --tool TOOL_NAME --args-file /tmp/invoke.json ``` Fallback: ```bash 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: ```json { "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: ```bash node {baseDir}/scripts/list_tools.mjs --artifact {AICADE_GALAXY_OUTPUT_PATH}/aicade-galaxy-skill.json ``` Fallback: ```bash 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.

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 aicade-galaxy-skills-1776114570 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 aicade-galaxy-skills-1776114570 技能

通过命令行安装

skillhub install aicade-galaxy-skills-1776114570

下载 Zip 包

⬇ 下载 aicade-galaxy-skills v1.0.0

文件大小: 22.77 KB | 发布时间: 2026-4-14 10:30

v1.0.0 最新 2026-4-14 10:30
- Initial release of the AICADE Galaxy Skills.
- Provides commands to bootstrap environment, export dynamic tool lists, and invoke platform tools for AI monetization and blockchain-based payments.
- Supports both Node.js and Python runtimes with automatic fallback.
- Exports and manages platform tool data via a machine-readable artifact.
- Uses environment variables for platform connectivity and authentication.
- Always runs `bootstrap` on install or first use to ensure proper setup.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部