aiwcli 0.12.6 → 0.12.7

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 (124) hide show
  1. package/bin/dev.cmd +3 -3
  2. package/bin/dev.js +16 -16
  3. package/bin/run.cmd +3 -3
  4. package/bin/run.js +21 -21
  5. package/dist/commands/branch.js +7 -2
  6. package/dist/lib/bmad-installer.js +37 -37
  7. package/dist/lib/terminal.d.ts +2 -0
  8. package/dist/lib/terminal.js +57 -7
  9. package/dist/templates/CLAUDE.md +205 -205
  10. package/dist/templates/_shared/.claude/commands/handoff-resume.md +12 -12
  11. package/dist/templates/_shared/.claude/commands/handoff.md +12 -12
  12. package/dist/templates/_shared/.claude/settings.json +65 -65
  13. package/dist/templates/_shared/.codex/workflows/handoff.md +226 -226
  14. package/dist/templates/_shared/.windsurf/workflows/handoff.md +226 -226
  15. package/dist/templates/_shared/handoff-system/CLAUDE.md +421 -421
  16. package/dist/templates/_shared/handoff-system/lib/document-generator.ts +215 -215
  17. package/dist/templates/_shared/handoff-system/lib/handoff-reader.ts +158 -158
  18. package/dist/templates/_shared/handoff-system/scripts/resume_handoff.ts +373 -373
  19. package/dist/templates/_shared/handoff-system/scripts/save_handoff.ts +469 -469
  20. package/dist/templates/_shared/handoff-system/workflows/handoff-resume.md +66 -66
  21. package/dist/templates/_shared/handoff-system/workflows/handoff.md +254 -254
  22. package/dist/templates/_shared/hooks-ts/_utils/git-state.ts +2 -2
  23. package/dist/templates/_shared/hooks-ts/archive_plan.ts +159 -159
  24. package/dist/templates/_shared/hooks-ts/context_monitor.ts +147 -147
  25. package/dist/templates/_shared/hooks-ts/file-suggestion.ts +128 -128
  26. package/dist/templates/_shared/hooks-ts/pre_compact.ts +49 -49
  27. package/dist/templates/_shared/hooks-ts/session_end.ts +196 -196
  28. package/dist/templates/_shared/hooks-ts/session_start.ts +163 -163
  29. package/dist/templates/_shared/hooks-ts/task_create_capture.ts +48 -48
  30. package/dist/templates/_shared/hooks-ts/task_update_capture.ts +74 -74
  31. package/dist/templates/_shared/hooks-ts/user_prompt_submit.ts +93 -93
  32. package/dist/templates/_shared/lib-ts/CLAUDE.md +367 -367
  33. package/dist/templates/_shared/lib-ts/base/atomic-write.ts +138 -138
  34. package/dist/templates/_shared/lib-ts/base/constants.ts +303 -303
  35. package/dist/templates/_shared/lib-ts/base/git-state.ts +58 -58
  36. package/dist/templates/_shared/lib-ts/base/hook-utils.ts +582 -582
  37. package/dist/templates/_shared/lib-ts/base/inference.ts +301 -301
  38. package/dist/templates/_shared/lib-ts/base/logger.ts +247 -247
  39. package/dist/templates/_shared/lib-ts/base/state-io.ts +202 -202
  40. package/dist/templates/_shared/lib-ts/base/stop-words.ts +184 -184
  41. package/dist/templates/_shared/lib-ts/base/utils.ts +184 -184
  42. package/dist/templates/_shared/lib-ts/context/context-formatter.ts +566 -566
  43. package/dist/templates/_shared/lib-ts/context/context-selector.ts +524 -524
  44. package/dist/templates/_shared/lib-ts/context/context-store.ts +712 -712
  45. package/dist/templates/_shared/lib-ts/context/plan-manager.ts +312 -312
  46. package/dist/templates/_shared/lib-ts/context/task-tracker.ts +185 -185
  47. package/dist/templates/_shared/lib-ts/package.json +20 -20
  48. package/dist/templates/_shared/lib-ts/templates/formatters.ts +102 -102
  49. package/dist/templates/_shared/lib-ts/templates/plan-context.ts +58 -58
  50. package/dist/templates/_shared/lib-ts/tsconfig.json +13 -13
  51. package/dist/templates/_shared/lib-ts/types.ts +186 -186
  52. package/dist/templates/_shared/scripts/resolve_context.ts +33 -33
  53. package/dist/templates/_shared/scripts/status_line.ts +690 -690
  54. package/dist/templates/cc-native/.claude/commands/cc-native/rlm/ask.md +136 -136
  55. package/dist/templates/cc-native/.claude/commands/cc-native/rlm/index.md +21 -21
  56. package/dist/templates/cc-native/.claude/commands/cc-native/rlm/overview.md +56 -56
  57. package/dist/templates/cc-native/.claude/commands/cc-native/specdev.md +10 -10
  58. package/dist/templates/cc-native/.windsurf/workflows/cc-native/fix.md +8 -8
  59. package/dist/templates/cc-native/.windsurf/workflows/cc-native/implement.md +8 -8
  60. package/dist/templates/cc-native/.windsurf/workflows/cc-native/research.md +8 -8
  61. package/dist/templates/cc-native/CC-NATIVE-README.md +189 -189
  62. package/dist/templates/cc-native/TEMPLATE-SCHEMA.md +304 -304
  63. package/dist/templates/cc-native/_cc-native/agents/CLAUDE.md +143 -143
  64. package/dist/templates/cc-native/_cc-native/agents/PLAN-ORCHESTRATOR.md +213 -213
  65. package/dist/templates/cc-native/_cc-native/agents/plan-questions/PLAN-QUESTIONER.md +70 -70
  66. package/dist/templates/cc-native/_cc-native/cc-native.config.json +96 -96
  67. package/dist/templates/cc-native/_cc-native/hooks/CLAUDE.md +247 -247
  68. package/dist/templates/cc-native/_cc-native/hooks/cc-native-plan-review.ts +76 -76
  69. package/dist/templates/cc-native/_cc-native/hooks/enhance_plan_post_subagent.ts +54 -54
  70. package/dist/templates/cc-native/_cc-native/hooks/enhance_plan_post_write.ts +51 -51
  71. package/dist/templates/cc-native/_cc-native/hooks/mark_questions_asked.ts +53 -53
  72. package/dist/templates/cc-native/_cc-native/hooks/plan_questions_early.ts +61 -61
  73. package/dist/templates/cc-native/_cc-native/lib-ts/agent-selection.ts +163 -163
  74. package/dist/templates/cc-native/_cc-native/lib-ts/aggregate-agents.ts +156 -156
  75. package/dist/templates/cc-native/_cc-native/lib-ts/artifacts/format.ts +597 -597
  76. package/dist/templates/cc-native/_cc-native/lib-ts/artifacts/index.ts +26 -26
  77. package/dist/templates/cc-native/_cc-native/lib-ts/artifacts/tracker.ts +107 -107
  78. package/dist/templates/cc-native/_cc-native/lib-ts/artifacts/write.ts +119 -119
  79. package/dist/templates/cc-native/_cc-native/lib-ts/artifacts.ts +21 -21
  80. package/dist/templates/cc-native/_cc-native/lib-ts/cc-native-state.ts +319 -319
  81. package/dist/templates/cc-native/_cc-native/lib-ts/cli-output-parser.ts +144 -144
  82. package/dist/templates/cc-native/_cc-native/lib-ts/config.ts +57 -57
  83. package/dist/templates/cc-native/_cc-native/lib-ts/constants.ts +83 -83
  84. package/dist/templates/cc-native/_cc-native/lib-ts/corroboration.ts +119 -119
  85. package/dist/templates/cc-native/_cc-native/lib-ts/debug.ts +79 -79
  86. package/dist/templates/cc-native/_cc-native/lib-ts/graduation.ts +132 -132
  87. package/dist/templates/cc-native/_cc-native/lib-ts/index.ts +116 -116
  88. package/dist/templates/cc-native/_cc-native/lib-ts/json-parser.ts +168 -168
  89. package/dist/templates/cc-native/_cc-native/lib-ts/orchestrator.ts +70 -70
  90. package/dist/templates/cc-native/_cc-native/lib-ts/output-builder.ts +130 -130
  91. package/dist/templates/cc-native/_cc-native/lib-ts/plan-discovery.ts +80 -80
  92. package/dist/templates/cc-native/_cc-native/lib-ts/plan-enhancement.ts +41 -41
  93. package/dist/templates/cc-native/_cc-native/lib-ts/plan-questions.ts +101 -101
  94. package/dist/templates/cc-native/_cc-native/lib-ts/review-pipeline.ts +511 -511
  95. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/agent.ts +71 -71
  96. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/base/base-agent.ts +217 -217
  97. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/index.ts +12 -12
  98. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/providers/claude-agent.ts +66 -66
  99. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/providers/codex-agent.ts +184 -184
  100. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/providers/gemini-agent.ts +39 -39
  101. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/providers/orchestrator-claude-agent.ts +196 -196
  102. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/schemas.ts +201 -201
  103. package/dist/templates/cc-native/_cc-native/lib-ts/reviewers/types.ts +21 -21
  104. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/CLAUDE.md +480 -480
  105. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/embedding-indexer.ts +287 -287
  106. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/hyde.ts +148 -148
  107. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/index.ts +54 -54
  108. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/logger.ts +58 -58
  109. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/ollama-client.ts +208 -208
  110. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/retrieval-pipeline.ts +460 -460
  111. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-indexer.ts +446 -446
  112. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-loader.ts +280 -280
  113. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/transcript-searcher.ts +274 -274
  114. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/types.ts +201 -201
  115. package/dist/templates/cc-native/_cc-native/lib-ts/rlm/vector-store.ts +278 -278
  116. package/dist/templates/cc-native/_cc-native/lib-ts/settings.ts +184 -184
  117. package/dist/templates/cc-native/_cc-native/lib-ts/state.ts +275 -275
  118. package/dist/templates/cc-native/_cc-native/lib-ts/tsconfig.json +18 -18
  119. package/dist/templates/cc-native/_cc-native/lib-ts/types.ts +329 -329
  120. package/dist/templates/cc-native/_cc-native/lib-ts/verdict.ts +72 -72
  121. package/dist/templates/cc-native/_cc-native/workflows/specdev.md +9 -9
  122. package/oclif.manifest.json +1 -1
  123. package/package.json +108 -108
  124. package/dist/templates/cc-native/_cc-native/lib-ts/nul +0 -3
