Skip to content

Commit 1cdf06d

Browse files
authored
Merge pull request #178 from TencentCloudBase/feature/version-1.8.42
feat(release): 🚀 bump version to 1.8.42 and update AI tools documentation
2 parents b51bae0 + d637a14 commit 1cdf06d

File tree

4 files changed

+38
-6
lines changed

4 files changed

+38
-6
lines changed

mcp/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudbase/cloudbase-mcp",
3-
"version": "1.8.41",
3+
"version": "1.8.42",
44
"description": "腾讯云开发 MCP Server,通过AI提示词和MCP协议+云开发,让开发更智能、更高效,当你在Cursor/ VSCode GitHub Copilot/WinSurf/CodeBuddy/Augment Code/Claude Code等AI编程工具里写代码时,它能自动帮你生成可直接部署的前后端应用+小程序,并一键发布到腾讯云开发 CloudBase。",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.js",

mcp/src/utils/cloud-mode.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,11 @@ export function shouldRegisterTool(toolName: string): boolean {
9595
'clearUserEnvId',
9696

9797
// Interactive tools - local server and file operations
98-
'interactiveDialog'
98+
'interactiveDialog',
99+
// CloudRun tools - local file operations
100+
'manageCloudRun',
101+
// Download tools - local file downloads
102+
'manageStorage',
99103
];
100104

101105
const shouldRegister = !cloudIncompatibleTools.includes(toolName);

scripts/releases/detailed-release.md

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ AI:
4747
- **OpenAI Codex** - OpenAI 的代码生成工具
4848
- **aider** - 基于 GPT 的代码编辑器
4949
- **Qwen Code** - 阿里云的 AI 编程工具
50+
- **CodeBuddy** - 腾讯云的 AI 编程助手(CloudBase CLI 内置支持)
51+
- **美团龙猫** - 美团最新一代 AI 大模型
5052
- **更多工具** - 持续集成主流 AI 编程工具
5153

5254
### 🤖 AI 对话实践
@@ -55,13 +57,33 @@ AI:
5557
```
5658
用户:我想用不同的 AI 工具开发一个电商应用
5759
AI:
58-
1. 📋 展示可用 AI 工具列表
60+
1. 📋 展示可用 AI 工具列表(包括 CodeBuddy、美团龙猫等)
5961
2. 🔄 让用户选择心仪的工具
6062
3. 🚀 自动切换到选定的工具
6163
4. 💻 开始电商应用开发
6264
```
6365

64-
**场景 2:一键部署**
66+
**场景 2:CloudBase CLI 内置工具**
67+
```
68+
用户:我想用 CodeBuddy 开发小程序
69+
AI:
70+
1. 🎯 识别 CloudBase CLI 内置支持的 CodeBuddy
71+
2. 🔧 自动配置 CodeBuddy 环境
72+
3. 🚀 启动 CodeBuddy 开发模式
73+
4. 📱 开始小程序开发
74+
```
75+
76+
**场景 3:美团龙猫大模型**
77+
```
78+
用户:使用美团龙猫来优化代码性能
79+
AI:
80+
1. 🧠 切换到美团龙猫大模型
81+
2. 📊 分析代码性能瓶颈
82+
3. 🔧 提供优化建议和重构方案
83+
4. ⚡ 生成优化后的代码
84+
```
85+
86+
**场景 4:一键部署**
6587
```
6688
用户:开发完成后直接部署到云端
6789
AI:
@@ -78,6 +100,12 @@ AI:
78100
```
79101
使用 AI CLI 开发一个博客系统,支持多用户和评论功能
80102
```
103+
```
104+
用 CodeBuddy 开发一个微信小程序,包含用户登录和数据展示
105+
```
106+
```
107+
使用美团龙猫优化现有代码的性能和可读性
108+
```
81109

82110
---
83111

0 commit comments

Comments
 (0)