Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

aicade-create-app-builderaicade 创建应用程序生成器

Agent Skill

aicade-create-app-builder 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,544

周安装

142

GitHub Stars

公开资料未说明

下载量

1,147
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install aicade-create-app-builder

简介

辅助构建通用 aicade 应用程序提示与组件组装。

  • 集成 3.1 工作流程参考与平台扩展内容。
  • 适用于前端页面与交互逻辑快速原型开发。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 需用户提供基础提示并确认捆绑内容兼容性。
  • aicade-create-app-builder 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
aicade-app-builder
description
Build general aicade application prompts by taking the user's base prompt plus the platform additions from the bundled 3.1 workflow reference, then assembling a final integrated prompt in the style of 3.2.
homepage
https://github.com/aicade-galaxy/aicade-ts-bootstrap
user-invocable
true
disable-model-invocation
true
metadata
openclaw
emoji
🕹️
requires
bins
[node]

READ BEFORE INSTALL This skill follows the bundled prompt workflow reference exactly:

  1. Collect the user's base business prompt
  2. Add the aicade platform integration requirements from section 3.1
  3. Assemble one final integrated prompt like section 3.2

READ BEFORE INSTALL

aicade-app-builder

Use this skill when you want to generate a final AI prompt for an aicade app and you want the result to match the bundled documented workflow.

Core Principle

This skill does not invent a new requirement structure.

It uses:

  • 3.1 as the required input model
  • 3.2 as the target output style

That means:

  • the user provides a base business prompt
  • the user provides or accepts the aicade platform additions
  • the skill assembles the final integrated prompt

Quick Start

node {baseDir}/scripts/build-aicade-prompt.mjs \
  --spec {baseDir}/assets/app-spec.template.json \
  --lang zh-TW

Recommended Workflow

1. Confirm Platform Access First

Before collecting the final prompt inputs, first ask the user whether they have already applied for app access on:

  • https://www.aicadegalaxy.com/

If the user has already applied and has app access, continue the workflow.

If the user has not applied yet, do not continue directly to environment variables or app integration. Point them to:

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

Explain briefly that only after obtaining app access can they get the three AICADE environment variables required for integration:

  • AICADE_API_KEY
  • AICADE_API_SECRET_KEY
  • AICADE_API_APP_NO

2. Read Before Prompt Assembly

Read the bundled references first:

  • references/sdk-capabilities.md
  • references/prompt-workflow.md

3. Prepare Input In The 3.1 Shape

The user input should contain two parts:

  1. Base business prompt
  2. Platform integration additions

The platform additions should cover the same kind of information highlighted in 3.1, such as:

  • SDK invocation requirements
  • local storage replacement strategy
  • wallet address display
  • account and balance display
  • ticket or payment access flow
  • score, points, token, AI chat, NFT, or market-related capabilities when needed

Common SDK Capabilities

The platform can expose multiple SDK modules. Choose only the ones your app actually needs:

  • Application: app metadata and lifecycle
  • Ticket: access gate, subscription, or play/payment flow
  • AppScore: score and leaderboard
  • AicadeCurrency: point or platform currency operations
  • AIChat: AI chat session and messages
  • AICoinMarket: market assistant and streaming messages
  • Token: token balance and swap flow
  • NftOwner: NFT ownership and avatar
  • LocalStorageTools: app-scoped storage instead of browser localStorage

4. Generate The Final Prompt

Run:

node {baseDir}/scripts/build-aicade-prompt.mjs --spec /path/to/spec.json --lang zh-TW

The script will output one final prompt that:

  • keeps the user's base business prompt structure
  • appends the aicade platform integration block
  • keeps technical requirements and output requirements
  • reads like the final integrated prompt shown in 3.2

5. Use The Prompt In Your IDE

Paste the generated prompt into Cursor, VS Code, or another AI IDE assistant.

6. Review Generated Code

Check these items before running the app:

  • SDK initialization order is correct
  • No unsupported SDK methods are called
  • LocalStorageTools replaces localStorage
  • Wallet address, balance, score, token, chat, or NFT UI is shown only when the selected SDK capabilities require it
  • Exchange rules are enforced only when the app explicitly enables exchange-related capabilities
  • Error handling exists around async SDK calls

7. Build And Upload

npm install
npm run dev
npm run upload

Script Input Spec

The prompt builder accepts a JSON file like this:

{
  "roleSetup": "你是一位資深全端產品開發工程師",
  "projectName": "AI 活動助手",
  "projectGoal": "開發一個用於活動報名、簽到和積分兌換的 aicade 應用",
  "basePromptSections": [
    {
      "title": "基礎業務需求",
      "items": [
        "這裡填寫你原本準備給 AI 的基礎業務 Prompt"
      ]
    }
  ],
  "platformIntegration": {
    "docPath": "references/sdk-capabilities.md",
    "createDocPath": "references/prompt-workflow.md",
    "sdkAlreadyIntegrated": true,
    "sdkCapabilities": [
      "Application",
      "LocalStorageTools"
    ],
    "replaceLocalStorageWith": "LocalStorageTools",
    "showWalletAddress": true,
    "showPointBalance": false,
    "pointBalanceLabel": "積分",
    "exchange": {
      "enabled": false,
      "ratio": "100:1",
      "dailyLimit": "100 個 Aicade Point",
      "trigger": "每次業務結算時"
    }
  },
  "technicalRequirements": [
    "基於目前專案環境生成"
  ],
  "outputRequirements": [
    "輸出完整可執行程式碼"
  ]
}

Use:

  • {baseDir}/assets/app-spec.template.json for the minimal 3.1-style input
  • {baseDir}/assets/app-spec.example.json for a fuller example

Files Included

  • scripts/build-aicade-prompt.mjs
  • assets/app-spec.template.json
  • assets/app-spec.example.json
  • references/sdk-capabilities.md
  • references/prompt-workflow.md

Security And Permissions

This skill:

  • runs a local Node.js script
  • reads a local JSON spec file
  • prints a generated prompt to stdout

This skill does not:

  • modify source code automatically
  • upload anything by itself
  • invoke the model autonomously

Notes

  • The input model is based on 3.1
  • The output format is intentionally shaped like 3.2
  • Ask about platform app access before discussing env vars
  • If the docs change, update this skill accordingly

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.03%
按下载量换算964

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills