Skip to content

Commit 526b45f

Browse files
authored
feat(ai-cli): add CloudBase AI CLI support and optimize documentation 🚀 (#143)
- Add CloudBase AI CLI to IDE support list as first option - Update quick start section to highlight CloudBase AI CLI as recommended approach - Add core advantages and detailed case tutorial links - Update all documentation files (README, README-ZH, README-EN, doc/index.md, doc/tutorials.md, doc/faq.md, mcp/README.md) - Add full-stack mini-program development case tutorial - Optimize user experience with simplified installation and usage instructions
1 parent ebaf1a2 commit 526b45f

7 files changed

Lines changed: 128 additions & 156 deletions

File tree

README-EN.md

Lines changed: 25 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -61,47 +61,37 @@ When coding in **Cursor/VSCode GitHub Copilot/WinSurf/CodeBuddy/Augment Code/Cla
6161
---
6262
🚩 **Get Started with CloudBase AI ToolKit**
6363

64-
1. **Enable CloudBase Tools (MCP Config)**
65-
Add the following config to your AI IDE (e.g., Cursor) to enable all CloudBase AI ToolKit capabilities:
64+
## 🚀 Recommended: CloudBase AI CLI (Simplest)
6665

67-
```json
68-
{
69-
"mcpServers": {
70-
"cloudbase": {
71-
"command": "npx",
72-
"args": ["npm-global-exec@latest", "@cloudbase/cloudbase-mcp@latest"]
73-
}
74-
}
75-
}
76-
```
66+
CloudBase AI CLI is a unified command-line tool that integrates multiple mainstream AI programming tools, supporting built-in models and custom models. It allows you to use Claude Code, OpenAI Codex, aider, Qwen Code, and other AI programming assistants with a simple command, while built-in CloudBase AI Toolkit supports the complete workflow from development to deployment, and can run in any environment.
7767

78-
2. **One-Click Project Template Generation**
79-
In the AI chat box, enter:
68+
**Core Advantages:**
69+
- 🏗️ **Unified Management** - One command to manage multiple AI programming CLI tools, no need to switch between tools
70+
- 🤖 **Multi-Model Support** - Support for built-in and custom large models, including Kimi K2, Zhipu GLM-4.5, etc.
71+
- 🚀 **One-Click Development & Deployment** - Complete workflow from code generation to cloud deployment, supporting Web apps, mini-programs, and backend services
72+
- 🌍 **Everywhere** - Can run in any environment, including mini-program developer tools, VS Code, GitHub Actions, etc.
8073

81-
```
82-
Download mini-program cloud development template
83-
```
74+
**One-Click Installation**
75+
```bash
76+
# Mac/Linux/Windows WSL
77+
curl https://static.cloudbase.net/cli/install/install.sh -fsS | bash
8478

85-
If you only want to download specific IDE config files to avoid project file confusion, you can specify the IDE type:
79+
# Windows PowerShell
80+
irm https://static.cloudbase.net/cli/install/install.ps1 | iex
8681
```
87-
Download mini-program cloud development template, only include Cursor config
88-
Download React cloud development template, only include WindSurf config
89-
Download universal cloud development template, only include Claude Code config
82+
83+
**Start Using**
84+
```bash
85+
tcb ai
9086
```
9187

92-
Supported IDE types: cursor, windsurf, codebuddy, claude-code, cline, gemini-cli, opencode, qwen-code, baidu-comate, openai-codex-cli, augment-code, github-copilot, roocode, tongyi-lingma, trae, vscode
88+
On first launch, the configuration wizard will guide you through AI tool selection and configuration. After configuration, you can start using AI tools for assisted development. You can run `tcb ai --setup` later to switch tools and models.
9389

94-
3. **Available Template Types**
95-
- Mini-program cloud development template
96-
- React cloud development template
97-
- Vue cloud development template
98-
- UniApp cloud development template
99-
- Universal cloud development template
90+
👉 [View complete usage documentation](https://docs.cloudbase.net/cli-v1/ai/introduce) | [Try Now](https://docs.cloudbase.net/cli-v1/ai/introduce) | [Full-Stack Mini-Program Development Case Tutorial](https://docs.cloudbase.net/practices/ai-cli-mini-program)
10091

101-
👉 [View all official templates and docs](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/templates)
92+
## 🛠️ Other IDE Configuration Methods
10293

103-
4. **Detailed Tutorial**
104-
👉 [View full configuration and usage tutorial](#2-configure-your-ai-ide)
94+
If you use other AI IDEs, please refer to the configuration guides below:
10595

10696
---
10797

@@ -195,6 +185,7 @@ All the following tools support CloudBase AI ToolKit. Choose your tool and follo
195185

196186
| Tool | Platform | Guide |
197187
|------|----------|----------|
188+
| [CloudBase AI CLI](https://docs.cloudbase.net/cli-v1/ai/introduce) | CLI | [Guide](https://docs.cloudbase.net/cli-v1/ai/introduce) |
198189
| [Cursor](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) | Standalone IDE| [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) |
199190
| [WindSurf](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) | Standalone IDE, VSCode, JetBrains | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) |
200191
| [CodeBuddy](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) | Standalone IDE (CloudBase built-in), VS Code, JetBrains, WeChat DevTools | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) |
@@ -275,6 +266,9 @@ CloudBase MCP uses a plugin architecture. [See detailed docs](https://docs.cloud
275266

276267
### 📄 Articles
277268

269+
#### 🚀 CloudBase AI CLI Case Studies
270+
- [Develop a Neighborhood Item Recycling Mini-Program with CloudBase AI CLI](https://docs.cloudbase.net/practices/ai-cli-mini-program) - Detailed case tutorial showing how to use CloudBase AI CLI to develop a complete mini-program project from scratch
271+
278272
#### 🌐 Full-Stack Web Apps
279273
- [One-stop development of card flip game with CodeBuddy IDE + CloudBase](https://mp.weixin.qq.com/s/2EM3RBzdQUCdfld2CglWgg)
280274
- [Develop a WeChat mini-game in 1 hour with CloudBase AI Toolkit](https://cloud.tencent.com/developer/article/2532595)

README-ZH.md

Lines changed: 25 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -66,47 +66,37 @@
6666
---
6767
🚩 **快速上手 CloudBase AI ToolKit**
6868

69-
1. **启用 CloudBase 工具(MCP 配置)**
70-
在你的 AI IDE(如 Cursor)中添加以下配置,即可启用 CloudBase AI ToolKit 的全部能力:
69+
## 🚀 推荐方式:CloudBase AI CLI(最简单)
7170

72-
```json
73-
{
74-
"mcpServers": {
75-
"cloudbase": {
76-
"command": "npx",
77-
"args": ["npm-global-exec@latest", "@cloudbase/cloudbase-mcp@latest"]
78-
}
79-
}
80-
}
81-
```
71+
CloudBase AI CLI 是一个集成多种主流 AI 编程工具的统一命令行工具,支持内置模型和自定义模型,让你能够通过一个简单的命令使用 Claude Code、OpenAI Codex、aider、Qwen Code 等 AI 编程助手,同时内置 CloudBase AI Toolkit,支持从开发到部署的完整流程,支持在任意环境中运行。
8272

83-
2. **一键生成项目模板**
84-
在 AI 对话框输入:
73+
**核心优势:**
74+
- 🏗️ **统一管理** - 一个命令管理多种 AI 编程 CLI 工具,无需在多个工具间切换
75+
- 🤖 **多模型支持** - 支持内置和自定义各种大模型,包括 Kimi K2、智谱 GLM-4.5 等
76+
- 🚀 **一键开发部署** - 从代码生成到云端部署的完整流程,支持 Web 应用、小程序、后端服务
77+
- 🌍 **无处不在** - 可在任意环境中运行,包括小程序开发者工具、VS Code、GitHub Actions 等
8578

86-
```
87-
下载小程序云开发模板
88-
```
79+
**一键安装**
80+
```bash
81+
# Mac/Linux/Windows 的 WSL
82+
curl https://static.cloudbase.net/cli/install/install.sh -fsS | bash
8983

90-
如果你只想下载特定IDE的配置文件,避免项目文件混乱,可以指定IDE类型:
84+
# Windows PowerShell
85+
irm https://static.cloudbase.net/cli/install/install.ps1 | iex
9186
```
92-
下载小程序云开发模板,只包含Cursor配置
93-
下载React云开发模板,只包含WindSurf配置
94-
下载通用云开发模板,只包含Claude Code配置
87+
88+
**开始使用**
89+
```bash
90+
tcb ai
9591
```
9692

97-
支持的IDE类型:cursor、windsurf、codebuddy、claude-code、cline、gemini-cli、opencode、qwen-code、baidu-comate、openai-codex-cli、augment-code、github-copilot、roocode、tongyi-lingma、trae、vscode
93+
首次启动,配置向导会引导你完成 AI 工具选择和配置。完成配置后即可开始使用 AI 工具进行辅助开发,后续可以运行 `tcb ai --setup` 来切换工具和模型。
9894

99-
3. **可选模板类型**
100-
- 小程序云开发模板
101-
- React 云开发模板
102-
- Vue 云开发模板
103-
- UniApp 云开发模板
104-
- 通用云开发模板
95+
👉 [查看完整使用文档](https://docs.cloudbase.net/cli-v1/ai/introduce) | [立即体验](https://docs.cloudbase.net/cli-v1/ai/introduce) | [全栈小程序开发详细案例教程](https://docs.cloudbase.net/practices/ai-cli-mini-program)
10596

106-
👉 [查看全部官方模板及说明](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/templates)
97+
## 🛠️ 其他 IDE 配置方式
10798

108-
4. **详细教程**
109-
👉 [查看完整配置与使用教程](#2-配置你的-ai-ide)
99+
如果你使用其他 AI IDE,请参考下面的配置指南:
110100

111101
---
112102

@@ -204,6 +194,7 @@ npx clear-npx-cache
204194

205195
| 工具 | 支持平台 | 查看指引 |
206196
|------|----------|----------|
197+
| [CloudBase AI CLI](https://docs.cloudbase.net/cli-v1/ai/introduce) | 命令行工具 | [查看指引](https://docs.cloudbase.net/cli-v1/ai/introduce) |
207198
| [Cursor](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) | 独立 IDE| [查看指引](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) |
208199
| [WindSurf](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) | 独立 IDE, VSCode、JetBrains 插件 | [查看指引](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) |
209200
| [CodeBuddy](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) | 独立 IDE(已内置 CloudBase),VS Code、JetBrains、微信开发者工具| [查看指引](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) |
@@ -289,6 +280,9 @@ CloudBase MCP 采用插件化架构,支持按需启用工具模块。[查看
289280

290281
### 📄 文章
291282

283+
#### 🚀 CloudBase AI CLI 实战案例
284+
- [用 CloudBase AI CLI 开发邻里闲置物品循环利用小程序](https://docs.cloudbase.net/practices/ai-cli-mini-program) - 详细案例教程,展示如何使用 CloudBase AI CLI 从零开始开发完整的小程序项目
285+
292286
#### 🌐 全栈Web应用
293287
- [使用 CodeBuddy IDE + CloudBase 一站式开发卡片翻翻翻游戏](https://mp.weixin.qq.com/s/2EM3RBzdQUCdfld2CglWgg)
294288
- [1小时开发微信小游戏《我的早餐店》——基于CloudBase AI Toolkit](https://cloud.tencent.com/developer/article/2532595)

README.md

Lines changed: 25 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -61,47 +61,37 @@ When coding in **Cursor/VSCode GitHub Copilot/WinSurf/CodeBuddy/Augment Code/Cla
6161
---
6262
🚩 **Get Started with CloudBase AI ToolKit**
6363

64-
1. **Enable CloudBase Tools (MCP Config)**
65-
Add the following config to your AI IDE (e.g., Cursor) to enable all CloudBase AI ToolKit capabilities:
64+
## 🚀 Recommended: CloudBase AI CLI (Simplest)
6665

67-
```json
68-
{
69-
"mcpServers": {
70-
"cloudbase": {
71-
"command": "npx",
72-
"args": ["npm-global-exec@latest", "@cloudbase/cloudbase-mcp@latest"]
73-
}
74-
}
75-
}
76-
```
66+
CloudBase AI CLI is a unified command-line tool that integrates multiple mainstream AI programming tools, supporting built-in models and custom models. It allows you to use Claude Code, OpenAI Codex, aider, Qwen Code, and other AI programming assistants with a simple command, while built-in CloudBase AI Toolkit supports the complete workflow from development to deployment, and can run in any environment.
7767

78-
2. **One-Click Project Template Generation**
79-
In the AI chat box, enter:
68+
**Core Advantages:**
69+
- 🏗️ **Unified Management** - One command to manage multiple AI programming CLI tools, no need to switch between tools
70+
- 🤖 **Multi-Model Support** - Support for built-in and custom large models, including Kimi K2, Zhipu GLM-4.5, etc.
71+
- 🚀 **One-Click Development & Deployment** - Complete workflow from code generation to cloud deployment, supporting Web apps, mini-programs, and backend services
72+
- 🌍 **Everywhere** - Can run in any environment, including mini-program developer tools, VS Code, GitHub Actions, etc.
8073

81-
```
82-
Download mini-program cloud development template
83-
```
74+
**One-Click Installation**
75+
```bash
76+
# Mac/Linux/Windows WSL
77+
curl https://static.cloudbase.net/cli/install/install.sh -fsS | bash
8478

85-
If you only want to download specific IDE config files to avoid project file confusion, you can specify the IDE type:
79+
# Windows PowerShell
80+
irm https://static.cloudbase.net/cli/install/install.ps1 | iex
8681
```
87-
Download mini-program cloud development template, only include Cursor config
88-
Download React cloud development template, only include WindSurf config
89-
Download universal cloud development template, only include Claude Code config
82+
83+
**Start Using**
84+
```bash
85+
tcb ai
9086
```
9187

92-
Supported IDE types: cursor, windsurf, codebuddy, claude-code, cline, gemini-cli, opencode, qwen-code, baidu-comate, openai-codex-cli, augment-code, github-copilot, roocode, tongyi-lingma, trae, vscode
88+
On first launch, the configuration wizard will guide you through AI tool selection and configuration. After configuration, you can start using AI tools for assisted development. You can run `tcb ai --setup` later to switch tools and models.
9389

94-
3. **Available Template Types**
95-
- Mini-program cloud development template
96-
- React cloud development template
97-
- Vue cloud development template
98-
- UniApp cloud development template
99-
- Universal cloud development template
90+
👉 [View complete usage documentation](https://docs.cloudbase.net/cli-v1/ai/introduce) | [Try Now](https://docs.cloudbase.net/cli-v1/ai/introduce) | [Full-Stack Mini-Program Development Case Tutorial](https://docs.cloudbase.net/practices/ai-cli-mini-program)
10091

101-
👉 [View all official templates and docs](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/templates)
92+
## 🛠️ Other IDE Configuration Methods
10293

103-
4. **Detailed Tutorial**
104-
👉 [View full configuration and usage tutorial](#2-configure-your-ai-ide)
94+
If you use other AI IDEs, please refer to the configuration guides below:
10595

10696
---
10797

@@ -195,6 +185,7 @@ All the following tools support CloudBase AI ToolKit. Choose your tool and follo
195185

196186
| Tool | Platform | Guide |
197187
|------|----------|----------|
188+
| [CloudBase AI CLI](https://docs.cloudbase.net/cli-v1/ai/introduce) | CLI | [Guide](https://docs.cloudbase.net/cli-v1/ai/introduce) |
198189
| [Cursor](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) | Standalone IDE| [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) |
199190
| [WindSurf](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) | Standalone IDE, VSCode, JetBrains | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) |
200191
| [CodeBuddy](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) | Standalone IDE (CloudBase built-in), VS Code, JetBrains, WeChat DevTools | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) |
@@ -275,6 +266,9 @@ CloudBase MCP uses a plugin architecture. [See detailed docs](https://docs.cloud
275266

276267
### 📄 Articles
277268

269+
#### 🚀 CloudBase AI CLI Case Studies
270+
- [Develop a Neighborhood Item Recycling Mini-Program with CloudBase AI CLI](https://docs.cloudbase.net/practices/ai-cli-mini-program) - Detailed case tutorial showing how to use CloudBase AI CLI to develop a complete mini-program project from scratch
271+
278272
#### 🌐 Full-Stack Web Apps
279273
- [One-stop development of card flip game with CodeBuddy IDE + CloudBase](https://mp.weixin.qq.com/s/2EM3RBzdQUCdfld2CglWgg)
280274
- [Develop a WeChat mini-game in 1 hour with CloudBase AI Toolkit](https://cloud.tencent.com/developer/article/2532595)

doc/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
4. 对 AI 说"登录云开发"开始开发
2020

2121
### 支持哪些 AI 开发工具?
22-
支持 Cursor、WindSurf、CodeBuddy、CLINE、GitHub Copilot、Claude Code、Gemini CLI、OpenAI Codex CLI、OpenCode、Trae、通义灵码、RooCode、文心快码、Augment Code、Qwen Code 等主流 AI 开发工具。
22+
支持 CloudBase AI CLI、Cursor、WindSurf、CodeBuddy、CLINE、GitHub Copilot、Claude Code、Gemini CLI、OpenAI Codex CLI、OpenCode、Trae、通义灵码、RooCode、文心快码、Augment Code、Qwen Code 等主流 AI 开发工具。
2323

2424
## 🛠️ 技术问题
2525

doc/index.md

Lines changed: 24 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -47,52 +47,45 @@
4747
---
4848
🚩 **快速上手 CloudBase AI ToolKit**
4949

50-
1. **启用 CloudBase 工具(MCP 配置)**
51-
在你的 AI IDE(如 Cursor)中添加以下配置,即可启用 CloudBase AI ToolKit 的全部能力:
52-
53-
```json
54-
{
55-
"mcpServers": {
56-
"cloudbase": {
57-
"command": "npx",
58-
"args": ["npm-global-exec@latest", "@cloudbase/cloudbase-mcp@latest"]
59-
}
60-
}
61-
}
62-
```
50+
## 🚀 推荐方式:CloudBase AI CLI(最简单)
6351

64-
2. **一键生成项目模板**
65-
在 AI 对话框输入:
52+
CloudBase AI CLI 是一个集成多种主流 AI 编程工具的统一命令行工具,支持内置模型和自定义模型,让你能够通过一个简单的命令使用 Claude Code、OpenAI Codex、aider、Qwen Code 等 AI 编程助手,同时内置 CloudBase AI Toolkit,支持从开发到部署的完整流程,支持在任意环境中运行。
6653

67-
```
68-
下载小程序云开发模板
69-
```
54+
**核心优势:**
55+
- 🏗️ **统一管理** - 一个命令管理多种 AI 编程 CLI 工具,无需在多个工具间切换
56+
- 🤖 **多模型支持** - 支持内置和自定义各种大模型,包括 Kimi K2、智谱 GLM-4.5 等
57+
- 🚀 **一键开发部署** - 从代码生成到云端部署的完整流程,支持 Web 应用、小程序、后端服务
58+
- 🌍 **无处不在** - 可在任意环境中运行,包括小程序开发者工具、VS Code、GitHub Actions 等
7059

71-
如果你只想下载特定IDE的配置文件,避免项目文件混乱,可以指定IDE类型:
60+
**一键安装**
61+
```bash
62+
# Mac/Linux/Windows 的 WSL
63+
curl https://static.cloudbase.net/cli/install/install.sh -fsS | bash
64+
65+
# Windows PowerShell
66+
irm https://static.cloudbase.net/cli/install/install.ps1 | iex
7267
```
73-
下载小程序云开发模板,只包含Cursor配置
74-
下载React云开发模板,只包含WindSurf配置
75-
下载通用云开发模板,只包含Claude Code配置
68+
69+
**开始使用**
70+
```bash
71+
tcb ai
7672
```
7773

78-
3. **可选模板类型**
79-
- 小程序云开发模板
80-
- React 云开发模板
81-
- Vue 云开发模板
82-
- UniApp 云开发模板
83-
- 通用云开发模板
74+
首次启动,配置向导会引导你完成 AI 工具选择和配置。完成配置后即可开始使用 AI 工具进行辅助开发,后续可以运行 `tcb ai --setup` 来切换工具和模型。
75+
76+
👉 [查看完整使用文档](https://docs.cloudbase.net/cli-v1/ai/introduce) | [立即体验](https://docs.cloudbase.net/cli-v1/ai/introduce) | [全栈小程序开发详细案例教程](https://docs.cloudbase.net/practices/ai-cli-mini-program)
8477

85-
👉 [查看全部官方模板及说明](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/templates)
78+
## 🛠️ 其他 IDE 配置方式
8679

87-
4. **详细教程**
88-
👉 [查看完整配置与使用教程](#💻-支持的-ai-开发工具)
80+
如果你使用其他 AI IDE,请参考下面的配置指南:
8981

9082
---
9183

9284
## 💻 支持的 AI 开发工具
9385

9486
| 工具 | 支持平台 | 查看指引 |
9587
|------|----------|----------|
88+
| [CloudBase AI CLI](https://docs.cloudbase.net/cli-v1/ai/introduce) | 命令行工具 | [查看指引](https://docs.cloudbase.net/cli-v1/ai/introduce) |
9689
| [Cursor](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) | 独立 IDE| [查看指引](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) |
9790
| [WindSurf](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) | 独立 IDE, VSCode、JetBrains 插件 | [查看指引](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) |
9891
| [CodeBuddy](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) | VS Code、JetBrains、微信开发者工具、独立 IDE(推荐,已内置 CloudBase AI Toolkit) | [查看指引](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) |

doc/tutorials.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## 📄 文章
44

5+
### 🚀 CloudBase AI CLI 实战案例
6+
- [用 CloudBase AI CLI 开发邻里闲置物品循环利用小程序](https://docs.cloudbase.net/practices/ai-cli-mini-program) - 详细案例教程,展示如何使用 CloudBase AI CLI 从零开始开发完整的小程序项目
7+
58
### 🌐 全栈Web应用
69
- [使用 CodeBuddy IDE + CloudBase 一站式开发卡片翻翻翻游戏](https://mp.weixin.qq.com/s/2EM3RBzdQUCdfld2CglWgg)
710
- [1小时开发微信小游戏《我的早餐店》——基于CloudBase AI Toolkit](https://cloud.tencent.com/developer/article/2532595)

0 commit comments

Comments
 (0)