ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

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.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/aicadegalaxy/aicade-create-app-builder
Or

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:

Metadata

Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-aicadegalaxy-aicade-create-app-builder": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.