@unitsvc/cc-helper 1.0.17 → 1.0.18

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.
Files changed (3) hide show
  1. package/README-zh.md +25 -12
  2. package/README.md +25 -12
  3. package/package.json +3 -2
package/README-zh.md CHANGED
@@ -50,6 +50,19 @@ npx @unitsvc/cc-helper disable
50
50
  | `disable` | 恢复原始状态 |
51
51
  | `status` | 查看当前状态及版本要求 |
52
52
 
53
+ **注意**: 运行 `cc-helper enable` 时会自动在 `~/.claude/settings.json` 中配置推荐的环境变量:
54
+
55
+ - `DISABLE_INSTALLATION_CHECKS=1` - 禁用 npm 安装警告
56
+ - `DISABLE_AUTOUPDATER=1` - 禁用自动更新
57
+ - `DISABLE_BUG_COMMAND=1` - 禁用 bug 命令
58
+ - `DISABLE_ERROR_REPORTING=1` - 禁用错误报告
59
+ - `DISABLE_TELEMETRY=1` - 禁用遥测
60
+ - `CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1` - 禁用非必要流量
61
+ - `CLAUDE_CODE_DISABLE_FEEDBACK_SURVEY=1` - 禁用反馈调查
62
+ - `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` - 启用实验性 Agent Teams
63
+ - `CLAUDE_CODE_HIDE_ACCOUNT_INFO=1` - 隐藏账户信息
64
+ - `API_TIMEOUT_MS=3000000` - 设置 API 超时为 50 分钟
65
+
53
66
  ---
54
67
 
55
68
  ## 什么是 `/loop`?
@@ -216,20 +229,20 @@ npx @unitsvc/cc-helper enable 1m
216
229
  npx @unitsvc/cc-helper enable 1M
217
230
  ```
218
231
 
219
- ### 扩展思维支持
232
+ ### 扩展思维与上下文长度
220
233
 
221
- 使用第三方 API 代理时,扩展思维(推理)能力因模型而异:
234
+ 使用第三方 API 代理时,扩展思维(推理)能力和上下文窗口大小因模型而异:
222
235
 
223
- | 模型 | 最大思维链长度 |
224
- | -------------------- | --------------------- |
225
- | qwen3.5-plus | 81,920 |
226
- | qwen3-max-2026-01-23 | 81,920 |
227
- | kimi-k2.5 | 81,920 |
228
- | glm-5 | 32,768 |
229
- | glm-4.7 | 32,768 |
230
- | MiniMax-M2.5 | 32,768(思维链+回复) |
231
- | qwen3-coder-next | 不支持思考模式 |
232
- | qwen3-coder-plus | 不支持思考模式 |
236
+ | 模型 | 最大思维链长度 | 上下文长度(Tokens) |
237
+ | -------------------- | ----------------------- | -------------------- |
238
+ | qwen3.5-plus | 81,920 | 1,000,000 |
239
+ | qwen3-coder-plus | 不支持思考模式 | 1,000,000 |
240
+ | qwen3-max-2026-01-23 | 81,920 | 262,144 |
241
+ | qwen3-coder-next | 不支持思考模式 | 262,144 |
242
+ | kimi-k2.5 | 81,920 | 262,144 |
243
+ | MiniMax-M2.5 | 32,768(思维链 + 回复) | 204,800 |
244
+ | glm-5 | 32,768 | 202,752 |
245
+ | glm-4.7 | 32,768 | 202,752 |
233
246
 
234
247
  ## 功能特点
235
248
 
package/README.md CHANGED
@@ -50,6 +50,19 @@ npx @unitsvc/cc-helper disable
50
50
  | `disable` | Restore original |
51
51
  | `status` | Check current status with version requirements |
52
52
 
53
+ **Note**: Running `cc-helper enable` also automatically configures recommended environment variables in `~/.claude/settings.json`:
54
+
55
+ - `DISABLE_INSTALLATION_CHECKS=1` - Disable npm installation warnings
56
+ - `DISABLE_AUTOUPDATER=1` - Disable auto-updater
57
+ - `DISABLE_BUG_COMMAND=1` - Disable bug command
58
+ - `DISABLE_ERROR_REPORTING=1` - Disable error reporting
59
+ - `DISABLE_TELEMETRY=1` - Disable telemetry
60
+ - `CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1` - Disable non-essential traffic
61
+ - `CLAUDE_CODE_DISABLE_FEEDBACK_SURVEY=1` - Disable feedback survey
62
+ - `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` - Enable experimental agent teams
63
+ - `CLAUDE_CODE_HIDE_ACCOUNT_INFO=1` - Hide account info
64
+ - `API_TIMEOUT_MS=3000000` - Set API timeout to 50 minutes
65
+
53
66
  ### Proxy Support
54
67
 
55
68
  If download fails, use `--proxy` flag:
@@ -228,20 +241,20 @@ npx @unitsvc/cc-helper enable 1m
228
241
  npx @unitsvc/cc-helper enable 1M
229
242
  ```
230
243
 
231
- ### Extended Thinking Support
244
+ ### Extended Thinking and Context Length
232
245
 
233
- When using third-party API proxies, extended thinking (reasoning) capabilities vary by model:
246
+ When using third-party API proxies, extended thinking (reasoning) capabilities and context window sizes vary by model:
234
247
 
235
- | Model | Max Thinking Tokens |
236
- | -------------------- | ---------------------------- |
237
- | qwen3.5-plus | 81,920 |
238
- | qwen3-max-2026-01-23 | 81,920 |
239
- | kimi-k2.5 | 81,920 |
240
- | glm-5 | 32,768 |
241
- | glm-4.7 | 32,768 |
242
- | MiniMax-M2.5 | 32,768 (thinking + response) |
243
- | qwen3-coder-next | Not supported |
244
- | qwen3-coder-plus | Not supported |
248
+ | Model | Max Thinking Tokens | Context Length (Tokens) |
249
+ | -------------------- | ---------------------------- | ----------------------- |
250
+ | qwen3.5-plus | 81,920 | 1,000,000 |
251
+ | qwen3-coder-plus | Not supported | 1,000,000 |
252
+ | qwen3-max-2026-01-23 | 81,920 | 262,144 |
253
+ | qwen3-coder-next | Not supported | 262,144 |
254
+ | kimi-k2.5 | 81,920 | 262,144 |
255
+ | MiniMax-M2.5 | 32,768 (thinking + response) | 204,800 |
256
+ | glm-5 | 32,768 | 202,752 |
257
+ | glm-4.7 | 32,768 | 202,752 |
245
258
 
246
259
  ## Features
247
260
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unitsvc/cc-helper",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "Claude Code /loop feature bypass tool",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -14,7 +14,8 @@
14
14
  },
15
15
  "keywords": [
16
16
  "claude code",
17
- "loop",
17
+ "coding plan",
18
+ "compliance",
18
19
  "cli"
19
20
  ],
20
21
  "author": "next-bin",