Skip to main content

Tool SKILLs

Tool SKILLs are different from business SKILLs — they are not installed into mini programs. Instead, they serve as guided instructions for AI coding tools (such as CodeBuddy, Cursor, Claude Code, etc.). The AI tool reads the SKILL.md and follows the steps to help you complete development tasks.

How It Works

Each Tool SKILL is a standardized instruction file (SKILL.md) that AI coding tools read to understand and execute specific development tasks:

Tool SKILLPurposeWhat the AI can do after reading
wxa-find-skillsSearch & installSearch and install community-published business SKILLs
wxa-create-ai-miniprogramCreate projectCreate a new mini program project with AI Development Mode support
wxa-create-mp-skillGenerate codeAnalyze your mini program source code and auto-generate custom SKILL code

Installation

Tool SKILLs are installed using the skills CLI (a different tool from mp-skills). They are installed for AI coding tools, not into your mini program.

# Install all Tool SKILLs
npx skills add TencentCloudBase/mp-skills --all

# Or install a specific Tool SKILL
npx skills add TencentCloudBase/mp-skills -s wxa-find-skills
npx skills add TencentCloudBase/mp-skills -s wxa-create-ai-miniprogram
npx skills add TencentCloudBase/mp-skills -s wxa-create-mp-skill

After installation, your AI coding tool can recognize and invoke these SKILLs to assist with development.

Tool SKILL Details

wxa-find-skills — Search & Install Business SKILLs

Helps AI coding tools understand how to search for and install community-published business SKILLs. After installation, ask your AI to find ready-to-use SKILLs (food ordering, hospital registration, bill payment, etc.) and install them into your mini program.

  • ClawHub: wxa-find-skills
  • GitHub: TencentCloudBase/mp-skills repository, skills/wxa-find-skills/ directory

wxa-create-ai-miniprogram — Create Projects from Scratch

Helps AI coding tools understand how to create a brand new mini program project with AI Development Mode support. After installation, ask your AI to handle everything from project creation to SKILL installation.

  • ClawHub: wxa-create-ai-miniprogram
  • GitHub: TencentCloudBase/mp-skills repository, skills/wxa-create-ai-miniprogram/ directory

wxa-create-mp-skill — Generate Custom SKILL Code

Helps AI coding tools analyze your mini program source code, identify business steps, and automatically generate SKILL subpackages that comply with WeChat Mini Program AI Development Mode specifications (including atomic APIs and components), along with project configuration integration.

  • ClawHub: wxa-create-mp-skill
  • GitHub: TencentCloudBase/mp-skills repository, skills/wxa-create-mp-skill/ directory

Comparison with Business SKILLs

AspectBusiness SKILLTool SKILL
Installed intoMini program project (miniprogram/skills/)AI coding tool workspace
Used byMini program users (conversational interaction)AI coding tools (reading instructions)
ContentAtomic APIs + Atomic components (runnable code)SKILL.md guide document (step-by-step instructions)
Source repositoryawesome-miniprogram-skillsmp-skills repository
CLI toolnpx mp-skills addnpx skills add

More Information