@d5render/cli 0.1.22 → 0.1.24

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.
@@ -0,0 +1,40 @@
1
+ # install
2
+
3
+ 请运行 npm run setup 进行项目初始化
4
+
5
+ 整体使用 ts 进行开发,会进行一轮打包,最终 CI 运行的是 bin/d5cli 文件
6
+
7
+ # dev
8
+
9
+ CI MCP 的入口是 [server.ts](.\copilot\server\index.ts) 会经历一轮打包进入 dist (只需要启动 server)
10
+
11
+ 开发的一些注意点:
12
+
13
+ 1. [copilot.config.js](.\copilot\server\config.ts) 属于公共配置,有需要可以放这里
14
+ 2. [vscode](.\vscode\index.ts) 插件的 client 需要单独开发
15
+ 3. 本地功能调试 gpt-5-mini 食用最佳🤣,效果测试建议切回当前模型(开发环境已内置)
16
+ 4. 返回 Promise 之后会丢失开发过程中的类型支持,registerTool 调用时可先不写 Promise 看 MCP Server 支持的返回参数
17
+ 5. 其他用例参考 https://github.com/modelcontextprotocol/typescript-sdk/tree/main/src/examples
18
+
19
+ # debug
20
+
21
+ 项目初始化会多出来 Standalone 的调试配置。
22
+
23
+ 可点其进行开发过程中的调试
24
+ win下linux调试建议:
25
+ 1. 安装 wsl
26
+ - 系统:`wsl --install`
27
+ -
28
+ ```
29
+ # wsl内安装nvm
30
+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
31
+
32
+ # 代替重启 shell
33
+ \. "$HOME/.nvm/nvm.sh"
34
+
35
+ # 安装 Node
36
+ # 安装 pnpm
37
+ ```
38
+ - 插件 WSL (已在插件建议中)
39
+ 2. git worktree 创建linux分支(或者直接靠代码)
40
+ 3. ide 基于wsl启动(mnt是默认磁盘位置)
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.1
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ 2026-1-7
2
+ 代码评审 skills 更新
3
+
4
+ 使用内置 skills
5
+
6
+ 2025-12-31
7
+ 基础评审能力上云
package/README.md CHANGED
@@ -1,40 +1,3 @@
1
- # install
1
+ for devops, [please refer](.skills/devops)
2
2
 
3
- 请运行 npm run setup 进行项目初始化
4
-
5
- 整体使用 ts 进行开发,会进行一轮打包,最终 CI 运行的是 bin/d5cli 文件
6
-
7
- # dev
8
-
9
- CI MCP 的入口是 [server.ts](.\copilot\server\index.ts) 会经历一轮打包进入 dist (只需要启动 server)
10
-
11
- 开发的一些注意点:
12
-
13
- 1. [copilot.config.js](.\copilot\server\config.ts) 属于公共配置,有需要可以放这里
14
- 2. [vscode](.\vscode\index.ts) 插件的 client 需要单独开发
15
- 3. 本地功能调试 gpt-5-mini 食用最佳🤣,效果测试建议切回当前模型(开发环境已内置)
16
- 4. 返回 Promise 之后会丢失开发过程中的类型支持,registerTool 调用时可先不写 Promise 看 MCP Server 支持的返回参数
17
- 5. 其他用例参考 https://github.com/modelcontextprotocol/typescript-sdk/tree/main/src/examples
18
-
19
- # debug
20
-
21
- 项目初始化会多出来 Standalone 的调试配置。
22
-
23
- 可点其进行开发过程中的调试
24
- win下linux调试建议:
25
- 1. 安装 wsl
26
- - 系统:`wsl --install`
27
- -
28
- ```
29
- # wsl内安装nvm
30
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
31
-
32
- # 代替重启 shell
33
- \. "$HOME/.nvm/nvm.sh"
34
-
35
- # 安装 Node
36
- # 安装 pnpm
37
- ```
38
- - 插件 WSL (已在插件建议中)
39
- 2. git worktree 创建linux分支(或者直接靠代码)
40
- 3. ide 基于wsl启动(mnt是默认磁盘位置)
3
+ for codereview, [please refer](.skills/review/SKILL.md)