@cloudbase/cli 2.9.3 → 2.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/standalone/cli.js +495 -83
- package/lib/commands/functions/layer/bind.js +11 -10
- package/lib/commands/functions/layer/create.js +5 -5
- package/lib/commands/functions/layer/delete.js +7 -5
- package/lib/commands/functions/layer/download.js +10 -5
- package/lib/commands/functions/layer/list.js +4 -9
- package/lib/commands/functions/layer/sort.js +1 -1
- package/lib/commands/functions/trigger-create.js +3 -6
- package/lib/commands/functions/trigger-delete.js +4 -7
- package/lib/commands/pull/pull.js +2 -1
- package/lib/utils/ai/const.js +8 -1
- package/lib/utils/ai/setup.js +21 -6
- package/lib/utils/config.js +1 -0
- package/lib/utils/template-manager.js +97 -12
- package/package.json +4 -4
- package/specs/tcb-pull-cnb-support/design.md +134 -0
- package/specs/tcb-pull-cnb-support/requirements.md +53 -0
- package/specs/tcb-pull-cnb-support/tasks.md +98 -0
- package/specs/tcb-pull-mcp-integration/design.md +5 -0
- package/specs/tcb-pull-mcp-integration/implementation-summary.md +5 -0
- package/specs/tcb-pull-mcp-integration/requirements.md +5 -0
- package/types/utils/ai/const.d.ts +6 -0
- package/types/utils/template-manager.d.ts +2 -0
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
# 技术方案设计
|
|
2
|
+
|
|
3
|
+
## 概述
|
|
4
|
+
|
|
5
|
+
为 `tcb pull` 命令增加 cnb.cool 仓库的支持,使开发者能够直接从 cnb.cool 平台拉取项目模板。
|
|
6
|
+
|
|
7
|
+
## 技术架构
|
|
8
|
+
|
|
9
|
+
### 当前架构分析
|
|
10
|
+
|
|
11
|
+
`tcb pull` 命令基于 `TemplateManager` 类实现,支持:
|
|
12
|
+
- 内置模板下载(ZIP 文件)
|
|
13
|
+
- Git 仓库克隆(GitHub, Gitee, SSH)
|
|
14
|
+
|
|
15
|
+
### 新增功能架构
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
TemplateManager
|
|
19
|
+
├── isGitUrl() # 新增 cnb.cool URL 识别
|
|
20
|
+
├── parseGitUrl() # 新增 cnb.cool URL 解析
|
|
21
|
+
├── buildGitUrl() # 新增 cnb.cool Git URL 构建
|
|
22
|
+
└── downloadGitTemplateToTemp() # 复用现有 Git 下载逻辑
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## 技术选型
|
|
26
|
+
|
|
27
|
+
### URL 格式识别
|
|
28
|
+
- 使用正则表达式匹配 cnb.cool URL 格式
|
|
29
|
+
- 支持 HTTP 和 HTTPS 协议
|
|
30
|
+
- 支持带分支和子目录的 URL
|
|
31
|
+
|
|
32
|
+
### URL 解析逻辑
|
|
33
|
+
- 解析格式:`https://cnb.cool/{owner}/{repo}[/tree/{branch}[/{subpath}]]`
|
|
34
|
+
- 默认分支:main(与 GitHub 保持一致)
|
|
35
|
+
- 支持子目录拉取
|
|
36
|
+
|
|
37
|
+
### Git URL 构建
|
|
38
|
+
- 构建格式:`https://cnb.cool/{owner}/{repo}.git`
|
|
39
|
+
- 复用现有的 Git 克隆逻辑
|
|
40
|
+
|
|
41
|
+
## 实现细节
|
|
42
|
+
|
|
43
|
+
### 1. 接口扩展
|
|
44
|
+
|
|
45
|
+
```typescript
|
|
46
|
+
interface GitUrlInfo {
|
|
47
|
+
platform: 'github' | 'gitee' | 'git' | 'cnb' // 新增 'cnb'
|
|
48
|
+
owner: string
|
|
49
|
+
repo: string
|
|
50
|
+
branch: string
|
|
51
|
+
subpath?: string
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### 2. URL 解析实现
|
|
56
|
+
|
|
57
|
+
```typescript
|
|
58
|
+
// 新增 cnb.cool URL 解析
|
|
59
|
+
const cnbMatch = url.match(/https?:\/\/cnb\.cool\/([^\/]+)\/([^\/]+)(?:\/tree\/([^\/]+)\/(.+))?/)
|
|
60
|
+
if (cnbMatch) {
|
|
61
|
+
return {
|
|
62
|
+
platform: 'cnb',
|
|
63
|
+
owner: cnbMatch[1],
|
|
64
|
+
repo: cnbMatch[2],
|
|
65
|
+
branch: cnbMatch[3] || 'main',
|
|
66
|
+
subpath: cnbMatch[4]
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### 3. Git URL 构建
|
|
72
|
+
|
|
73
|
+
```typescript
|
|
74
|
+
if (gitInfo.platform === 'cnb') {
|
|
75
|
+
return `https://cnb.cool/${gitInfo.owner}/${gitInfo.repo}.git`
|
|
76
|
+
}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## 安全考虑
|
|
80
|
+
|
|
81
|
+
### URL 验证
|
|
82
|
+
- 严格的正则表达式匹配,确保只识别合法的 cnb.cool URL
|
|
83
|
+
- 防止恶意 URL 注入
|
|
84
|
+
|
|
85
|
+
### 网络安全
|
|
86
|
+
- 复用现有的 Git 克隆安全机制
|
|
87
|
+
- 支持 HTTPS 协议,确保传输安全
|
|
88
|
+
|
|
89
|
+
## 兼容性
|
|
90
|
+
|
|
91
|
+
### 向后兼容
|
|
92
|
+
- 不影响现有的 GitHub/Gitee/SSH 支持
|
|
93
|
+
- 保持现有的 API 接口不变
|
|
94
|
+
|
|
95
|
+
### 前向兼容
|
|
96
|
+
- 支持 cnb.cool 的未来 URL 格式变更
|
|
97
|
+
- 预留扩展空间
|
|
98
|
+
|
|
99
|
+
## 测试策略
|
|
100
|
+
|
|
101
|
+
### 单元测试
|
|
102
|
+
- URL 解析测试(基础 URL、带分支、带子目录)
|
|
103
|
+
- URL 验证测试
|
|
104
|
+
- Git URL 构建测试
|
|
105
|
+
|
|
106
|
+
### 集成测试
|
|
107
|
+
- 实际 cnb.cool 仓库拉取测试
|
|
108
|
+
- 错误处理测试
|
|
109
|
+
|
|
110
|
+
## 部署策略
|
|
111
|
+
|
|
112
|
+
### 渐进式部署
|
|
113
|
+
1. 代码合并到主分支
|
|
114
|
+
2. 在测试环境验证功能
|
|
115
|
+
3. 生产环境灰度发布
|
|
116
|
+
4. 全量发布
|
|
117
|
+
|
|
118
|
+
### 回滚策略
|
|
119
|
+
- 代码层面:可通过条件编译回滚
|
|
120
|
+
- 配置层面:可通过配置开关控制
|
|
121
|
+
|
|
122
|
+
## 监控和运维
|
|
123
|
+
|
|
124
|
+
### 错误监控
|
|
125
|
+
- 记录 cnb.cool 拉取失败的错误信息
|
|
126
|
+
- 监控 URL 解析失败的情况
|
|
127
|
+
|
|
128
|
+
### 性能监控
|
|
129
|
+
- 监控 cnb.cool 仓库的拉取时间
|
|
130
|
+
- 监控网络请求的成功率
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# 需求文档
|
|
2
|
+
|
|
3
|
+
## 介绍
|
|
4
|
+
|
|
5
|
+
为 `tcb pull` 命令增加 cnb.cool 仓库的支持,使开发者能够直接从 cnb.cool 平台拉取项目模板。
|
|
6
|
+
|
|
7
|
+
## 需求
|
|
8
|
+
|
|
9
|
+
### 需求 1 - 支持 cnb.cool URL 解析
|
|
10
|
+
|
|
11
|
+
**用户故事:** 作为开发者,我希望能够通过 `tcb pull https://cnb.cool/username/repo` 直接拉取 cnb.cool 上的项目模板。
|
|
12
|
+
|
|
13
|
+
#### 验收标准
|
|
14
|
+
|
|
15
|
+
1. When 用户输入 `tcb pull https://cnb.cool/username/repo`,the tcb pull 命令 shall 识别出这是一个 cnb.cool URL 并进行相应处理。
|
|
16
|
+
2. When 用户输入 `tcb pull https://cnb.cool/username/repo/tree/branch/path`,the tcb pull 命令 shall 支持拉取 cnb.cool 仓库的指定分支和子目录。
|
|
17
|
+
3. When 用户输入无效的 cnb.cool URL,the tcb pull 命令 shall 显示清晰的错误提示信息。
|
|
18
|
+
|
|
19
|
+
### 需求 2 - cnb.cool 仓库拉取功能
|
|
20
|
+
|
|
21
|
+
**用户故事:** 作为开发者,我希望 `tcb pull` 命令能够成功拉取 cnb.cool 上的项目模板到本地。
|
|
22
|
+
|
|
23
|
+
#### 验收标准
|
|
24
|
+
|
|
25
|
+
1. When 用户执行 `tcb pull https://cnb.cool/username/repo`,the 系统 shall 成功下载并解压 cnb.cool 上的仓库内容。
|
|
26
|
+
2. When 用户指定输出目录时,the 系统 shall 将模板内容保存到指定的目录中。
|
|
27
|
+
3. When 拉取过程中发生错误,the 系统 shall 显示详细的错误信息并提供可能的解决方案。
|
|
28
|
+
|
|
29
|
+
### 需求 3 - 命令帮助更新
|
|
30
|
+
|
|
31
|
+
**用户故事:** 作为开发者,我希望在 `tcb pull` 命令的帮助信息中看到 cnb.cool 的使用说明。
|
|
32
|
+
|
|
33
|
+
#### 验收标准
|
|
34
|
+
|
|
35
|
+
1. When 用户执行 `tcb pull --help`,the 帮助信息 shall 包含 cnb.cool 的支持说明和示例。
|
|
36
|
+
2. When 用户执行 `tcb pull list`,the 模板列表 shall 包含 cnb.cool 的支持格式说明。
|
|
37
|
+
|
|
38
|
+
## 示例
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# 拉取 cnb.cool 上的项目
|
|
42
|
+
tcb pull https://cnb.cool/tencent/cloud/cloudbase/CloudBase-AI-ToolKit
|
|
43
|
+
|
|
44
|
+
# 拉取指定分支和子目录
|
|
45
|
+
tcb pull https://cnb.cool/shuishenhuole/learning/tree/main/examples
|
|
46
|
+
|
|
47
|
+
# 指定输出目录
|
|
48
|
+
tcb pull https://cnb.cool/username/repo --output ./my-project
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# 实施计划
|
|
2
|
+
|
|
3
|
+
## 已完成任务
|
|
4
|
+
|
|
5
|
+
- [x] 1. 更新 GitUrlInfo 接口以支持 cnb 平台
|
|
6
|
+
- 在 `GitUrlInfo` 接口中添加 `'cnb'` 平台类型
|
|
7
|
+
- 确保类型定义的完整性
|
|
8
|
+
|
|
9
|
+
- [x] 2. 实现 cnb.cool URL 识别逻辑
|
|
10
|
+
- 修改 `isGitUrl()` 方法识别 cnb.cool URLs
|
|
11
|
+
- 添加对 `cnb.cool` 域名的支持
|
|
12
|
+
|
|
13
|
+
- [x] 3. 实现 cnb.cool URL 解析逻辑
|
|
14
|
+
- 修改 `parseGitUrl()` 方法解析 cnb.cool URLs
|
|
15
|
+
- 支持基础 URL 和带分支/子目录的 URL
|
|
16
|
+
- 处理 SSH URL 中的 cnb.cool 支持
|
|
17
|
+
|
|
18
|
+
- [x] 4. 实现 cnb.cool Git URL 构建
|
|
19
|
+
- 修改 `buildGitUrl()` 方法支持 cnb 平台
|
|
20
|
+
- 构建标准的 Git URL 格式
|
|
21
|
+
|
|
22
|
+
- [x] 5. 更新命令帮助信息
|
|
23
|
+
- 更新 `tcb pull` 命令的帮助描述
|
|
24
|
+
- 添加 cnb.cool 的使用示例
|
|
25
|
+
- 更新 `tcb pull list` 的输出信息
|
|
26
|
+
|
|
27
|
+
- [x] 6. 编写单元测试
|
|
28
|
+
- 创建 `template-manager-cnb.test.ts` 测试文件
|
|
29
|
+
- 覆盖 URL 解析、验证和构建的测试用例
|
|
30
|
+
- 确保测试覆盖率达到要求
|
|
31
|
+
|
|
32
|
+
- [x] 7. 验证功能完整性
|
|
33
|
+
- 运行测试验证功能正确性
|
|
34
|
+
- 检查代码编译无错误
|
|
35
|
+
- 验证帮助信息显示正确
|
|
36
|
+
|
|
37
|
+
## 验收标准
|
|
38
|
+
|
|
39
|
+
### 功能验收标准
|
|
40
|
+
1. **URL 解析功能**
|
|
41
|
+
- [x] 能够正确解析 `https://cnb.cool/user/repo` 格式
|
|
42
|
+
- [x] 能够正确解析 `https://cnb.cool/user/repo/tree/branch/path` 格式
|
|
43
|
+
- [x] 能够正确处理 HTTP 和 HTTPS 协议
|
|
44
|
+
|
|
45
|
+
2. **Git 仓库支持**
|
|
46
|
+
- [x] 能够构建正确的 cnb.cool Git URL
|
|
47
|
+
- [x] 能够复用现有的 Git 下载逻辑
|
|
48
|
+
- [x] 支持分支和子目录拉取
|
|
49
|
+
|
|
50
|
+
3. **用户界面**
|
|
51
|
+
- [x] 命令帮助信息包含 cnb.cool 支持说明
|
|
52
|
+
- [x] `tcb pull list` 显示 cnb.cool 支持格式
|
|
53
|
+
- [x] 提供清晰的使用示例
|
|
54
|
+
|
|
55
|
+
4. **测试覆盖**
|
|
56
|
+
- [x] URL 解析测试通过
|
|
57
|
+
- [x] URL 验证测试通过
|
|
58
|
+
- [x] Git URL 构建测试通过
|
|
59
|
+
- [x] 集成测试通过
|
|
60
|
+
|
|
61
|
+
### 性能验收标准
|
|
62
|
+
- [x] 代码编译无错误
|
|
63
|
+
- [x] 测试执行时间在合理范围内
|
|
64
|
+
- [x] 不影响现有功能的性能
|
|
65
|
+
|
|
66
|
+
### 兼容性验收标准
|
|
67
|
+
- [x] 不破坏现有的 GitHub/Gitee 支持
|
|
68
|
+
- [x] 保持向后兼容性
|
|
69
|
+
- [x] API 接口保持不变
|
|
70
|
+
|
|
71
|
+
## 技术债务和风险
|
|
72
|
+
|
|
73
|
+
### 已识别的技术债务
|
|
74
|
+
1. **测试覆盖率**:当前测试主要集中在 URL 解析,缺少实际 Git 克隆的集成测试
|
|
75
|
+
2. **错误处理**:cnb.cool 特有的错误场景可能需要更细致的处理
|
|
76
|
+
|
|
77
|
+
### 风险评估
|
|
78
|
+
1. **低风险**:URL 解析逻辑相对简单,测试覆盖充分
|
|
79
|
+
2. **中风险**:实际 cnb.cool 仓库的网络访问可能有未知问题
|
|
80
|
+
3. **低风险**:复用现有 Git 逻辑,减少了新代码的复杂性
|
|
81
|
+
|
|
82
|
+
## 后续优化建议
|
|
83
|
+
|
|
84
|
+
1. **集成测试增强**
|
|
85
|
+
- 添加实际 cnb.cool 仓库的拉取测试
|
|
86
|
+
- 模拟网络错误场景的测试
|
|
87
|
+
|
|
88
|
+
2. **用户体验优化**
|
|
89
|
+
- 添加 cnb.cool 特有的错误提示
|
|
90
|
+
- 支持更多的 URL 格式变体
|
|
91
|
+
|
|
92
|
+
3. **监控和运维**
|
|
93
|
+
- 添加 cnb.cool 拉取的性能监控
|
|
94
|
+
- 记录错误日志用于问题排查
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
@@ -378,6 +378,11 @@ export declare const CLOUDBASE_PROVIDERS: readonly [{
|
|
|
378
378
|
readonly value: "deepseek";
|
|
379
379
|
readonly models: readonly ["deepseek-v3"];
|
|
380
380
|
readonly transformer: "deepseek";
|
|
381
|
+
}, {
|
|
382
|
+
readonly name: "LongCat";
|
|
383
|
+
readonly value: "longcat";
|
|
384
|
+
readonly models: readonly ["LongCat-Flash-Chat"];
|
|
385
|
+
readonly transformer: any;
|
|
381
386
|
}];
|
|
382
387
|
export declare function getDefaultConfig(agent: string): unknown;
|
|
383
388
|
export declare function getAgentConfigValidator(agent: string): (x: unknown) => {
|
|
@@ -389,6 +394,7 @@ export declare function getAgentConfigValidator(agent: string): (x: unknown) =>
|
|
|
389
394
|
export declare const BASE_URL_MODEL_MAPPING: {
|
|
390
395
|
readonly 'https://api.moonshot.cn/v1': "kimi-k2-0711-preview";
|
|
391
396
|
readonly 'https://open.bigmodel.cn/api/paas/v4': "glm-4.5";
|
|
397
|
+
readonly 'https://api.longcat.chat/openai': "LongCat-Flash-Chat";
|
|
392
398
|
};
|
|
393
399
|
export declare function getDefaultModelByBaseUrl(baseUrl: string): string;
|
|
394
400
|
export declare function getBooleanHint(defaultValue?: boolean): string;
|
|
@@ -12,12 +12,14 @@ export declare class TemplateManager {
|
|
|
12
12
|
private isGitUrl;
|
|
13
13
|
private parseGitUrl;
|
|
14
14
|
private buildGitUrl;
|
|
15
|
+
private cloneWithSubpathOptimized;
|
|
15
16
|
private cloneWithSubpath;
|
|
16
17
|
private downloadBuiltinTemplateToTemp;
|
|
17
18
|
private downloadGitTemplateToTemp;
|
|
18
19
|
private copyFromTempToTarget;
|
|
19
20
|
private copyFilesWithOverwrite;
|
|
20
21
|
private copyFilesSkipExisting;
|
|
22
|
+
private chunkArray;
|
|
21
23
|
getBuiltinTemplates(): Record<string, string>;
|
|
22
24
|
}
|
|
23
25
|
export {};
|