@clawos-dev/clawd 0.2.170-beta.346.c7ac1be → 0.2.170

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 (2) hide show
  1. package/dist/cli.cjs +6 -1
  2. 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
  }
@@ -43872,6 +43876,7 @@ function buildPersonaHandlers(deps) {
43872
43876
  return { response: { type: "persona:info", ...persona } };
43873
43877
  };
43874
43878
  const list = async (_frame, _client, ctx) => {
43879
+ personaRegistry.reload();
43875
43880
  const all = personaRegistry.list();
43876
43881
  const isGuest = ctx?.principal.kind === "guest";
43877
43882
  const personas = isGuest ? all.filter(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawos-dev/clawd",
3
- "version": "0.2.170-beta.346.c7ac1be",
3
+ "version": "0.2.170",
4
4
  "description": "Standalone clawd daemon — Claude Code (and future Codex) session server over WebSocket",
5
5
  "type": "module",
6
6
  "license": "MIT",