CodeBuddy IDE是腾讯推出的一款AI IDE,分为国内版和国际版。CodeBuddy IDE实时融合了产品设计与开发,是一款一站式产品工作室,助你规划、开发和发布应用。到2025年10月26日,CodeBuddy IDE已经更新到v1.1.1,支持从MCP市场安装MCP应用,支持设置用户和项目规则,无论从界面美观度还是用户体验上,都上了一个大台阶。想了解国内其他IDE,可以点击访问 Trae IDE使用指南 和 Qoder IDE使用指南。
官方网站(国内版):https://copilot.tencent.com/ide/
官方网站(国际版):https://www.codebuddy.ai/
国际版(测试版本):Tencent Cloud Code Assistant CodeBuddy – AI Code Editor
使用文档(国内版):https://copilot.tencent.com/docs/ide/What%20is%20our%20IDE%EF%BC%9F
使用文档(国际版):https://copilot.tencent.com/docs/ide/What%20is%20our%20IDE%EF%BC%9F
截至2025年10月26日,CodeBuddy IDE发布了v1.1.1版本。国内版主要支持国内的大模型,国际版支持国外的大模型。
1、Chat 模型支持DeepSeek-V3.1-Terminus、DeepSeek-V3-0324、DeepSeek-R1-0528、Hunyuan-Turbos 四个大模型。
2、Craft 模式支持 DeepSeek-V3.1-Terminus 和 DeepSeek-V3-0324 两个大模型,还新增加了一个Default模型,可以根据任务难度自动选择大模型。

国际版两个模式都支持GTP-5-Codex、GPT-5、GTP-5-mini、GPT-5-nano、GPT-4o-mini、Gemini-2.5-Flash、Gemini-2.5-Pro模型,还增加了一个Default模型,可以根据任务难度自动选择模型。

完全免费
Pro版本9.95美元/月,一年119.40美元。


这是我在开发中用到的一些全局配置,仅供大家参考。
1. 请保持对话语言为中文
2. 我的系统为 Windows
3. 请自动修复代码中的 lint 错误
4. 只需完成我要求的功能,不要做多余的工作
5. 在 vue 文件中使用 defineProps 时,不需要从 vue 导入
6. 禁止使用 lint 命令
7. 当我让你参考某个文件时,请严格按照参考文件编写,例如:编程风格,用的数据库类型、配置
8. 当我让你根据实体类生成创建表的sql语句时,应该生成创建MySQL表的SQL语句,不需要添加索引和外键,不需要指定引擎和字符集,但是需要为表和字段添加注释
9. 当需要在vue文件中创建弹窗时,应该把弹窗放到单独的vue文件中
10. vue文件应全小写命名,单词之间用-分隔。
11. 当使用Diff edit工具失败时,不要重复调用,直接重写整个文件。默认每个MCP工具都需要手工确认,很麻烦,这里我提供一个常用MCP配置文件,可以自动执行所有MCP工具。
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"],
"env": {
"DEFAULT_MINIMUM_TOKENS": "10000"
},
"disabled": false,
"autoApprove": ["resolve-library-id", "get-library-docs"]
},
"playwright": {
"command": "npx",
"args": ["-y", "@executeautomation/playwright-mcp-server"],
"disabled": false,
"autoApprove": [
"playwright_navigate",
"playwright_screenshot",
"playwright_click",
"playwright_iframe_click",
"playwright_iframe_fill",
"playwright_fill",
"playwright_select",
"playwright_hover",
"playwright_upload_file",
"playwright_evaluate",
"playwright_console_logs",
"playwright_close",
"playwright_get",
"playwright_post",
"playwright_put",
"playwright_patch",
"playwright_delete",
"playwright_expect_response",
"playwright_assert_response",
"playwright_custom_user_agent",
"playwright_get_visible_text",
"playwright_get_visible_html",
"playwright_go_back",
"playwright_go_forward",
"playwright_drag",
"playwright_press_key",
"playwright_save_as_pdf",
"playwright_click_and_switch_tab",
"start_codegen_session",
"end_codegen_session",
"get_codegen_session",
"clear_codegen_session"
]
},
"Sequential Thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],
"env": {},
"disabled": false,
"autoApprove": ["sequentialthinking"]
}
}
}