Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

aicade-create-serviceacade 创建服务

Agent Skill

aicade-create-service 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,467

周安装

63

GitHub Stars

公开资料未说明

下载量

514
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aicade-create-service(acade 创建服务)
来源仓库:https://github.com/aicadegalaxy/aicade-create-service
安装命令:
openclaw skills install aicade-create-service
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install aicade-create-service

简介

用于注册、更新或禁用 aicade 服务管理 API。

  • 支持服务元数据准备与计费规则配置。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 适合服务生命周期管理与接口调试场景。
  • 需访问 /services 路径并验证身份认证机制。
  • aicade-create-service 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
aicade-create-service
description
Use when registering, updating, querying, or disabling aicade service-management APIs under /services, especially when preparing service metadata, billing, rate limits, auth config, JSON Schema inputs/outputs, or curl requests.
metadata
openclaw
emoji
🧩
requires
bins
[node]

READ BEFORE INSTALL This skill is built from the bundled service-management API reference. It covers exactly these three operations:

  1. Register or update a service: POST /services
  2. Query service detail: GET /services/{serviceId}
  3. Disable a service: POST /services/disable?serviceId=...

READ BEFORE INSTALL

aicade-create-service

Use this skill when you need to prepare, validate, or generate requests for aicade service registration and management.

Core Principle

Treat every service-management operation as a guided flow, not a one-shot dynamic call.

For POST /services, do not immediately fill the request from a generic example. First ask the user multiple focused questions, confirm the answers, then generate the final registration JSON and curl.

For GET /services/{serviceId} and POST /services/disable, also ask for the required operation inputs first. Do not infer serviceId or base_url from previous turns unless the user explicitly confirms reusing them.

Environment variables are different: check the local environment first. If AICADE_API_KEY already exists locally, use it without asking the user to confirm it again. For register/update, if AICADE_WALLET_ADDRESS already exists locally, use it without asking again.

Before generating a request, make sure the user has confirmed:

  • stable service_id, service_name, endpoint_url, and route_path
  • correct outbound auth settings
  • valid input_schema and output_schema
  • explicit billing and fallback rules
  • rate limits when the service needs operational protection
  • AICADE_API_KEY supplied by the platform before calling any endpoint
  • AICADE_WALLET_ADDRESS supplied by the caller before register/update; it is sent as X-Address

Quick Start

Set the platform API key first:

export AICADE_API_KEY=YOUR_AICADE_API_KEY
export AICADE_WALLET_ADDRESS=YOUR_AICADE_WALLET_ADDRESS

After the user confirms the generated registration JSON, write it to a local spec file and generate the register/update request:

node {baseDir}/scripts/build-service-request.mjs \
  register \
  --base-url https://api.example.com \
  --spec /path/to/confirmed-register-service.json

After the user confirms the query inputs, generate a query request:

node {baseDir}/scripts/build-service-request.mjs \
  detail \
  --base-url https://api.example.com \
  --service-id my-llm-service

After the user confirms the disable inputs, generate a disable request:

node {baseDir}/scripts/build-service-request.mjs \
  disable \
  --base-url https://api.example.com \
  --service-id my-llm-service

Workflow

1. Check Local Environment First

Before asking for platform credentials, check whether the required environment variables are already present:

node {baseDir}/scripts/build-service-request.mjs env-check --operation register
node {baseDir}/scripts/build-service-request.mjs env-check --operation detail
node {baseDir}/scripts/build-service-request.mjs env-check --operation disable

If AICADE_API_KEY is already present, do not ask the user to confirm it. Use it as X-API-Key.

For register/update, if AICADE_WALLET_ADDRESS is already present, do not ask the user to confirm it. Use it as X-Address.

Ask only for missing environment values. If the user does not have platform access yet, point them to:

  • https://www.aicadegalaxy.com/
  • https://docs.aicadegalaxy.com/white-paper/application-document

Explain briefly that only after obtaining app access can they get the AICADE environment variables required by this skill:

  • AICADE_API_KEY
  • AICADE_WALLET_ADDRESS

AICADE_API_KEY is sent as X-API-Key. AICADE_WALLET_ADDRESS is sent as X-Address for register/update requests.

2. Identify The Operation

  • Register/update: use when creating a service or replacing the configuration for an existing service_id
  • Detail: use when checking the registered gateway contract
  • Disable: use when turning off a service

