prizmkit 1.1.74 → 1.1.76

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.
@@ -137,7 +137,10 @@ class ProgressTracker:
137
137
  self.event_format = ""
138
138
  self.active_subagent_count = 0
139
139
  self.subagent_status_counts = Counter()
140
+ self._subagent_spawn_count = 0
140
141
  self.codex_child_thread_ids = set()
142
+ self.cb_session_id = ""
143
+ self.cb_cwd = ""
141
144
  self.claude_session_id = ""
142
145
  self.claude_cwd = ""
143
146
  self.claude_task_states = {}
@@ -147,6 +150,7 @@ class ProgressTracker:
147
150
  self.last_child_activity_at = ""
148
151
  self._codex_child_session_paths = {}
149
152
  self._claude_child_session_files = []
153
+ self._cb_child_session_files = []
150
154
  self._last_child_scan_at = 0.0
151
155
  self._last_claude_fallback_scan_at = 0.0
152
156
  self._last_claude_fallback_scan_key = ""
@@ -158,10 +162,13 @@ class ProgressTracker:
158
162
  def process_event(self, event):
159
163
  """Process a single stream-json event and update state.
160
164
 
161
- Supports two formats:
165
+ Supports three formats:
162
166
  1. Claude API raw stream: message_start, content_block_start, content_block_delta, etc.
163
167
  2. Claude Code verbose stream-json: assistant, user, tool_result, system, etc.
164
168
  (produced by claude/claude-internal --verbose --output-format stream-json)
169
+ 3. CodeBuddy stream-json: message/function_call/function_call_result events
170
+ (produced by cbc --print -y --output-format stream-json — message type
171
+ with sessionId/cwd metadata, function_call for tool invocations).
165
172
  """
166
173
  event_type = event.get("type", "")
167
174
 
@@ -233,6 +240,93 @@ class ProgressTracker:
233
240
 
234
241
  return
235
242
 
