@tutti-os/agent-gui 0.0.214 → 0.0.215

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 (40) hide show
  1. package/dist/{AgentRichTextReadonly-TASIMIK4.js → AgentRichTextReadonly-56TZAJ47.js} +3 -3
  2. package/dist/agent-conversation/index.d.ts +3 -3
  3. package/dist/agent-conversation/index.js +4 -4
  4. package/dist/agent-gui.d.ts +2 -2
  5. package/dist/agent-gui.js +8 -8
  6. package/dist/agent-message-center/index.d.ts +1 -1
  7. package/dist/agent-message-center/index.js +3 -3
  8. package/dist/{agentGuiNodeTypes-BMcpfKTn.d.ts → agentGuiNodeTypes-DW7T--Y8.d.ts} +1 -1
  9. package/dist/app/renderer/agentactivity.css +68 -10
  10. package/dist/{chunk-7SSORDQY.js → chunk-AQ7CRDGX.js} +2 -2
  11. package/dist/{chunk-ZNHMWCO4.js → chunk-GUD5NOHO.js} +3 -3
  12. package/dist/{chunk-RLFO3NJV.js → chunk-JOUEYIV3.js} +173 -132
  13. package/dist/chunk-JOUEYIV3.js.map +1 -0
  14. package/dist/{chunk-LQKLBDBK.js → chunk-KNSLQO52.js} +37 -3
  15. package/dist/chunk-KNSLQO52.js.map +1 -0
  16. package/dist/{chunk-L4E2Y52A.js → chunk-KVFBUOKZ.js} +4 -43
  17. package/dist/chunk-KVFBUOKZ.js.map +1 -0
  18. package/dist/chunk-LQMIEH4C.js +100 -0
  19. package/dist/chunk-LQMIEH4C.js.map +1 -0
  20. package/dist/{chunk-G2QO6HPB.js → chunk-MWAUXAD2.js} +22 -8
  21. package/dist/chunk-MWAUXAD2.js.map +1 -0
  22. package/dist/{chunk-FEUU4YMY.js → chunk-YTU6IUO2.js} +5806 -5722
  23. package/dist/chunk-YTU6IUO2.js.map +1 -0
  24. package/dist/index.d.ts +78 -71
  25. package/dist/index.js +8 -8
  26. package/dist/workbench/contribution.js +2 -2
  27. package/dist/workbench/index.js +2 -2
  28. package/dist/workbench/sessionTitle.js +1 -1
  29. package/dist/{workspaceLinkActions-COfr61YO.d.ts → workspaceLinkActions-CzsbvGmC.d.ts} +78 -71
  30. package/package.json +14 -14
  31. package/dist/chunk-FEUU4YMY.js.map +0 -1
  32. package/dist/chunk-G2QO6HPB.js.map +0 -1
  33. package/dist/chunk-L4E2Y52A.js.map +0 -1
  34. package/dist/chunk-LQKLBDBK.js.map +0 -1
  35. package/dist/chunk-RLFO3NJV.js.map +0 -1
  36. package/dist/chunk-ZVYUTXQJ.js +0 -43
  37. package/dist/chunk-ZVYUTXQJ.js.map +0 -1
  38. /package/dist/{AgentRichTextReadonly-TASIMIK4.js.map → AgentRichTextReadonly-56TZAJ47.js.map} +0 -0
  39. /package/dist/{chunk-7SSORDQY.js.map → chunk-AQ7CRDGX.js.map} +0 -0
  40. /package/dist/{chunk-ZNHMWCO4.js.map → chunk-GUD5NOHO.js.map} +0 -0
package/dist/index.d.ts CHANGED
@@ -1313,77 +1313,6 @@ interface AgentCollaborationVM {
1313
1313
  adoption: "pending" | "adopted" | "rejected" | "not_applicable" | (string & {});
1314
1314
  }
1315
1315
 
1316
- interface AgentMessageContentVM {
1317
- kind: "message-content";
1318
- id: string;
1319
- turnId: string;
1320
- body: string;
1321
- presentationKind: AgentTranscriptPresentationKind;
1322
- copyText?: string | null;
1323
- statusKind?: ToolCallStatusKind | null;
1324
- contentKind?: "text" | "image-grid" | "plan" | "collaboration";
1325
- isTurnFinalText?: true;
1326
- /** Typed payload for `contentKind: "collaboration"` rows. */
1327
- collaboration?: AgentCollaborationVM | null;
1328
- images?: AgentMessageImageVM[];
1329
- occurredAtUnixMs: number | null;
1330
- visibleError?: {
1331
- code: string | null;
1332
- phase: string | null;
1333
- provider: string | null;
1334
- detail: string | null;
1335
- retryable: boolean | null;
1336
- } | null;
1337
- systemNotice?: {
1338
- noticeKind: string | null;
1339
- severity: string | null;
1340
- source?: string | null;
1341
- command?: AgentActivityMessageSemantics["noticeCommand"] | null;
1342
- commandStatus?: AgentActivityMessageSemantics["noticeCommandStatus"] | null;
1343
- title: string | null;
1344
- detail: string | null;
1345
- retryable: boolean | null;
1346
- } | null;
1347
- sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
1348
- }
1349
- interface AgentMessageImageVM {
1350
- id: string;
1351
- workspaceId?: string | null;
1352
- agentSessionId: string;
1353
- attachmentId?: string | null;
1354
- mimeType: string;
1355
- name?: string | null;
1356
- data?: string | null;
1357
- url?: string | null;
1358
- path?: string | null;
1359
- }
1360
- interface AgentThinkingContentVM {
1361
- kind: "thinking-content";
1362
- id: string;
1363
- turnId: string;
1364
- body: string;
1365
- statusKind?: ToolCallStatusKind | null;
1366
- occurredAtUnixMs: number | null;
1367
- sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
1368
- }
1369
- interface AgentMessageRowVM {
1370
- kind: "message";
1371
- id: string;
1372
- turnId: string;
1373
- speaker: "user" | "assistant";
1374
- messages: AgentMessageContentVM[];
1375
- thinking: AgentThinkingContentVM[];
1376
- occurredAtUnixMs: number | null;
1377
- }
1378
-
1379
- interface AgentProcessingRowVM {
1380
- kind: "processing";
1381
- id: string;
1382
- turnId: string | null;
1383
- label?: string | null;
1384
- occurredAtUnixMs: number | null;
1385
- }
1386
-
1387
1316
  type AgentPlanModeKind = "enter" | "exit";
1388
1317
  interface AgentPlanModeItemVM {
1389
1318
  itemKind: "plan-mode";
@@ -1501,6 +1430,84 @@ interface AgentToolGroupRowVM {
1501
1430
  occurredAtUnixMs: number | null;
1502
1431
  }
1503
1432
 
1433
+ interface AgentMessageContentVM {
1434
+ kind: "message-content";
1435
+ id: string;
1436
+ turnId: string;
1437
+ body: string;
1438
+ presentationKind: AgentTranscriptPresentationKind;
1439
+ copyText?: string | null;
1440
+ statusKind?: ToolCallStatusKind | null;
1441
+ contentKind?: "text" | "image-grid" | "plan" | "collaboration";
1442
+ isTurnFinalText?: true;
1443
+ /** Typed payload for `contentKind: "collaboration"` rows. */
1444
+ collaboration?: AgentCollaborationVM | null;
1445
+ images?: AgentMessageImageVM[];
1446
+ occurredAtUnixMs: number | null;
1447
+ visibleError?: {
1448
+ code: string | null;
1449
+ phase: string | null;
1450
+ provider: string | null;
1451
+ detail: string | null;
1452
+ retryable: boolean | null;
1453
+ } | null;
1454
+ systemNotice?: {
1455
+ noticeKind: string | null;
1456
+ severity: string | null;
1457
+ source?: string | null;
1458
+ command?: AgentActivityMessageSemantics["noticeCommand"] | null;
1459
+ commandStatus?: AgentActivityMessageSemantics["noticeCommandStatus"] | null;
1460
+ title: string | null;
1461
+ detail: string | null;
1462
+ retryable: boolean | null;
1463
+ } | null;
1464
+ sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
1465
+ }
1466
+ interface AgentMessageImageVM {
1467
+ id: string;
1468
+ workspaceId?: string | null;
1469
+ agentSessionId: string;
1470
+ attachmentId?: string | null;
1471
+ mimeType: string;
1472
+ name?: string | null;
1473
+ data?: string | null;
1474
+ url?: string | null;
1475
+ path?: string | null;
1476
+ }
1477
+ interface AgentThinkingContentVM {
1478
+ kind: "thinking-content";
1479
+ id: string;
1480
+ turnId: string;
1481
+ body: string;
1482
+ statusKind?: ToolCallStatusKind | null;
1483
+ occurredAtUnixMs: number | null;
1484
+ sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
1485
+ }
1486
+ interface AgentMessageRowVM {
1487
+ kind: "message";
1488
+ id: string;
1489
+ turnId: string;
1490
+ speaker: "user" | "assistant";
1491
+ messages: AgentMessageContentVM[];
1492
+ thinking: AgentThinkingContentVM[];
1493
+ /**
1494
+ * Tool-group rows that happened right before this message and are rendered
1495
+ * inside this message's block (under the participant header, above the
1496
+ * content) instead of as standalone transcript rows. Populated only for the
1497
+ * participant-header presentation (e.g. the Agent board session detail).
1498
+ */
1499
+ leadingToolRows?: AgentToolGroupRowVM[];
1500
+ occurredAtUnixMs: number | null;
1501
+ }
1502
+
1503
+ interface AgentProcessingRowVM {
1504
+ kind: "processing";
1505
+ id: string;
1506
+ turnId: string | null;
1507
+ label?: string | null;
1508
+ occurredAtUnixMs: number | null;
1509
+ }
1510
+
1504
1511
  interface AgentTurnSummaryFileVM {
1505
1512
  label: string;
1506
1513
  path: string;
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  normalizeAgentGUIAgentTargets,
11
11
  resolveAgentGUIAgentTarget,
12
12
  selectAgentStatusControllerSnapshot
13
- } from "./chunk-RLFO3NJV.js";
13
+ } from "./chunk-JOUEYIV3.js";
14
14
  import {
15
15
  AGENT_CONVERSATION_RAIL_RUNTIME_METHODS,
16
16
  createAgentConversationRailRuntime,
@@ -23,14 +23,14 @@ import {
23
23
  AGENT_GUI_STANDALONE_AUTO_COLLAPSE_WIDTH_PX,
24
24
  resolveAgentGUIExpandedWindowFrame,
25
25
  shouldAutoCollapseAgentGUIConversationRail
26
- } from "./chunk-ZNHMWCO4.js";
27
- import "./chunk-L4E2Y52A.js";
26
+ } from "./chunk-GUD5NOHO.js";
27
+ import "./chunk-KVFBUOKZ.js";
28
28
  import "./chunk-KDN6SLJM.js";