Always run the matching guided intake before generating the final request:

  • Register/update: collect and confirm the full registration JSON
  • Detail: collect and confirm base_url and serviceId; use local AICADE_API_KEY when present
  • Disable: collect and confirm base_url and serviceId; use local AICADE_API_KEY when present

3. Load The API Reference When Needed

Read these references when needed:

  • references/register-intake.md for the required multi-step questions
  • references/service-operations-intake.md for query/detail and disable question flows
  • references/service-management-api.md for field rules, enum guidance, auth examples, billing rules, or rate-limit structure

4. Ask Register Intake Questions

Collect the registration fields in small groups. Do not ask for every field in one wall of text.

Use this order:

  1. Service identity: service_id, service_name, description, tags
  2. Endpoint and gateway route: endpoint_url, route_path, strip_prefix, route_order, timeout_ms
  3. Outbound auth: auth_type, auth_location, outbound_auth
  4. Input/output contract: input_schema, output_schema
  5. Billing: billing_type, currency, prices, limits, fallback_strategy
  6. Rate limits: service/user/IP limits and token limits
  7. Final review: show the assembled JSON and ask for confirmation before generating curl

When the user has not supplied a value, ask a direct question and offer a reasonable default when the API supports one. For sensitive values such as API keys or tokens, ask for placeholders unless the user explicitly wants to include the real value.

5. Prepare Register Input

Start from:

  • {baseDir}/assets/register-service.template.json for a minimal fill-in template
  • {baseDir}/assets/register-service.example.json only as a shape reference, not as the user's final registration

Keep request body fields in snake_case. The API supports a few camelCase aliases, but generated requests should prefer snake_case.

6. Validate Critical Fields

Before presenting or sending a register request, check:

  • AICADE_API_KEY is available as an environment variable or passed explicitly with --api-key
  • AICADE_WALLET_ADDRESS is available as an environment variable or passed explicitly with --address
  • service_id uses lowercase letters, digits, and hyphens only, length 3-64
  • route_path starts with /
  • timeout_ms is between 1000 and 300000 when set
  • strip_prefix is between 0 and 10 when set
  • input_schema and output_schema are JSON Schema compatible
  • billing.billing_type, billing.currency, and billing.fallback_strategy are present
  • outbound_auth.type matches auth_type unless auth_type is NONE

7. Generate Requests

Use scripts/build-service-request.mjs to print a ready-to-run curl command. The script reads AICADE_API_KEY and AICADE_WALLET_ADDRESS by default, or accepts --api-key and --address for one-off generation. The script does not call the remote API; it only reads local input and prints the command.

Endpoint Summary

OperationMethodPathRequired headers
Register/updatePOST/servicesX-Address, X-API-Key, Content-Type: application/json
DetailGET/services/{serviceId}X-API-Key
DisablePOST/services/disable?serviceId=...X-API-Key

Common Mistakes

  • Do not skip the platform access check; AICADE_API_KEY must be obtained before using these APIs.
  • Do not ask the user to reconfirm AICADE_API_KEY when it already exists in the local environment.
  • Do not ask the user to reconfirm AICADE_WALLET_ADDRESS for register/update when it already exists in the local environment.
  • Do not generate a register/update request without AICADE_WALLET_ADDRESS; it is required for X-Address.
  • Do not use assets/register-service.example.json as the user's final service config without asking questions.
  • Do not generate the final register curl before the user confirms the assembled JSON.
  • Do not generate query/detail curl before asking and confirming serviceId and base_url.
  • Do not silently reuse a previous serviceId; ask whether to reuse it.
  • Do not omit X-API-Key; all three operations require it and the value should come from AICADE_API_KEY.
  • Do not put registration body fields in random casing; prefer documented snake_case.
  • Do not register without input_schema, output_schema, and billing.
  • Do not put serviceId in the disable body; it is a query parameter.
  • Do not treat POST /services as create-only; it is idempotent and updates existing service_id.

Files Included

  • references/service-management-api.md
  • references/register-intake.md
  • references/service-operations-intake.md
  • scripts/build-service-request.mjs
  • assets/register-service.template.json
  • assets/register-service.example.json

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.01%
按下载量换算473

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills