arkaos 2.65.0 → 2.67.0

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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.65.0
1
+ 2.67.0
@@ -4,6 +4,9 @@
4
4
  "command": "{{STATUSLINE_PATH}}",
5
5
  "padding": 2
6
6
  },
7
+ "worktree": {
8
+ "baseRef": "head"
9
+ },
7
10
  "hooks": {
8
11
  "SessionStart": [
9
12
  {
@@ -66,9 +66,15 @@ def record_cost(
66
66
  tokens_out: int,
67
67
  cached_tokens: int,
68
68
  estimated_cost_usd: float | None,
69
+ category: str = "",
69
70
  ) -> None:
70
71
  """Append one JSONL line describing an LLM call's cost.
71
72
 
73
+ `category` mirrors Claude Code v2.1.149's per-category usage
74
+ breakdown: ``"skill:<slug>"``, ``"subagent:<dept>"``,
75
+ ``"plugin:<id>"``, ``"mcp:<server>"``, or ``""`` for base usage.
76
+ Free-form string — the aggregator groups whatever it sees.
77
+
72
78
  Silently swallows all errors. Telemetry must never break a
73
79
  completion call. The caller decides whether to compute the cost via
74
80
  `core.runtime.pricing.estimate_cost_usd` or pass None.
@@ -87,6 +93,7 @@ def record_cost(
87
93
  if estimated_cost_usd is not None
88
94
  else None
89
95
  ),
96
+ "category": str(category or ""),
90
97
  }
91
98
  with _locked_append(_telemetry_path()) as fh:
92
99
  fh.write(json.dumps(entry, ensure_ascii=False) + "\n")
@@ -133,6 +140,7 @@ class CostSummary:
133
140
  call_count: int
134
141
  by_provider: dict[str, dict[str, Any]] = field(default_factory=dict)
135
142
  by_model: dict[str, dict[str, Any]] = field(default_factory=dict)
143
+ by_category: dict[str, dict[str, Any]] = field(default_factory=dict)
136
144
  by_session: list[dict[str, Any]] = field(default_factory=list)
137
145
  advisories: list[str] = field(default_factory=list)
138
146
  corrupt_line_count: int = 0
@@ -291,6 +299,7 @@ def summarise(
291
299
  call_count=finalised["call_count"],
292
300
  by_provider=_group(entries, "provider"),
293
301
  by_model=_group(entries, "model"),
302
+ by_category=_group(entries, "category"),
294
303
  by_session=sessions,
295
304
  advisories=_build_advisories(sessions, advisory_threshold_usd),
296
305
  corrupt_line_count=corrupt,
@@ -89,6 +89,12 @@ def _render_sessions(rows: list[dict[str, Any]], title: str) -> list[str]:
89
89
  return lines
90
90
 
91
91
 
92
+ def _has_category_data(group: dict[str, dict[str, Any]]) -> bool:
93
+ # The summariser always returns at least the "" bucket for legacy
94
+ # rows. Hide the section unless ≥ 1 row has a non-empty key.
95
+ return any(k.strip() for k in group.keys())
96
+
97
+
92
98
  def _render_advisories(advisories: list[str]) -> list[str]:
93
99
  if not advisories:
94
100
  return []
@@ -101,6 +107,11 @@ def _format_summary(summary: CostSummary) -> str:
101
107
  parts.append("")
102
108
  parts.extend(_render_group("By provider", summary.by_provider))
103
109
  parts.extend(_render_group("By model", summary.by_model))
110
+ # Per-category breakdown (Claude Code v2.1.149+): skill, subagent,
111
+ # plugin, mcp-server. Renders only when at least one categorised
112
+ # entry exists so old telemetry doesn't show an empty section.
113
+ if _has_category_data(summary.by_category):
114
+ parts.extend(_render_group("By category", summary.by_category))
104
115
  parts.extend(_render_sessions(summary.by_session, "Top 10 sessions"))
105
116
  parts.extend(_render_advisories(summary.advisories))
106
117
  if summary.corrupt_line_count:
@@ -330,6 +330,21 @@ export async function install({ runtime, path, force, skipSystem, withOllama })
330
330
  console.log(` Warning: could not seed autoMode.hard_deny (${err.message})`);
331
331
  }
332
332
 
333
+ // PR48 v2.67.0 — seed worktree.baseRef = "head" so new Claude Code
334
+ // worktrees branch from the current HEAD instead of the repo's main.
335
+ // Only sets when missing — operator overrides are preserved.
336
+ try {
337
+ const { seedWorktreeBaseRef } = await import("./worktree-baseref.js");
338
+ const wtResult = seedWorktreeBaseRef({ runtime });
339
+ if (!wtResult.skipped && wtResult.action === "created") {
340
+ console.log(` worktree.baseRef set to "${wtResult.value}".`);
341
+ } else if (!wtResult.skipped && wtResult.action === "merged") {
342
+ console.log(` worktree.baseRef merged ("${wtResult.value}").`);
343
+ }
344
+ } catch (err) {
345
+ console.log(` Warning: could not seed worktree.baseRef (${err.message})`);
346
+ }
347
+
333
348
  // PR43 v2.62.0 — auto-install default Claude Code plugins. Only runs
334
349
  // when runtime is Claude Code AND the `claude` CLI is available.
335
350
  // Idempotent: skips plugins already in installed_plugins.json.
@@ -0,0 +1,61 @@
1
+ // worktree.baseRef default for Claude Code (PR48 v2.67.0).
2
+ //
3
+ // Claude Code v2.1.151+ added the `worktree.baseRef` setting which
4
+ // controls where new worktrees branch from. The default is the repo's
5
+ // main branch, but for ArkaOS's iterative feature-branch workflow we
6
+ // want worktrees to branch from the current HEAD instead — that way an
7
+ // agent working from a feature branch gets a worktree built on top of
8
+ // the in-progress branch, not master.
9
+ //
10
+ // Behaviour:
11
+ // - No-op when runtime is not Claude Code.
12
+ // - Only sets the value when it's missing. Operator-authored values
13
+ // are preserved (this is a default, not a contract).
14
+ // - Atomic write via .tmp + rename.
15
+ // - Never raises — failures are non-fatal.
16
+
17
+ import { existsSync, readFileSync, writeFileSync, renameSync } from "node:fs";
18
+ import { homedir } from "node:os";
19
+ import { join } from "node:path";
20
+
21
+
22
+ export const DEFAULT_WORKTREE_BASEREF = "head";
23
+
24
+
25
+ export function seedWorktreeBaseRef({
26
+ runtime = "claude-code",
27
+ home = homedir(),
28
+ defaultValue = DEFAULT_WORKTREE_BASEREF,
29
+ } = {}) {
30
+ if (runtime !== "claude-code") {
31
+ return { skipped: "runtime-not-claude-code", action: null };
32
+ }
33
+ const settingsPath = join(home, ".claude", "settings.json");
34
+ if (!existsSync(settingsPath)) {
35
+ return { skipped: "claude-settings-not-found", action: null };
36
+ }
37
+ let settings;
38
+ try {
39
+ settings = JSON.parse(readFileSync(settingsPath, "utf-8"));
40
+ } catch {
41
+ return { skipped: "settings-not-parseable", action: null };
42
+ }
43
+ if (typeof settings !== "object" || settings === null) {
44
+ return { skipped: "settings-not-object", action: null };
45
+ }
46
+ const existing = settings.worktree && typeof settings.worktree === "object"
47
+ ? settings.worktree
48
+ : null;
49
+ if (existing && typeof existing.baseRef === "string" && existing.baseRef) {
50
+ return { skipped: null, action: "noop", value: existing.baseRef };
51
+ }
52
+ settings.worktree = { ...(existing ?? {}), baseRef: defaultValue };
53
+ const tmp = `${settingsPath}.tmp-${process.pid}`;
54
+ writeFileSync(tmp, JSON.stringify(settings, null, 2) + "\n");
55
+ renameSync(tmp, settingsPath);
56
+ return {
57
+ skipped: null,
58
+ action: existing ? "merged" : "created",
59
+ value: defaultValue,
60
+ };
61
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkaos",
3
- "version": "2.65.0",
3
+ "version": "2.67.0",
4
4
  "description": "The Operating System for AI Agent Teams",
5
5
  "type": "module",
6
6
  "bin": {
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arkaos-core"
3
- version = "2.65.0"
3
+ version = "2.67.0"
4
4
  description = "Core engine for ArkaOS — The Operating System for AI Agent Teams"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}