243
+ # ── CodeBuddy stream-json format ──────────────────────────────
244
+ # cbc --print -y --output-format stream-json emits:
245
+ # message (role=user/assistant), function_call, function_call_result,
246
+ # file-history-snapshot, error. The first user message carries
247
+ # sessionId and cwd metadata; later function_call items carry the
248
+ # same fields.
249
+ # NOTE: cbc emits tool invocations as EITHER tool_use blocks inside a
250
+ # message (role=assistant) event OR as standalone function_call events,
251
+ # but not both for the same invocation. The two handlers are
252
+ # complementary rather than redundant, so no deduplication is needed.
253
+ # Detect via event_type=="message" with a "sessionId" field.
254
+ # Must run before the Claude Code assistant / tool_result branches
255
+ # because those also accept those types but use different internals.
256
+ if event_type == "message" and isinstance(event.get("sessionId"), str):
257
+ self.event_format = self.event_format or "stream-json"
258
+ role = event.get("role", "")
259
+ sid = event.get("sessionId", "")
260
+ cwd = event.get("cwd", "")
261
+ if sid and not self.cb_session_id:
262
+ self.cb_session_id = sid.strip()
263
+ if cwd and not self.cb_cwd:
264
+ self.cb_cwd = cwd.strip()
265
+ if role == "assistant":
266
+ self.message_count += 1
267
+ self.is_active = True
268
+ content = event.get("content", [])
269
+ if isinstance(content, list):
270
+ for block in content:
271
+ block_type = block.get("type", "")
272
+ if block_type == "tool_use":
273
+ tool_name = block.get("name", "unknown")
274
+ self.current_tool = tool_name
275
+ self.tool_call_counts[tool_name] += 1
276
+ self.total_tool_calls += 1
277
+ tool_input = block.get("input", {})
278
+ if isinstance(tool_input, dict):
279
+ self._extract_tool_summary_from_dict(tool_input)
280
+ self._detect_phase(
281
+ json.dumps(tool_input, ensure_ascii=False)[:500]
282
+ )
283
+ # Track CodeBuddy Agent/Task tool invocations as
284
+ # potential sub-agent spawns (Gap 3 fix).
285
+ self._record_cb_agent_tool_call(tool_name, tool_input)
286
+ elif block_type == "text":
287
+ text = block.get("text", "")
288
+ if text.strip():
289
+ self.last_text_snippet = text.strip()[:120]
290
+ self._detect_phase(text)
291
+ self._detect_terminal_error(
292
+ text, require_error_context=True
293
+ )
294
+ return
295
+
296
+ # CodeBuddy function_call / function_call_result in stream-json
297
+ if event_type in ("function_call", "function_call_result"):
298
+ self.event_format = self.event_format or "stream-json"
299
+ sid = event.get("sessionId", "")
300
+ cwd = event.get("cwd", "")
301
+ if sid and not self.cb_session_id:
302
+ self.cb_session_id = sid.strip()
303
+ if cwd and not self.cb_cwd:
304
+ self.cb_cwd = cwd.strip()
305
+ if event_type == "function_call":
306
+ tool_name = event.get("name", "unknown")
307
+ self.current_tool = tool_name
308
+ self.tool_call_counts[tool_name] += 1
309
+ self.total_tool_calls += 1
310
+ self.is_active = True
311
+ # Extract summary from arguments
312
+ raw_args = event.get("arguments", "")
313
+ if isinstance(raw_args, str) and raw_args.strip():
314
+ self._extract_tool_summary(raw_args)
315
+ self._detect_phase(raw_args[:500])
316
+ # Track Agent/Task tool invocations as sub-agent spawns
317
+ self._record_cb_agent_tool_call(tool_name, raw_args)
318
+ elif event_type == "function_call_result":
319
+ self.current_tool = None
320
+ # Check result text for phase / error hints
321
+ result_text = event.get("output") or ""
322
+ if result_text and isinstance(result_text, str):
323
+ stripped = result_text.strip()
324
+ if stripped:
325
+ self.last_text_snippet = stripped[:120]
326
+ self._detect_phase(stripped)
327
+ self._detect_terminal_error(stripped, require_error_context=True)
328
+ return
329
+
236
330
  # ── Claude Code verbose format ──────────────────────────────
237
331
  if event_type == "assistant":
238
332
  self.event_format = self.event_format or "stream-json"
@@ -259,7 +353,10 @@ class ProgressTracker:
259
353
  self._detect_phase(text)
260
354
  self._detect_terminal_error(text, require_error_context=True)
261
355
 
262
- elif event_type == "tool_result" or event_type == "user":
356
+ elif event_type == "tool_result" or (
357
+ event_type == "user"
358
+ and not isinstance(event.get("sessionId"), str)
359
+ ):
263
360
  # tool_result contains output from tool execution
264
361
  self.event_format = self.event_format or "stream-json"
265
362
  self.is_active = True
@@ -269,11 +366,11 @@ class ProgressTracker:
269
366
  # B) Nested user events: event["message"]["content"][] has type=="tool_result" items
270
367
  content_candidates = []
271
368
 
272
- # Format A: top-level tool_result
369
+ # Format A: top-level tool_result (Claude Code)
273
370
  if event_type == "tool_result":
274
371
  content_candidates.append(str(event.get("content", "")))
275
372
 
276
- # Format B: nested inside user event
373
+ # Format B: nested inside user event (Claude Code, NOT CodeBuddy)
277
374
  if event_type == "user":
278
375
  message = event.get("message", {})
279
376
  content_list = message.get("content", [])
@@ -465,15 +562,60 @@ class ProgressTracker:
465
562
  self._current_tool_input_parts = []
466
563
 
467
564
  elif event_type == "error":
565
+ self.event_format = self.event_format or "stream-json"
468
566
  error_msg = event.get("error", {}).get("message", "Unknown error")