@@ -1,280 +1,280 @@
1
- #!/usr/bin/env bun
2
- /**
3
- * TranscriptLoader — Loads and formats transcript segments for deep reading.
4
- *
5
- * Given a session JSONL file path + optional line range, streams the file,
6
- * filters to human-readable content (user + assistant messages), summarizes
7
- * tool calls, and truncates to ~50K chars max.
8
- *
9
- * Usage:
10
- * bun transcript-loader.ts <jsonl-path>
11
- * bun transcript-loader.ts <jsonl-path> --lines=46-120
12
- */
13
-
14
- import { createReadStream } from "fs";
15
- import { createInterface } from "readline";
16
- import { basename } from "path";
17
- import { MAX_LOADER_CHARS, type LoadedSegment } from "./types.js";
18
- import { logInfo, logWarn, logError } from "./logger.js";
19
-
20
- const HOOK_NAME = "rlm_loader";
21
-
22
- // ---------------------------------------------------------------------------
23
- // CLI entry
24
- // ---------------------------------------------------------------------------
25
-
26
- const args = process.argv.slice(2);
27
- const jsonlPath = args.find((a) => !a.startsWith("--"));
28
- const linesArg = args.find((a) => a.startsWith("--lines="));
29
- let lineRange: [number, number] | null = null;
30
- if (linesArg) {
31
- const [start, end] = linesArg.split("=")[1].split("-").map(Number);
32
- if (!isNaN(start) && !isNaN(end) && start >= 1 && end >= start) {
33
- lineRange = [start, end];
34
- }
35
- }
36
-
37
- if (jsonlPath && !process.env.RLM_LIB_MODE) {
38
- loadTranscript(jsonlPath, lineRange)
39
- .then((seg) => {
40
- process.stdout.write(seg.content);
41
- if (seg.truncated) {
42
- logInfo(HOOK_NAME, "Output truncated at 50K chars", { stderr: true });
43
- }
44
- })
45
- .catch((e) => {
46
- logError(HOOK_NAME, `Load failed: ${e}`, { stderr: true });
47
- process.exitCode = 1;
48
- });
49
- }
50
-
51
- // ---------------------------------------------------------------------------
52
- // Loader
53
- // ---------------------------------------------------------------------------
54
-
55
- async function loadTranscript(
56
- filePath: string,
57
- range: [number, number] | null = null,
58
- maxChars: number = MAX_LOADER_CHARS,
59
- ): Promise<LoadedSegment> {
60
- const parts: string[] = [];
61
- let totalChars = 0;
62
- let truncated = false;
63
- let lineNum = 0;
64
- let sessionId = "";
65
- let project = "";
66
-
67
- const rl = createInterface({
68
- input: createReadStream(filePath, { encoding: "utf-8" }),
69
- crlfDelay: Infinity,
70
- });
71
-
72
- try {
73
- for await (const line of rl) {
74
- lineNum++;
75
-
76
- // Skip lines outside range
77
- if (range) {
78
- if (lineNum < range[0]) continue;
79
- if (lineNum > range[1]) break;
80
- }
81
-
82
- if (!line.trim()) continue;
83
-
84
- let obj: Record<string, unknown>;
85
- try {
86
- obj = JSON.parse(line);
87
- } catch {
88
- continue;
89
- }
90
-
91
- // Capture session metadata
92
- if (!sessionId && obj.sessionId) {
93
- sessionId = obj.sessionId as string;
94
- }
95
-
96
- const type = obj.type as string | undefined;
97
- const timestamp = obj.timestamp as string | undefined;
98
-
99
- if (type === "user") {
100
- const msg = obj.message as Record<string, unknown> | undefined;
101
- if (!msg) continue;
102
- const content = extractContent(msg);
103
- if (!content) continue;
104
-
105
- const formatted = formatMessage("USER", timestamp, content);
106
- if (totalChars + formatted.length > maxChars) {
107
- truncated = true;
108
- break;
109
- }
110
- parts.push(formatted);
111
- totalChars += formatted.length;
112
- } else if (type === "assistant") {
113
- const msg = obj.message as Record<string, unknown> | undefined;
114
- if (!msg) continue;
115
- const { text, toolUses } = extractAssistantContent(msg);
116
-
117
- if (text || toolUses.length > 0) {
118
- const formatted = formatAssistantMessage(timestamp, text, toolUses);
119
- if (totalChars + formatted.length > maxChars) {
120
- truncated = true;
121
- // Add what we can
122
- const remaining = maxChars - totalChars;
123
- if (remaining > 100) {
124
- parts.push(formatted.slice(0, remaining) + "\n... [truncated]");
125
- }
126
- break;
127
- }
128
- parts.push(formatted);
129
- totalChars += formatted.length;
130
- }
131
- }
132
- }
133
- } finally {
134
- rl.close();
135
- }
136
-
137
- // Derive project from path
138
- const pathParts = filePath.replace(/\\/g, "/").split("/");
139
- const projectsIdx = pathParts.indexOf("projects");
140
- if (projectsIdx >= 0 && projectsIdx + 1 < pathParts.length) {
141
- project = pathParts[projectsIdx + 1];
142
- }
143
-
144
- return {
145
- session_id: sessionId || basename(filePath, ".jsonl"),
146
- project,
147
- line_range: range,
148
- content: parts.join("\n\n"),
149
- truncated,
150
- };
151
- }
152
-
153
- // ---------------------------------------------------------------------------
154
- // Content extraction
155
- // ---------------------------------------------------------------------------
156
-
157
- function extractContent(msg: Record<string, unknown>): string | null {
158
- const content = msg.content;
159
- if (typeof content === "string") return content;
160
- if (Array.isArray(content)) {
161
- const texts: string[] = [];
162
- for (const block of content) {
163
- if (typeof block === "string") {
164
- texts.push(block);
165
- } else if (typeof block === "object" && block !== null) {
166
- const b = block as Record<string, unknown>;
167
- if (b.type === "text" && typeof b.text === "string") {
168
- texts.push(b.text);
169
- }
170
- // tool_result blocks — include short text content
171
- if (b.type === "tool_result" && typeof b.content === "string") {
172
- texts.push(`[Tool result: ${b.content.slice(0, 200)}]`);
173
- }
174
- }
175
- }
176
- return texts.length > 0 ? texts.join("\n") : null;
177
- }
178
- return null;
179
- }
180
-
181
- interface ToolUse {
182
- name: string;
183
- inputSummary: string;
184
- }
185
-
186
- function extractAssistantContent(msg: Record<string, unknown>): {
187
- text: string;
188
- toolUses: ToolUse[];
189
- } {
190
- const content = msg.content;
191
- let text = "";
192
- const toolUses: ToolUse[] = [];
193
-
194
- if (typeof content === "string") {
195
- text = content;
196
- } else if (Array.isArray(content)) {
197
- const texts: string[] = [];
198
- for (const block of content) {
199
- if (typeof block !== "object" || block === null) continue;
200
- const b = block as Record<string, unknown>;
201
- if (b.type === "text" && typeof b.text === "string") {
202
- texts.push(b.text);
203
- }
204
- if (b.type === "tool_use") {
205
- const name = (b.name as string) || "unknown";
206
- const input = b.input as Record<string, unknown> | undefined;
207
- toolUses.push({
208
- name,
209
- inputSummary: summarizeToolInput(name, input),
210
- });
211
- }
212
- }
213
- text = texts.join("\n");
214
- }
215
-
216
- return { text, toolUses };
217
- }
218
-
219
- function summarizeToolInput(toolName: string, input?: Record<string, unknown>): string {
220
- if (!input) return "";
221
- switch (toolName) {
222
- case "Read":
223
- return input.file_path ? `${input.file_path}` : "";
224
- case "Write":
225
- return input.file_path ? `${input.file_path}` : "";
226
- case "Edit":
227
- return input.file_path ? `${input.file_path}` : "";
228
- case "Bash":
229
- return input.command ? `${(input.command as string).slice(0, 80)}` : "";
230
- case "Glob":
231
- return input.pattern ? `${input.pattern}` : "";
232
- case "Grep":
233
- return input.pattern ? `/${input.pattern}/` : "";
234
- case "Task":
235
- return input.description ? `${input.description}` : "";
236
- case "WebSearch":
237
- return input.query ? `"${input.query}"` : "";
238
- case "WebFetch":
239
- return input.url ? `${input.url}` : "";
240
- default:
241
- return Object.keys(input).slice(0, 3).join(", ");
242
- }
243
- }
244
-
245
- // ---------------------------------------------------------------------------
246
- // Formatting
247
- // ---------------------------------------------------------------------------
248
-
249
- function formatMessage(role: string, timestamp: string | undefined, content: string): string {
250
- const ts = timestamp ? `[${timestamp}]` : "";
251
- return `--- ${role} ${ts} ---\n${content}`;
252
- }
253
-
254
- function formatAssistantMessage(
255
- timestamp: string | undefined,
256
- text: string,
257
- toolUses: ToolUse[],
258
- ): string {
259
- const ts = timestamp ? `[${timestamp}]` : "";
260
- const parts: string[] = [`--- ASSISTANT ${ts} ---`];
261
-
262
- if (text) {
263
- parts.push(text);
264
- }
265
-
266
- if (toolUses.length > 0) {
267
- const toolLines = toolUses.map(
268
- (t) => ` -> ${t.name}${t.inputSummary ? `: ${t.inputSummary}` : ""}`
269
- );
270
- parts.push("Tools used:\n" + toolLines.join("\n"));
271
- }
272
-
273
- return parts.join("\n");
274
- }
275
-
276
- // ---------------------------------------------------------------------------
277
- // Exports
278
- // ---------------------------------------------------------------------------
279
-
280
- export { loadTranscript };
1
+ #!/usr/bin/env bun
2
+ /**
3
+ * TranscriptLoader — Loads and formats transcript segments for deep reading.
4
+ *
5
+ * Given a session JSONL file path + optional line range, streams the file,
6
+ * filters to human-readable content (user + assistant messages), summarizes
7
+ * tool calls, and truncates to ~50K chars max.
8
+ *
9
+ * Usage:
10
+ * bun transcript-loader.ts <jsonl-path>
11
+ * bun transcript-loader.ts <jsonl-path> --lines=46-120
12
+ */
13
+
14
+ import { createReadStream } from "fs";
15
+ import { createInterface } from "readline";
16
+ import { basename } from "path";
17
+ import { MAX_LOADER_CHARS, type LoadedSegment } from "./types.js";
18
+ import { logInfo, logWarn, logError } from "./logger.js";
19
+
20
+ const HOOK_NAME = "rlm_loader";
21
+
22
+ // ---------------------------------------------------------------------------
23
+ // CLI entry
24
+ // ---------------------------------------------------------------------------
25
+
26
+ const args = process.argv.slice(2);
27
+ const jsonlPath = args.find((a) => !a.startsWith("--"));
28
+ const linesArg = args.find((a) => a.startsWith("--lines="));
29
+ let lineRange: [number, number] | null = null;
30
+ if (linesArg) {
31
+ const [start, end] = linesArg.split("=")[1].split("-").map(Number);
32
+ if (!isNaN(start) && !isNaN(end) && start >= 1 && end >= start) {
33
+ lineRange = [start, end];
34
+ }
35
+ }
36
+
37
+ if (jsonlPath && !process.env.RLM_LIB_MODE) {
38
+ loadTranscript(jsonlPath, lineRange)
39
+ .then((seg) => {
40
+ process.stdout.write(seg.content);
41
+ if (seg.truncated) {
42
+ logInfo(HOOK_NAME, "Output truncated at 50K chars", { stderr: true });
43
+ }
44
+ })
45
+ .catch((e) => {
46
+ logError(HOOK_NAME, `Load failed: ${e}`, { stderr: true });
47
+ process.exitCode = 1;
48
+ });
49
+ }
50
+
51
+ // ---------------------------------------------------------------------------
52
+ // Loader
53
+ // ---------------------------------------------------------------------------
54
+
55
+ async function loadTranscript(
56
+ filePath: string,
57
+ range: [number, number] | null = null,
58
+ maxChars: number = MAX_LOADER_CHARS,
59
+ ): Promise<LoadedSegment> {
60
+ const parts: string[] = [];
61
+ let totalChars = 0;
62
+ let truncated = false;
63
+ let lineNum = 0;
64
+ let sessionId = "";
65
+ let project = "";
66
+
67
+ const rl = createInterface({
68
+ input: createReadStream(filePath, { encoding: "utf-8" }),
69
+ crlfDelay: Infinity,
70
+ });
71
+
72
+ try {
73
+ for await (const line of rl) {
74
+ lineNum++;
75
+
76
+ // Skip lines outside range
77
+ if (range) {
78
+ if (lineNum < range[0]) continue;
79
+ if (lineNum > range[1]) break;
80
+ }
81
+
82
+ if (!line.trim()) continue;
83
+
84
+ let obj: Record<string, unknown>;
85
+ try {
86
+ obj = JSON.parse(line);
87
+ } catch {
88
+ continue;
89
+ }
90
+
91
+ // Capture session metadata
92
+ if (!sessionId && obj.sessionId) {
93
+ sessionId = obj.sessionId as string;
94
+ }
95
+
96
+ const type = obj.type as string | undefined;
97
+ const timestamp = obj.timestamp as string | undefined;
98
+
99
+ if (type === "user") {
100
+ const msg = obj.message as Record<string, unknown> | undefined;
101
+ if (!msg) continue;
102
+ const content = extractContent(msg);
103
+ if (!content) continue;
104
+
105
+ const formatted = formatMessage("USER", timestamp, content);
106
+ if (totalChars + formatted.length > maxChars) {
107
+ truncated = true;
108
+ break;
109
+ }
110
+ parts.push(formatted);
111
+ totalChars += formatted.length;
112
+ } else if (type === "assistant") {
113
+ const msg = obj.message as Record<string, unknown> | undefined;
114
+ if (!msg) continue;
115
+ const { text, toolUses } = extractAssistantContent(msg);
116
+
117
+ if (text || toolUses.length > 0) {
118
+ const formatted = formatAssistantMessage(timestamp, text, toolUses);
119
+ if (totalChars + formatted.length > maxChars) {
120
+ truncated = true;
121
+ // Add what we can
122
+ const remaining = maxChars - totalChars;
123
+ if (remaining > 100) {
124
+ parts.push(formatted.slice(0, remaining) + "\n... [truncated]");
125
+ }
126
+ break;
127
+ }
128
+ parts.push(formatted);
129
+ totalChars += formatted.length;
130
+ }
131
+ }
132
+ }
133
+ } finally {
134
+ rl.close();
135
+ }
136
+
137
+ // Derive project from path
138
+ const pathParts = filePath.replace(/\\/g, "/").split("/");
139
+ const projectsIdx = pathParts.indexOf("projects");
140
+ if (projectsIdx >= 0 && projectsIdx + 1 < pathParts.length) {
141
+ project = pathParts[projectsIdx + 1];
142
+ }
143
+
144
+ return {
145
+ session_id: sessionId || basename(filePath, ".jsonl"),
146
+ project,
147
+ line_range: range,
148
+ content: parts.join("\n\n"),
149
+ truncated,
150
+ };
151
+ }
152
+
153
+ // ---------------------------------------------------------------------------
154
+ // Content extraction
155
+ // ---------------------------------------------------------------------------
156
+
157
+ function extractContent(msg: Record<string, unknown>): string | null {
158
+ const content = msg.content;
159
+ if (typeof content === "string") return content;
160
+ if (Array.isArray(content)) {
161
+ const texts: string[] = [];
162
+ for (const block of content) {
163
+ if (typeof block === "string") {
164
+ texts.push(block);
165
+ } else if (typeof block === "object" && block !== null) {
166
+ const b = block as Record<string, unknown>;
167
+ if (b.type === "text" && typeof b.text === "string") {
168
+ texts.push(b.text);
169
+ }
170
+ // tool_result blocks — include short text content
171
+ if (b.type === "tool_result" && typeof b.content === "string") {
172
+ texts.push(`[Tool result: ${b.content.slice(0, 200)}]`);
173
+ }
174
+ }
175
+ }
176
+ return texts.length > 0 ? texts.join("\n") : null;
177
+ }
178
+ return null;
179
+ }
180
+
181
+ interface ToolUse {
182
+ name: string;
183
+ inputSummary: string;
184
+ }
185
+
186
+ function extractAssistantContent(msg: Record<string, unknown>): {
187
+ text: string;
188
+ toolUses: ToolUse[];
189
+ } {
190
+ const content = msg.content;
191
+ let text = "";
192
+ const toolUses: ToolUse[] = [];
193
+
194
+ if (typeof content === "string") {
195
+ text = content;
196
+ } else if (Array.isArray(content)) {
197
+ const texts: string[] = [];
198
+ for (const block of content) {
199
+ if (typeof block !== "object" || block === null) continue;
200
+ const b = block as Record<string, unknown>;
201
+ if (b.type === "text" && typeof b.text === "string") {
202
+ texts.push(b.text);
203
+ }
204
+ if (b.type === "tool_use") {
205
+ const name = (b.name as string) || "unknown";
206
+ const input = b.input as Record<string, unknown> | undefined;
207
+ toolUses.push({
208
+ name,
209
+ inputSummary: summarizeToolInput(name, input),
210
+ });
211
+ }
212
+ }
213
+ text = texts.join("\n");
214
+ }
215
+
216
+ return { text, toolUses };
217
+ }
218
+
219
+ function summarizeToolInput(toolName: string, input?: Record<string, unknown>): string {
220
+ if (!input) return "";
221
+ switch (toolName) {
222
+ case "Read":
223
+ return input.file_path ? `${input.file_path}` : "";
224
+ case "Write":
225
+ return input.file_path ? `${input.file_path}` : "";
226
+ case "Edit":
227
+ return input.file_path ? `${input.file_path}` : "";
228
+ case "Bash":
229
+ return input.command ? `${(input.command as string).slice(0, 80)}` : "";
230
+ case "Glob":
231
+ return input.pattern ? `${input.pattern}` : "";
232
+ case "Grep":
233
+ return input.pattern ? `/${input.pattern}/` : "";
234
+ case "Task":
235
+ return input.description ? `${input.description}` : "";
236
+ case "WebSearch":
237
+ return input.query ? `"${input.query}"` : "";
238
+ case "WebFetch":
239
+ return input.url ? `${input.url}` : "";
240
+ default:
241
+ return Object.keys(input).slice(0, 3).join(", ");
242
+ }
243
+ }
244
+
245
+ // ---------------------------------------------------------------------------
246
+ // Formatting
247
+ // ---------------------------------------------------------------------------
248
+
249
+ function formatMessage(role: string, timestamp: string | undefined, content: string): string {
250
+ const ts = timestamp ? `[${timestamp}]` : "";
251
+ return `--- ${role} ${ts} ---\n${content}`;
252
+ }
253
+
254
+ function formatAssistantMessage(
255
+ timestamp: string | undefined,
256
+ text: string,
257
+ toolUses: ToolUse[],
258
+ ): string {
259
+ const ts = timestamp ? `[${timestamp}]` : "";
260
+ const parts: string[] = [`--- ASSISTANT ${ts} ---`];
261
+
262
+ if (text) {
263
+ parts.push(text);
264
+ }
265
+
266
+ if (toolUses.length > 0) {
267
+ const toolLines = toolUses.map(
268
+ (t) => ` -> ${t.name}${t.inputSummary ? `: ${t.inputSummary}` : ""}`
269
+ );
270
+ parts.push("Tools used:\n" + toolLines.join("\n"));
271
+ }
272
+
273
+ return parts.join("\n");
274
+ }
275
+
276
+ // ---------------------------------------------------------------------------
277
+ // Exports
278
+ // ---------------------------------------------------------------------------
279
+
280
+ export { loadTranscript };