29
29
  import "./chunk-4CHBM3G3.js";
30
30
  import "./chunk-CBMWHQ7P.js";
31
31
  import "./chunk-MGSRWYRN.js";
32
- import "./chunk-FEUU4YMY.js";
33
- import "./chunk-G2QO6HPB.js";
32
+ import "./chunk-YTU6IUO2.js";
33
+ import "./chunk-MWAUXAD2.js";
34
34
  import "./chunk-N4HLBSMJ.js";
35
35
  import "./chunk-UP3ZDYTN.js";
36
36
  import "./chunk-GUFEHWUX.js";
@@ -66,12 +66,12 @@ import {
66
66
  import {
67
67
  dispatchAgentPlanPromptAction,
68
68
  selectAgentPlanPromptTurn
69
- } from "./chunk-7SSORDQY.js";
69
+ } from "./chunk-AQ7CRDGX.js";
70
70
  import {
71
71
  useEngineSelector
72
72
  } from "./chunk-EVQ4JY3N.js";
73
- import "./chunk-LQKLBDBK.js";
74
- import "./chunk-ZVYUTXQJ.js";
73
+ import "./chunk-KNSLQO52.js";
74
+ import "./chunk-LQMIEH4C.js";
75
75
  import "./chunk-FMTWYOHM.js";
76
76
  import "./chunk-AD2RTSMS.js";
77
77
  import "./chunk-YMXYBG7U.js";
@@ -18,8 +18,8 @@ import {
18
18
  resolveAgentGuiUnifiedDockLaunchPayload,
19
19
  resolveAgentGuiWorkbenchContributionCopy,
20
20
  resolveAgentGuiWorkbenchDefaultLaunchFrame
21
- } from "../chunk-ZNHMWCO4.js";
22
- import "../chunk-L4E2Y52A.js";
21
+ } from "../chunk-GUD5NOHO.js";
22
+ import "../chunk-KVFBUOKZ.js";
23
23
  import "../chunk-KDN6SLJM.js";
24
24
  import "../chunk-4CHBM3G3.js";
25
25
  import "../chunk-CBMWHQ7P.js";
