opencode-core-rules-injector 1.1.4 → 1.1.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/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,8 +27,8 @@ OpenCode 在长时间自动执行(如 5 小时、100 个任务)时,模型
|
|
|
27
27
|
## 安装
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
# 使用 bun
|
|
31
|
-
bun install -g opencode-core-rules-injector
|
|
30
|
+
# 使用 bun(推荐,更快),--trust 确保 postinstall 脚本执行
|
|
31
|
+
bun install -g opencode-core-rules-injector --trust
|
|
32
32
|
|
|
33
33
|
# 或使用 npm
|
|
34
34
|
npm install -g opencode-core-rules-injector
|
|
@@ -64,7 +64,7 @@ npm install -g opencode-core-rules-injector
|
|
|
64
64
|
## 更新
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
bun install -g opencode-core-rules-injector@latest
|
|
67
|
+
bun install -g opencode-core-rules-injector@latest --trust
|
|
68
68
|
# 或
|
|
69
69
|
npm install -g opencode-core-rules-injector@latest
|
|
70
70
|
```
|