567
+ errors = event.get("errors") or []
568
+ if isinstance(errors, list) and errors:
569
+ error_msg = "; ".join(str(e) for e in errors[:3])
469
570
  self.errors.append(error_msg)
470
571
  self._detect_terminal_error(str(error_msg))
471
572
 
573
+ # ── CodeBuddy file-history-snapshot (ignore) ─────────────────
574
+ elif event_type == "file-history-snapshot":
575
+ return
576
+
472
577
  # Check for subagent indicator
473
578
  if event.get("parent_tool_use_id"):
474
579
  # This is a sub-agent event; tool name is still tracked normally
475
580
  pass
476
581
 
582
+ def _record_cb_agent_tool_call(self, tool_name, raw_args):
583
+ """Record a CodeBuddy Agent/Task* tool invocation for sub-agent tracking.
584
+
585
+ CodeBuddy spawns sub-agents via:
586
+ - Agent(prompt=..., run_in_background=True/False) — synchronous or bg fork
587
+ - TaskCreate(subject=..., description=...) — scheduled task
588
+
589
+ (TaskUpdate/TaskOutput exist but are lifecycle-only — they track
590
+ existing tasks rather than creating new sub-agents, so we don't
591
+ count them as spawns.)
592
+
593
+ We don't get child session ids from these tool calls in the stream,
594
+ but recording the count lets the heartbeat code in heartbeat.sh apply
595
+ an extended stale-kill window just as it does for Codex spawn_agent.
596
+ """
597
+ if tool_name not in ("Agent", "TaskCreate"):
598
+ return
599
+ # Both dict (from message events) and str/JSON (from function_call events)
600
+ # are supported.
601
+ if isinstance(raw_args, dict):
602
+ args = raw_args
603
+ elif isinstance(raw_args, str):
604
+ try:
605
+ args = json.loads(raw_args)
606
+ except (json.JSONDecodeError, TypeError):
607
+ return
608
+ else:
609
+ return
610
+ # For Agent tool, subagent_type or run_in_background hints at delegation
611
+ if tool_name == "Agent":
612
+ subagent_type = args.get("subagent_type", "")
613
+ prompt = args.get("prompt", "")
614
+ if subagent_type or prompt:
615
+ self._subagent_spawn_count += 1
616
+ elif tool_name == "TaskCreate":
617
+ self._subagent_spawn_count += 1
618
+
477
619
  def _record_terminal_result(self, text="", is_error=False, api_error_status=None, api_error_code=""):
478
620
  """Record a Claude Code terminal result event."""
479
621
  terminal_text = str(text or "")
@@ -757,17 +899,85 @@ class ProgressTracker:
757
899
  return []
758
900
  return matches
759
901
 