@@ -14,11 +14,11 @@ import {
14
14
  resolveAgentGuiUnifiedDockLaunchPayload,
15
15
  resolveAgentGuiWorkbenchContributionCopy,
16
16
  resolveAgentGuiWorkbenchConversationIdentity
17
- } from "../chunk-ZNHMWCO4.js";
17
+ } from "../chunk-GUD5NOHO.js";
18
18
  import {
19
19
  resolveAgentGuiWorkbenchHeaderTitle,
20
20
  resolveAgentGuiWorkbenchSessionTitle
21
- } from "../chunk-L4E2Y52A.js";
21
+ } from "../chunk-KVFBUOKZ.js";
22
22
  import {
23
23
  areAgentGuiWorkbenchNodeStatesEqual,
24
24
  areAgentGuiWorkbenchStatesEqual,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  resolveAgentGuiWorkbenchHeaderTitle,
3
3
  resolveAgentGuiWorkbenchSessionTitle
4
- } from "../chunk-L4E2Y52A.js";
4
+ } from "../chunk-KVFBUOKZ.js";
5
5
  import "../chunk-QVLEP54U.js";
6
6
  import "../chunk-MIJXEELH.js";
7
7
  import "../chunk-O433KXLK.js";
@@ -289,77 +289,6 @@ interface AgentCollaborationVM {
289
289
  adoption: "pending" | "adopted" | "rejected" | "not_applicable" | (string & {});
290
290
  }
291
291
 
292
- interface AgentMessageContentVM {
293
- kind: "message-content";
294
- id: string;
295
- turnId: string;
296
- body: string;
297
- presentationKind: AgentTranscriptPresentationKind;
298
- copyText?: string | null;
299
- statusKind?: ToolCallStatusKind | null;
300
- contentKind?: "text" | "image-grid" | "plan" | "collaboration";
301
- isTurnFinalText?: true;
302
- /** Typed payload for `contentKind: "collaboration"` rows. */
303
- collaboration?: AgentCollaborationVM | null;
304
- images?: AgentMessageImageVM[];
305
- occurredAtUnixMs: number | null;
306
- visibleError?: {
307
- code: string | null;
308
- phase: string | null;
309
- provider: string | null;
310
- detail: string | null;
311
- retryable: boolean | null;
312
- } | null;
313
- systemNotice?: {
314
- noticeKind: string | null;
315
- severity: string | null;
316
- source?: string | null;
317
- command?: AgentActivityMessageSemantics["noticeCommand"] | null;
318
- commandStatus?: AgentActivityMessageSemantics["noticeCommandStatus"] | null;
319
- title: string | null;
320
- detail: string | null;
321
- retryable: boolean | null;
322
- } | null;
323
- sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
324
- }
325
- interface AgentMessageImageVM {
326
- id: string;
327
- workspaceId?: string | null;
328
- agentSessionId: string;
329
- attachmentId?: string | null;
330
- mimeType: string;
331
- name?: string | null;
332
- data?: string | null;
333
- url?: string | null;
334
- path?: string | null;
335
- }
336
- interface AgentThinkingContentVM {
337
- kind: "thinking-content";
338
- id: string;
339
- turnId: string;
340
- body: string;
341
- statusKind?: ToolCallStatusKind | null;
342
- occurredAtUnixMs: number | null;
343
- sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
344
- }
345
- interface AgentMessageRowVM {
346
- kind: "message";
347
- id: string;
348
- turnId: string;
349
- speaker: "user" | "assistant";
350
- messages: AgentMessageContentVM[];
351
- thinking: AgentThinkingContentVM[];
352
- occurredAtUnixMs: number | null;
353
- }
354
-
355
- interface AgentProcessingRowVM {
356
- kind: "processing";
357
- id: string;
358
- turnId: string | null;
359
- label?: string | null;
360
- occurredAtUnixMs: number | null;
361
- }
362
-
363
292
  type AgentPlanModeKind = "enter" | "exit";
