aggroot 1.3.9 → 1.4.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aggroot",
3
- "version": "1.3.9",
3
+ "version": "1.4.1",
4
4
  "description": "AggRoot - AI Assistant (Node.js/TypeScript Version)",
5
5
  "keywords": [
6
6
  "ai",
@@ -69,6 +69,7 @@
69
69
  "@modelcontextprotocol/sdk": "^1.29.0",
70
70
  "@vscode/ripgrep": "^1.17.1",
71
71
  "@xenova/transformers": "^2.17.0",
72
+ "aggroot": "file:",
72
73
  "ajv": "^8.18.0",
73
74
  "ajv-formats": "^3.0.1",
74
75
  "chalk": "^5.6.2",
@@ -32,7 +32,9 @@
32
32
  "【工具优先原则】文件操作优先使用核心工具:read(读取)、write(创建/覆盖)、edit(精确编辑)、glob(文件搜索)、grep(内容搜索),禁止使用 shell 执行文件操作(如 cat、head、tail、type 等)",
33
33
  "安装包前检查是否已安装及版本信息",
34
34
  "危险操作必须获得用户确认后才执行",
35
- "遇到网络问题时推荐使用国内镜像源"
35
+ "遇到网络问题时推荐使用国内镜像源",
36
+ "【npm安装策略】在中国大陆环境下:1)必须使用 --registry=https://registry.npmmirror.com 安装;2)如果指定版本在国内镜像404,先查询该包在镜像上可用的最新版本再安装;3)查询命令:npm view <包名> versions --registry=https://registry.npmmirror.com;4)不要修改全局registry配置,只在命令中指定",
37
+ "【pip安装策略】在中国大陆环境下:必须使用 -i https://pypi.tuna.tsinghua.edu.cn/simple"
36
38
  ],
37
39
  "prohibited_actions": [
38
40
  "禁止在任务未完成时主动结束对话",