@namzu/cli 25.0.0 → 25.1.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.
Files changed (63) hide show
  1. package/CHANGELOG.md +282 -0
  2. package/dist/context/doctrine.d.ts +4 -2
  3. package/dist/context/doctrine.d.ts.map +1 -1
  4. package/dist/context/doctrine.js +4 -2
  5. package/dist/context/doctrine.js.map +1 -1
  6. package/dist/context/runtime-message.d.ts.map +1 -1
  7. package/dist/context/runtime-message.js +4 -0
  8. package/dist/context/runtime-message.js.map +1 -1
  9. package/dist/integrations/mcp/servers.d.ts +30 -0
  10. package/dist/integrations/mcp/servers.d.ts.map +1 -1
  11. package/dist/integrations/mcp/servers.js +32 -1
  12. package/dist/integrations/mcp/servers.js.map +1 -1
  13. package/dist/integrations/subagents/activity.d.ts +285 -11
  14. package/dist/integrations/subagents/activity.d.ts.map +1 -1
  15. package/dist/integrations/subagents/activity.js +334 -31
  16. package/dist/integrations/subagents/activity.js.map +1 -1
  17. package/dist/integrations/subagents/replay.d.ts +46 -0
  18. package/dist/integrations/subagents/replay.d.ts.map +1 -0
  19. package/dist/integrations/subagents/replay.js +193 -0
  20. package/dist/integrations/subagents/replay.js.map +1 -0
  21. package/dist/integrations/subagents/runs.d.ts +72 -0
  22. package/dist/integrations/subagents/runs.d.ts.map +1 -0
  23. package/dist/integrations/subagents/runs.js +155 -0
  24. package/dist/integrations/subagents/runs.js.map +1 -0
  25. package/dist/integrations/subagents/runtime.d.ts +21 -0
  26. package/dist/integrations/subagents/runtime.d.ts.map +1 -1
  27. package/dist/integrations/subagents/runtime.js +121 -2
  28. package/dist/integrations/subagents/runtime.js.map +1 -1
  29. package/dist/tui/AgentExplorer.d.ts +46 -2
  30. package/dist/tui/AgentExplorer.d.ts.map +1 -1
  31. package/dist/tui/AgentExplorer.js +261 -22
  32. package/dist/tui/AgentExplorer.js.map +1 -1
  33. package/dist/tui/App.d.ts.map +1 -1
  34. package/dist/tui/App.js +458 -32
  35. package/dist/tui/App.js.map +1 -1
  36. package/dist/tui/ChoicePicker.d.ts +2 -0
  37. package/dist/tui/ChoicePicker.d.ts.map +1 -1
  38. package/dist/tui/ChoicePicker.js +3 -1
  39. package/dist/tui/ChoicePicker.js.map +1 -1
  40. package/dist/tui/Composer.d.ts +10 -7
  41. package/dist/tui/Composer.d.ts.map +1 -1
  42. package/dist/tui/Composer.js +2 -7
  43. package/dist/tui/Composer.js.map +1 -1
  44. package/dist/tui/StatusBar.d.ts +56 -10
  45. package/dist/tui/StatusBar.d.ts.map +1 -1
  46. package/dist/tui/StatusBar.js +106 -35
  47. package/dist/tui/StatusBar.js.map +1 -1
  48. package/dist/tui/agent.d.ts +38 -1
  49. package/dist/tui/agent.d.ts.map +1 -1
  50. package/dist/tui/agent.js +78 -10
  51. package/dist/tui/agent.js.map +1 -1
  52. package/dist/tui/choice-selection.d.ts +3 -1
  53. package/dist/tui/choice-selection.d.ts.map +1 -1
  54. package/dist/tui/choice-selection.js +2 -2
  55. package/dist/tui/choice-selection.js.map +1 -1
  56. package/dist/tui/permission-review.d.ts.map +1 -1
  57. package/dist/tui/permission-review.js +14 -2
  58. package/dist/tui/permission-review.js.map +1 -1
  59. package/dist/tui/slashCommands.d.ts +40 -0
  60. package/dist/tui/slashCommands.d.ts.map +1 -1
  61. package/dist/tui/slashCommands.js +62 -3
  62. package/dist/tui/slashCommands.js.map +1 -1
  63. package/package.json +3 -3
@@ -1,9 +1,38 @@
1
1
  import { type RunEvent, type TaskHandle } from '@namzu/sdk';