364
293
  interface AgentPlanModeItemVM {
365
294
  itemKind: "plan-mode";
@@ -477,6 +406,84 @@ interface AgentToolGroupRowVM {
477
406
  occurredAtUnixMs: number | null;
478
407
  }
479
408
 
409
+ interface AgentMessageContentVM {
410
+ kind: "message-content";
411
+ id: string;
412
+ turnId: string;
413
+ body: string;
414
+ presentationKind: AgentTranscriptPresentationKind;
415
+ copyText?: string | null;
416
+ statusKind?: ToolCallStatusKind | null;
417
+ contentKind?: "text" | "image-grid" | "plan" | "collaboration";
418
+ isTurnFinalText?: true;
419
+ /** Typed payload for `contentKind: "collaboration"` rows. */
420
+ collaboration?: AgentCollaborationVM | null;
421
+ images?: AgentMessageImageVM[];
422
+ occurredAtUnixMs: number | null;
423
+ visibleError?: {
424
+ code: string | null;
425
+ phase: string | null;
426
+ provider: string | null;
427
+ detail: string | null;
428
+ retryable: boolean | null;
429
+ } | null;
430
+ systemNotice?: {
431
+ noticeKind: string | null;
432
+ severity: string | null;
433
+ source?: string | null;
434
+ command?: AgentActivityMessageSemantics["noticeCommand"] | null;
435
+ commandStatus?: AgentActivityMessageSemantics["noticeCommandStatus"] | null;
436
+ title: string | null;
437
+ detail: string | null;
438
+ retryable: boolean | null;
439
+ } | null;
440
+ sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
441
+ }
442
+ interface AgentMessageImageVM {
443
+ id: string;
444
+ workspaceId?: string | null;
445
+ agentSessionId: string;
446
+ attachmentId?: string | null;
447
+ mimeType: string;
448
+ name?: string | null;
449
+ data?: string | null;
450
+ url?: string | null;
451
+ path?: string | null;
452
+ }
453
+ interface AgentThinkingContentVM {
454
+ kind: "thinking-content";
455
+ id: string;
456
+ turnId: string;
457
+ body: string;
458
+ statusKind?: ToolCallStatusKind | null;
459
+ occurredAtUnixMs: number | null;
460
+ sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
461
+ }
462
+ interface AgentMessageRowVM {
463
+ kind: "message";
464
+ id: string;
465
+ turnId: string;
466
+ speaker: "user" | "assistant";
467
+ messages: AgentMessageContentVM[];
468
+ thinking: AgentThinkingContentVM[];
469
+ /**
470
+ * Tool-group rows that happened right before this message and are rendered
471
+ * inside this message's block (under the participant header, above the
472
+ * content) instead of as standalone transcript rows. Populated only for the
473
+ * participant-header presentation (e.g. the Agent board session detail).
474
+ */
475
+ leadingToolRows?: AgentToolGroupRowVM[];
476
+ occurredAtUnixMs: number | null;
477
+ }
478
+
479
+ interface AgentProcessingRowVM {
480
+ kind: "processing";
481
+ id: string;
482
+ turnId: string | null;
483
+ label?: string | null;
484
+ occurredAtUnixMs: number | null;
485
+ }
486
+
480
487
  interface AgentTurnSummaryFileVM {
481
488
  label: string;
482
489
  path: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tutti-os/agent-gui",
3
- "version": "0.0.214",
3
+ "version": "0.0.215",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -147,19 +147,19 @@
147
147
  "dependencies": {
148
148
  "@monaco-editor/react": "^4.7.0",
149
149
  "@tanstack/react-virtual": "^3.13.12",
150
- "@tutti-os/agent-activity-core": "0.0.214",
151
- "@tutti-os/browser-node": "0.0.214",
152
- "@tutti-os/ui-i18n-runtime": "0.0.214",
153
- "@tutti-os/ui-react-hooks": "0.0.214",
154
- "@tutti-os/ui-rich-text": "0.0.214",
155
- "@tutti-os/ui-system": "0.0.214",
156
- "@tutti-os/workbench-surface": "0.0.214",
157
- "@tutti-os/workspace-external-core": "0.0.214",
158
- "@tutti-os/workspace-file-manager": "0.0.214",
159
- "@tutti-os/workspace-file-preview": "0.0.214",
160
- "@tutti-os/workspace-file-reference": "0.0.214",
161
- "@tutti-os/workspace-issue-manager": "0.0.214",
162
- "@tutti-os/workspace-user-project": "0.0.214",
150
+ "@tutti-os/agent-activity-core": "0.0.215",
151
+ "@tutti-os/browser-node": "0.0.215",
152
+ "@tutti-os/ui-i18n-runtime": "0.0.215",
153
+ "@tutti-os/ui-react-hooks": "0.0.215",
154
+ "@tutti-os/ui-rich-text": "0.0.215",
155
+ "@tutti-os/ui-system": "0.0.215",
156
+ "@tutti-os/workbench-surface": "0.0.215",
157
+ "@tutti-os/workspace-external-core": "0.0.215",
158
+ "@tutti-os/workspace-file-manager": "0.0.215",
159
+ "@tutti-os/workspace-file-preview": "0.0.215",
160
+ "@tutti-os/workspace-file-reference": "0.0.215",
161
+ "@tutti-os/workspace-issue-manager": "0.0.215",
162
+ "@tutti-os/workspace-user-project": "0.0.215",
163
163
  "clsx": "^2.1.1",
164
164
  "framer-motion": "^12.40.0",
165
165
  "lodash": "^4.17.21",