@clawos-dev/clawd 0.2.168-beta.344.b5025a9 → 0.2.169-beta.345.d87d4d6
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 +2 -5
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -12369,15 +12369,11 @@ 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 默认。
|
|
12374
12372
|
options: [
|
|
12375
12373
|
{ value: "", label: "Default" },
|
|
12376
12374
|
{ value: "low", label: "Low" },
|
|
12377
12375
|
{ value: "medium", label: "Medium" },
|
|
12378
|
-
{ value: "high", label: "High" }
|
|
12379
|
-
{ value: "xhigh", label: "Extra high" },
|
|
12380
|
-
{ value: "max", label: "Max" }
|
|
12376
|
+
{ value: "high", label: "High" }
|
|
12381
12377
|
],
|
|
12382
12378
|
default: ""
|
|
12383
12379
|
}
|
|
@@ -43826,6 +43822,7 @@ function buildPersonaHandlers(deps) {
|
|
|
43826
43822
|
return { response: { type: "persona:info", ...persona } };
|
|
43827
43823
|
};
|
|
43828
43824
|
const list = async (_frame, _client, ctx) => {
|
|
43825
|
+
personaRegistry.reload();
|
|
43829
43826
|
const all = personaRegistry.list();
|
|
43830
43827
|
const isGuest = ctx?.principal.kind === "guest";
|
|
43831
43828
|
const personas = isGuest ? all.filter(
|
package/package.json
CHANGED