@clawos-dev/clawd 0.2.167 → 0.2.168-beta.344.b5025a9
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/cli.cjs +5 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -12369,11 +12369,15 @@ var init_claude = __esm({
|
|
|
12369
12369
|
label: "Effort",
|
|
12370
12370
|
description: "Reasoning effort level",
|
|
12371
12371
|
scope: "tool-specific",
|
|
12372
|
+
// CC `--effort` 值域(claude --help, 2.1.187):low / medium / high / xhigh / max。
|
|
12373
|
+
// '' = 不传 --effort,用 CLI 默认。
|
|
12372
12374
|
options: [
|
|
12373
12375
|
{ value: "", label: "Default" },
|
|
12374
12376
|
{ value: "low", label: "Low" },
|
|
12375
12377
|
{ value: "medium", label: "Medium" },
|
|
12376
|
-
{ value: "high", label: "High" }
|
|
12378
|
+
{ value: "high", label: "High" },
|
|
12379
|
+
{ value: "xhigh", label: "Extra high" },
|
|
12380
|
+
{ value: "max", label: "Max" }
|
|
12377
12381
|
],
|
|
12378
12382
|
default: ""
|
|
12379
12383
|
}
|
package/package.json
CHANGED