2
2
  export declare const MAX_AGENT_ACTIVITY_LABEL_CODE_UNITS = 240;
3
3
  export declare const MAX_AGENT_PHASE_ORDER = 10000;
4
+ /**
5
+ * Longest narration line kept. One line of commentary, not a message: a
6
+ * parent that writes a paragraph gets it clipped with the same marker every
7
+ * other retained label here carries.
8
+ */
9
+ export declare const MAX_NARRATION_CODE_UNITS = 200;
10
+ /**
11
+ * Narration lines retained at once, oldest dropped first.
12
+ *
13
+ * Small deliberately. The lines render in the most valuable rows on the
14
+ * screen — between the composer footer and the agent rail — so a parent that
15
+ * keeps talking must cost the operator a FIXED number of rows rather than a
16
+ * growing one. Raising this trades conversation for commentary.
17
+ */
18
+ export declare const MAX_RETAINED_NARRATION = 3;
19
+ /**
20
+ * Appended to a replayed transcript whose saved records could not all be
21
+ * read, so a short transcript is never mistaken for a short run. Said in the
22
+ * transcript itself rather than only in a header, because the rows are what
23
+ * an operator reads as the whole of what happened.
24
+ */
25
+ export declare const PARTIAL_EVIDENCE_NOTICE = "Saved transcript is damaged or truncated; this replay shows only the records that could be read.";
4
26
  export declare const DEFAULT_AGENT_WORKFLOW = "Delegated work";
5
27
  export declare const DEFAULT_AGENT_PHASE = "Work";
6
28
  export type SubagentActivityStatus = 'starting' | 'queued' | 'working' | 'completed' | 'failed' | 'cancelled';