902
+ def _cb_projects_dir(self):
903
+ """Return the CodeBuddy projects directory for transcript lookup.
904
+
905
+ CodeBuddy stores per-project session transcripts and sub-agent data
906
+ under ~/.codebuddy/projects/{projectDir}/{sessionId}/.
907
+ """
908
+ cb_config = os.environ.get("CODEBUDDY_CONFIG_DIR")
909
+ if cb_config:
910
+ return Path(cb_config).expanduser() / "projects"
911
+ cb_home = os.environ.get("CODEBUDDY_HOME")
912
+ if cb_home:
913
+ return Path(cb_home).expanduser() / "projects"
914
+ return Path.home() / ".codebuddy" / "projects"
915
+
916
+ def _cb_project_key(self):
917
+ """Encode cwd the same way CodeBuddy stores project subdirs.
918
+
919
+ CodeBuddy uses the same sanitisation as Claude Code (\, /, : → -)
920
+ but strips the leading '-' so "/Users/test/MyProject" becomes
921
+ "Users-test-MyProject".
922
+ """
923
+ cwd = self.cb_cwd
924
+ if not cwd:
925
+ return ""
926
+ return cwd.replace("\\", "-").replace("/", "-").replace(":", "").lstrip("-")
927
+
928
+ def _find_cb_child_session_files(self):
929
+ """Find CodeBuddy subagent transcript data for this parent session.
930
+
931
+ CodeBuddy sub-agents store tool-results/{callId}.txt files; conversation
932
+ transcripts are not (as of 2026) written as agent-*.jsonl files in the
933
+ subagents/ directory. We track the tool-results .txt files as a proxy
934
+ for child activity so the heartbeat monitor can extend the stale-kill
935
+ window while sub-agents are running.
936
+ """
937
+ if not self.cb_session_id:
938
+ return []
939
+
940
+ projects_dir = self._cb_projects_dir()
941
+ if not projects_dir.exists():
942
+ return []
943
+
944
+ project_key = self._cb_project_key()
945
+ if not project_key:
946
+ return []
947
+
948
+ subagents_dir = (
949
+ projects_dir / project_key / self.cb_session_id / "subagents"
950
+ )
951
+ if not subagents_dir.exists():
952
+ return []
953
+
954
+ # Collect all files under each agent-{id} subdirectory. These are
955
+ # currently tool-results/{callId}.txt files, but the glob also picks
956
+ # up future agent-*.jsonl transcripts should CodeBuddy add them.
957
+ try:
958
+ return sorted(
959
+ p for p in subagents_dir.glob("**/*")
960
+ if p.is_file()
961
+ )
962
+ except OSError:
963
+ return []
964
+
760
965
  def refresh_child_session_activity(self, force=False):
761
966
  """Refresh child transcript file stats.
762
967
 
763
968
  The heartbeat monitor uses this activity signature to treat subagent
764
969
  transcript growth as real progress while the parent session is blocked
765
- waiting for a child agent/tool result. Supports Codex child threads and
766
- Claude Code in-process teammate transcripts.
970
+ waiting for a child agent/tool result. Supports Codex child threads,
971
+ Claude Code in-process teammate transcripts, and CodeBuddy sub-agent
972
+ file activity under subagents/.
767
973
  """
768
974
  previous_signature = self.child_activity_signature
769
975
 
770
- if not self.codex_child_thread_ids and not self.claude_session_id:
976
+ if (
977
+ not self.codex_child_thread_ids
978
+ and not self.claude_session_id
979
+ and not self.cb_session_id
980
+ ):
771
981
  self.child_session_files = []
772
982
  self.child_total_bytes = 0
773
983
  self.child_activity_signature = ""
@@ -788,6 +998,7 @@ class ProgressTracker:
788
998
  if found:
789
999
  self._codex_child_session_paths[thread_id] = found
790
1000
  self._claude_child_session_files = self._find_claude_child_session_files()
1001
+ self._cb_child_session_files = self._find_cb_child_session_files()
791
1002
  self._last_child_scan_at = now
792
1003
 
793
1004
  files = []
@@ -826,6 +1037,14 @@ class ProgressTracker:
826
1037
  for path in self._claude_child_session_files:
827
1038
  add_file("claude", path.stem, path)
828
1039
 
1040
+ for path in self._cb_child_session_files:
1041
+ # Identifier for CodeBuddy sub-agent files: use the parent
1042
+ # directory name (agent-{id}) so heartbeat can distinguish
1043
+ # activity across different sub-agent instances.
1044
+ parent_name = path.parent.name if hasattr(path, "parent") else ""
1045
+ identifier = parent_name if parent_name.startswith("agent-") else path.name
1046
+ add_file("codebuddy", identifier, path)
1047
+
829
1048
  self.child_session_files = files
830
1049
  self.child_total_bytes = total_bytes
831
1050
  self.child_activity_signature = "|".join(signature_parts)
@@ -861,11 +1080,14 @@ class ProgressTracker:
861
1080
  "total_tool_calls": self.total_tool_calls,
