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 SKILL | Purpose | What the AI can do after reading |
|---|---|---|
wxa-find-skills | Search & install | Search and install community-published business SKILLs |
wxa-create-ai-miniprogram | Create project | Create a new mini program project with AI Development Mode support |
wxa-create-mp-skill | Generate code | Analyze 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-skillsrepository,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-skillsrepository,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-skillsrepository,skills/wxa-create-mp-skill/directory
Comparison with Business SKILLs
| Aspect | Business SKILL | Tool SKILL |
|---|---|---|
| Installed into | Mini program project (miniprogram/skills/) | AI coding tool workspace |
| Used by | Mini program users (conversational interaction) | AI coding tools (reading instructions) |
| Content | Atomic APIs + Atomic components (runnable code) | SKILL.md guide document (step-by-step instructions) |
| Source repository | awesome-miniprogram-skills | mp-skills repository |
| CLI tool | npx mp-skills add | npx skills add |
More Information
- GitHub Repository: TencentCloudBase/mp-skills
- SkillHub: WeChat Mini Program AI Development Zone
- WeChat Official Docs: Mini Program AI Development Mode