29
+ /**
30
+ * Only value produced today: a correction or context queued with
31
+ * `send_message`, delivered into a running child. Named for the receiving
32
+ * surface's point of view — the child received it — so the glyph each
33
+ * renderer picks stays unambiguous without re-reading the row's text.
34
+ */
35
+ export type SubagentMessageDirection = 'to-child';
7
36
  export type SubagentTranscriptRow = {
8
37
  readonly id: string;
9
38
  readonly kind: 'assistant';
@@ -18,6 +47,12 @@ export type SubagentTranscriptRow = {
18
47
  readonly id: string;
19
48
  readonly kind: 'system';
20
49
  readonly text: string;
50
+ /**
51
+ * Set only for a delivered `send_message`; absent for every other
52
+ * system row (agent_failed, run_failed, the settle fallback), which
53
+ * render as before.
54
+ */
55
+ readonly direction?: SubagentMessageDirection;
21
56
  };
22
57
  export interface SubagentActivity {
23
58
  /** Stable for this screen even before the scheduler returns a task id. */
@@ -25,6 +60,17 @@ export interface SubagentActivity {
25
60
  readonly taskId?: string;
26
61
  readonly runId?: string;
27
62
  readonly agentId: string;
63
+ /** The resolved child model, when a host supplied one at launch. */
64
+ readonly model?: string;
65
+ /**
66
+ * Cumulative spend from the child's latest `token_usage_updated` event —
67
+ * never `contextTokens`, which shrinks on compaction and answers a
68
+ * different question. Absent means this child has not reported usage
69
+ * yet, which is a distinct fact from having spent zero.
70
+ */
71
+ readonly tokens?: number;
72
+ /** Tool executions started so far, counted once per execution. */
73
+ readonly toolCalls?: number;
28
74
  readonly description: string;
29
75
  readonly prompt: string;
30
76
  /** Direct tool batch that launched this concurrent sibling cohort. */
@@ -40,19 +86,146 @@ export interface SubagentActivity {
40
86
  readonly workflow: string;
41
87
  readonly phase: string;
42
88
  readonly phaseOrder?: number;
89
+ /** Detail text the first agent to declare this phase supplied; later siblings never change it. */
90
+ readonly phaseDetail?: string;
43
91
  readonly phaseSequence: number;
44
92
  readonly status: SubagentActivityStatus;
45
93
  readonly startedAt: number;
46
94
  readonly completedAt?: number;
47
95
  readonly latestActivity?: string;
48
96
  readonly transcript: readonly SubagentTranscriptRow[];
97
+ /**
98
+ * This row was rebuilt from evidence a finished child left on disk, not
99
+ * projected from a child running in this process.
100
+ *
101
+ * Absent means live. It is on the record rather than inferred from
102
+ * `status` because the two answer different questions: a terminal status
103
+ * says the work ended, while this says nothing is attached to it any
104
+ * more — no task id the scheduler still knows, no stream, nothing a
105
+ * message or a cancellation could reach. Every surface that offers to act
106
+ * on a child reads this first, and the transcript says so on screen.
107
+ */
108
+ readonly replayed?: boolean;
109
+ }
110
+ /**
111
+ * One line of commentary the PARENT wrote about the work it is coordinating.
112
+ *
113
+ * Parent-authored is the whole design, not an implementation detail. A line a
114
+ * child emitted and this host rendered as the run's own voice would be
115
+ * untrusted text presented as trusted narration — the injection shape the
116
+ * coordinator's untrusted-output wrapping exists to prevent. Nothing here
117
+ * takes a line from a child: the tool that writes these is registered on the
118
+ * parent's registry only, exactly like `send_message`, and a child's roster is
119
+ * built from the host's own `buildTools()` which never carries it. If child
120
+ * narration is ever wanted it goes through that same wrapping and is
121
+ * attributed to the child by name.
122
+ *
123
+ * Commentary carries no status meaning. Nothing reads it back, no surface
124
+ * derives state from it, and a run with none looks exactly as it did before
125
+ * this existed.
126
+ */
127
+ export interface SubagentNarrationLine {
128
+ /** Stable key for a renderer; unique for the life of this monitor. */
129
+ readonly id: string;
130
+ readonly text: string;
131
+ readonly at: number;
49
132
  }
133
+ /**
134
+ * What {@link SubagentActivityMonitor.narrate} did with a line.
135
+ *
136
+ * Three cases rather than a line-or-nothing answer, because the two ways
137
+ * nothing is kept are not the same thing to whoever wrote the line: `empty`
138
+ * is a line with nothing in it, which the writer can fix by writing another
139
+ * one, and `closed` is a monitor that has stopped showing anything at all,
140
+ * which no further line will reach. Reporting the second as the first tells
141
+ * the writer to correct text that was never the problem.
142
+ */
143
+ export type SubagentNarrationOutcome = {
144
+ readonly kind: 'shown';
145
+ readonly line: SubagentNarrationLine;
146
+ } | {
147
+ readonly kind: 'empty';
148
+ } | {
149
+ readonly kind: 'closed';
150
+ };
50
151
  /** Read-only side of the current CLI session's child-run monitor. */
51
152
  export interface SubagentActivitySource {
52
153
  getSnapshot(): readonly SubagentActivity[];
53
154
  subscribe(listener: () => void): () => void;
54
155
  /** Start a new conversation scope; late events from the old one are ignored. */
55
156
  reset(): void;
157
+ /**
158
+ * Bounded parent-authored commentary, oldest first.
159
+ *
160
+ * Optional because this is an ADDITIONAL projection over the same monitor,
161
+ * not part of what makes a source one: a host that publishes child rows and
162
+ * writes no commentary is complete without it, and absent reads as "no
163
+ * narration" at every call site.
164
+ */
165
+ getNarration?(): readonly SubagentNarrationLine[];
166
+ }
167
+ /**
168
+ * The display grouping one delegation carries. Supplied at `begin()` and
169
+ * again on the child's `agent_pending` event, which is the copy that leaves
170
+ * this process; both name the same thing, and the monitor keeps the `begin()`
171
+ * values as the seed so a child that fails before the event ever arrives still
172
+ * groups where the operator saw it launch.
173
+ *
174
+ * Display-only, exactly as the `Agent` tool's schema says: these create no
175
+ * dependencies, barriers or serial execution. Phase IDENTITY stays
176
+ * monitor-owned (`phaseId`) and is never one of these labels.
177
+ */
178
+ export interface SubagentDisplayLabels {
179
+ readonly workflow?: string;
180
+ readonly phase?: string;
181
+ readonly phaseOrder?: number;
182
+ readonly phaseDetail?: string;
183
+ }
184
+ /** What a host knows about a child at launch, before any event has arrived. */
185
+ export interface BeginSubagentInput {
186
+ readonly agentId: string;
187
+ readonly model?: string;
188
+ readonly description: string;
189
+ readonly prompt: string;
190
+ readonly batchId?: string;
191
+ readonly toolUseId?: string;
192
+ readonly workflowId?: string;
193
+ readonly workflow?: string;
194
+ readonly phase?: string;
195
+ readonly phaseOrder?: number;
196
+ readonly phaseDetail?: string;
197
+ }
198
+ /**
199
+ * What a child's saved `run.json` supplies to
200
+ * {@link SubagentActivityMonitor.replay}, beside its transcript.
201
+ *
202
+ * Every field except `agentId` and `description` is optional, because
203
+ * `run.json` is written on a run's terminal path: a child killed before it
204
+ * got there leaves a transcript worth opening and a record that never
205
+ * recorded an ending. Absent is "the file did not say", and the projection
206
+ * keeps whatever the events established rather than substituting a zero.
207
+ */
208
+ export interface ReplaySubagentInput {
209
+ readonly agentId: string;
210
+ readonly model?: string;
211
+ readonly description: string;
212
+ /**
213
+ * The child's instructions, when the caller has them.
214
+ *
215
+ * Defaults to empty rather than to invented text. A child's prompt is in
216
+ * its message snapshot, not in its durable event log, and reading a whole
217
+ * `messages.json` to recover one line is a cost this view does not pay.
218
+ */
219
+ readonly prompt?: string;
220
+ readonly runId?: string;
221
+ readonly batchId?: string;
222
+ readonly workflowId?: string;
223
+ readonly status?: SubagentActivityStatus;
224
+ readonly tokens?: number;
225
+ readonly startedAt?: number;
226
+ readonly completedAt?: number;
227
+ /** Some records in the saved transcript could not be read. */
228
+ readonly partial?: boolean;
56
229
  }
57
230
  export interface SubagentActivityTracker {
58
231
  readonly onEvent: (event: RunEvent) => void;
@@ -65,30 +238,131 @@ export interface SubagentActivityTracker {
65
238
  * deltas can be arbitrarily large and the parent TUI must not inherit them.
66
239
  */
67
240
  export declare class SubagentActivityMonitor implements SubagentActivitySource {
241
+ private readonly options;
68
242
  private readonly records;
69
243
  private readonly listeners;
244
+ /** Bounded parent commentary, oldest first. See {@link SubagentNarrationLine}. */
245
+ private readonly narration;
246
+ private narrationCounter;
70
247
  private epoch;
71
248
  private counter;
72
249
  private fallbackBatchCounter;
73
250
  private phaseCounter;
251
+ private messageCounter;
74
252
  private readonly phases;
75
253
  private notifyTimer;
76
254
  private closed;
77
- begin(input: {
78
- readonly agentId: string;
79
- readonly description: string;
80
- readonly prompt: string;
81
- readonly batchId?: string;
82
- readonly toolUseId?: string;
83
- readonly workflowId?: string;
84
- readonly workflow?: string;
85
- readonly phase?: string;
86
- readonly phaseOrder?: number;
87
- }): SubagentActivityTracker;
255
+ /**
256
+ * `replay: true` seeds this monitor from saved evidence instead of a live
257
+ * child stream. Two things change and nothing else: notifications stop
258
+ * coalescing on a timer (there is no stream to coalesce, and a replay
259
+ * monitor is read once by whoever built it), and every row it publishes is
260
+ * marked {@link SubagentActivity.replayed}. The projection, the grouping
261
+ * and every bound are the ones the live path uses.
262
+ */
263
+ constructor(options?: {
264
+ readonly replay?: boolean;
265
+ });
266
+ begin(input: BeginSubagentInput): SubagentActivityTracker;
267
+ /**
268
+ * `begin()`, plus the record it opened.
269
+ *
270
+ * Split out for {@link SubagentActivityMonitor.replay}, which has to reach
271
+ * the record after the events are in to write the facts `run.json` holds
272
+ * and the transcript does not. Nothing else needs it, and nothing outside
273
+ * this class gets it: a caller holding a `MutableActivity` could edit
274
+ * around every bound this file enforces.
275
+ */
276
+ private open;
277
+ /**
278
+ * Rebuilds one finished child from the evidence it left on disk, and
279
+ * retains it here like any other row.
280
+ *
281
+ * The load-bearing line is the `tracker.onEvent` loop: saved events go
282
+ * through the SAME entry point a live child's events do, so the cockpit
283
+ * cannot drift from a replay. There is no second projection to keep in
284
+ * step, and a field added to the live path appears here for free.
285
+ *
286
+ * What the events cannot supply, the caller passes from `run.json`, and it
287
+ * is written AFTER the loop because the file is the authority on the two
288
+ * facts a child's own transcript never records: a child's delegation
289
+ * outcome and its final totals are reported on the PARENT's event stream,
290
+ * which does not enter the child's log. Without this the replay would end
291
+ * on whatever the last durable event said and show a finished child as
292
+ * still working.
293
+ *
294
+ * Only meaningful on a monitor constructed with `replay: true`; on a live
295
+ * one it would publish a saved row as though a child were attached to it.
296
+ */
297
+ replay(input: ReplaySubagentInput, events: Iterable<RunEvent>): SubagentActivity;
298
+ /**
299
+ * Pushes a bounded system row recording a message delivered into a
300
+ * running child, through the same `pushRow` path every other transcript
301
+ * row uses. Callers own delivery: this only records that it happened, so
302
+ * it must run after the send it announces has actually succeeded — a
303
+ * refused or unowned send must never call this. A `taskId` with no
304
+ * matching record (already pruned, or never tracked) is a silent no-op:
305
+ * there is no row left to explain what was sent.
306
+ */
307
+ recordMessage(taskId: string, text: string, direction: SubagentMessageDirection): void;
308
+ /**
309
+ * Retains one line of PARENT-authored commentary for the rail to show.
310
+ *
311
+ * Callers are the parent's own tool call and nothing else — see
312
+ * {@link SubagentNarrationLine} for why that boundary is the design rather
313
+ * than a detail. Blank or control-only text is dropped instead of retained,
314
+ * so a row is never spent on a line with nothing in it, and the answer
315
+ * names which of the two things happened — see
316
+ * {@link SubagentNarrationOutcome}.
317
+ *
318
+ * Independent of the child records: narration is commentary, so it neither
319
+ * needs a child to attach to nor disappears when the last one settles —
320
+ * which is exactly when a line explaining what happens next is worth most.
321
+ */
322
+ narrate(text: string): SubagentNarrationOutcome;
323
+ getNarration(): readonly SubagentNarrationLine[];
88
324
  getSnapshot(): readonly SubagentActivity[];
325
+ /** One record as the frozen, bounded shape every surface reads. */
326
+ private project;
89
327
  subscribe(listener: () => void): () => void;
90
328
  reset(): void;
91
329
  close(): void;
330
+ /**
331
+ * Resolves display labels to this monitor's grouping identities.
332
+ *
333
+ * Phase identity is allocated here and only here, first-writer-wins per
334
+ * `[workflowGroupId, phase]`: the first agent to name a phase fixes its
335
+ * id, its display order and its detail text, and a later sibling that
336
+ * disagrees joins the phase rather than changing it. That is what keeps a
337
+ * pane from flickering between two wordings of the same stage, and it is
338
+ * also why calling this twice for one agent with the same labels is
339
+ * exactly a no-op — the second call finds the definition the first made.
340
+ *
341
+ * Definitions live for the conversation: `reset()` and `dispose()` clear
342
+ * them and nothing prunes them in between, so the map holds one entry per
343
+ * distinct `[workflowGroupId, phase]` anything has named. A host that
344
+ * labels one child differently at `begin()` and on its event defines two of
345
+ * them; the size follows how many wordings a host invents, not how long the
346
+ * session runs.
347
+ */
348
+ private group;
349
+ /**
350
+ * Re-reads the grouping from the labels the child's own `agent_pending`
351
+ * carried.
352
+ *
353
+ * The event is the copy that leaves this process, so a host that supplies
354
+ * labels there and nowhere else still gets grouped. The `begin()` values
355
+ * stay the seed and are merged under the event's, which is what keeps an
356
+ * agent that fails before `agent_pending`
357
+ * ever arrives grouped where the operator saw it launch, and what stops a
358
+ * partially labelled event from erasing a label it never mentioned.
359
+ *
360
+ * An event naming none of the four changes nothing at all: the common case
361
+ * is the same labels arriving twice, where `group()` returns the definition
362
+ * `begin()` already made and every field is rewritten to the value it
363
+ * already held.
364
+ */
365
+ private relabel;
92
366
  private fallbackBatchId;
93
367
  private prune;
94
368
  private scheduleNotify;
@@ -1 +1 @@
1
- {"version":3,"file":"activity.d.ts","sourceRoot":"","sources":["../../../src/integrations/subagents/activity.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"activity.d.ts","sourceRoot":"","sources":["../../../src/integrations/subagents/activity.ts"],"names":[],"mappings":"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"}