862
1081
  "active_subagent_count": self.active_subagent_count,
863
1082
  "subagent_states": subagent_states,
1083
+ "subagent_spawn_count": self._subagent_spawn_count,
864
1084
  "child_thread_ids": sorted(self.codex_child_thread_ids),
865
1085
  "child_session_files": self.child_session_files,
866
1086
  "child_total_bytes": self.child_total_bytes,
867
1087
  "child_activity_signature": self.child_activity_signature,
868
1088
  "last_child_activity_at": self.last_child_activity_at,
1089
+ "cb_session_id": self.cb_session_id,
1090
+ "cb_cwd": self.cb_cwd,
869
1091
  "last_text_snippet": self.last_text_snippet,
870
1092
  "last_result_is_error": self.last_result_is_error,
871
1093
  "api_error_status": self.api_error_status,
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.74",
2
+ "version": "1.1.76",
3
3
  "skills": {
4
4
  "prizm-kit": {
5
5
  "description": "Full-lifecycle dev toolkit. Covers spec-driven development, Prizm context docs, code quality, debugging, deployment, and knowledge management.",
@@ -189,6 +189,7 @@ Detect user intent from their message, then follow the corresponding workflow:
189
189
  | Variable | Default | Purpose |
190
190
  |----------|---------|---------|
191
191
  | `MODEL` | (none) | AI model override (e.g. `claude-opus-4.6`) |
192
+ | `PRIZMKIT_EFFORT` | (none) | AI reasoning effort: `low`\|`medium`\|`high`\|`xhigh`\|`max` (max = Claude Code only) |
192
193
  | `AUTO_PUSH` | `0` | Auto-push to remote after successful bug fix (`1` to enable) |
193
194
  | `DEV_BRANCH` | auto-generated | Custom dev branch name (default: `bugfix/pipeline-{run_id}`) |
194
195
  | `HEARTBEAT_INTERVAL` | `30` | Heartbeat log interval in seconds |
@@ -206,6 +206,7 @@ Detect user intent from their message, then follow the corresponding workflow:
206
206
  | Variable | Default | Purpose |
207
207
  |----------|---------|---------|
208
208
  | `MODEL` | (none) | AI model override (e.g. `claude-opus-4.6`) |
209
+ | `PRIZMKIT_EFFORT` | (none) | AI reasoning effort: `low`\|`medium`\|`high`\|`xhigh`\|`max` (max = Claude Code only) |
209
210
  | `AUTO_PUSH` | `0` | Auto-push to remote after successful feature (`1` to enable) |
210
211
  | `DEV_BRANCH` | auto-generated | Custom dev branch name (default: `dev/{feature_id}-YYYYMMDDHHmm`) |
211
212
  | `HEARTBEAT_INTERVAL` | `30` | Heartbeat log interval in seconds |
@@ -215,6 +215,7 @@ Detect user intent from their message, then follow the corresponding workflow:
215
215
  | Variable | Default | Purpose |
216
216
  |----------|---------|---------|
217
217
  | `MODEL` | (none) | AI model override (e.g. `claude-opus-4.6`) |
218
+ | `PRIZMKIT_EFFORT` | (none) | AI reasoning effort: `low`\|`medium`\|`high`\|`xhigh`\|`max` (max = Claude Code only) |
218
219
  | `AUTO_PUSH` | `0` | Auto-push to remote after successful refactor (`1` to enable) |
219
220
  | `DEV_BRANCH` | auto-generated | Custom dev branch name (default: `refactor/pipeline-{run_id}`) |
220
221
  | `HEARTBEAT_INTERVAL` | `30` | Heartbeat log interval in seconds |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prizmkit",
3
- "version": "1.1.74",
3
+ "version": "1.1.76",
4
4
  "description": "Create a new PrizmKit-powered project with clean initialization — no framework dev files, just what you need.",
5
5
  "type": "module",
6
6
  "bin": {