aicade-app-builder
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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/aicadegalaxy/aicade-create-app-builderREAD BEFORE INSTALL
This skill follows the bundled prompt workflow reference exactly:
- Collect the user's base business prompt
- Add the aicade platform integration requirements from section
3.1 - Assemble one final integrated prompt like section
3.2READ 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.1as the required input model3.2as 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_KEYAICADE_API_SECRET_KEYAICADE_API_APP_NO
2. Read Before Prompt Assembly
Read the bundled references first:
references/sdk-capabilities.mdreferences/prompt-workflow.md
3. Prepare Input In The 3.1 Shape
The user input should contain two parts:
- Base business prompt
- 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 lifecycleTicket: access gate, subscription, or play/payment flowAppScore: score and leaderboardAicadeCurrency: point or platform currency operationsAIChat: AI chat session and messagesAICoinMarket: market assistant and streaming messagesToken: token balance and swap flowNftOwner: NFT ownership and avatarLocalStorageTools: app-scoped storage instead of browserlocalStorage
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:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-aicadegalaxy-aicade-create-app-builder": {
"enabled": true,
"auto_update": true
}
}
}