@otto-code/protocol 0.5.4 → 0.5.6

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.
@@ -636,6 +636,26 @@ export declare const ProjectRemoveRequestSchema: z.ZodObject<{
636
636
  projectId: z.ZodString;
637
637
  requestId: z.ZodString;
638
638
  }, z.core.$strip>;
639
+ export declare const ProjectLinkSchema: z.ZodObject<{
640
+ projectAId: z.ZodString;
641
+ projectBId: z.ZodString;
642
+ }, z.core.$strip>;
643
+ export declare const ProjectLinksListRequestSchema: z.ZodObject<{
644
+ type: z.ZodLiteral<"project.links.list.request">;
645
+ requestId: z.ZodString;
646
+ }, z.core.$strip>;
647
+ export declare const ProjectLinksSetRequestSchema: z.ZodObject<{
648
+ type: z.ZodLiteral<"project.links.set.request">;
649
+ projectId: z.ZodString;
650
+ otherProjectId: z.ZodString;
651
+ requestId: z.ZodString;
652
+ }, z.core.$strip>;
653
+ export declare const ProjectLinksUnsetRequestSchema: z.ZodObject<{
654
+ type: z.ZodLiteral<"project.links.unset.request">;
655
+ projectId: z.ZodString;
656
+ otherProjectId: z.ZodString;
657
+ requestId: z.ZodString;
658
+ }, z.core.$strip>;
639
659
  export declare const WorkspaceTitleSetRequestSchema: z.ZodObject<{
640
660
  type: z.ZodLiteral<"workspace.title.set.request">;
641
661
  workspaceId: z.ZodString;
@@ -1999,6 +2019,89 @@ export declare const AgentBackgroundTaskClearResponseMessageSchema: z.ZodObject<
1999
2019
  notice: z.ZodOptional<z.ZodNullable<z.ZodType<AgentProviderNotice, unknown, z.core.$ZodTypeInternals<AgentProviderNotice, unknown>>>>;
2000
2020
  }, z.core.$strip>;
2001
2021
  }, z.core.$strip>;
2022
+ export declare const SuggestedTaskStateSchema: z.ZodEnum<{
2023
+ pending: "pending";
2024
+ dismissed: "dismissed";
2025
+ started: "started";
2026
+ }>;
2027
+ export declare const SuggestedTaskInfoSchema: z.ZodObject<{
2028
+ taskId: z.ZodString;
2029
+ parentAgentId: z.ZodString;
2030
+ title: z.ZodString;
2031
+ tldr: z.ZodString;
2032
+ cwd: z.ZodOptional<z.ZodString>;
2033
+ state: z.ZodEnum<{
2034
+ pending: "pending";
2035
+ dismissed: "dismissed";
2036
+ started: "started";
2037
+ }>;
2038
+ createdAt: z.ZodString;
2039
+ updatedAt: z.ZodString;
2040
+ }, z.core.$strip>;
2041
+ export declare const SuggestedTasksChangedSchema: z.ZodObject<{
2042
+ type: z.ZodLiteral<"suggested_tasks_changed">;
2043
+ payload: z.ZodObject<{
2044
+ parentAgentId: z.ZodString;
2045
+ tasks: z.ZodArray<z.ZodObject<{
2046
+ taskId: z.ZodString;
2047
+ parentAgentId: z.ZodString;
2048
+ title: z.ZodString;
2049
+ tldr: z.ZodString;
2050
+ cwd: z.ZodOptional<z.ZodString>;
2051
+ state: z.ZodEnum<{
2052
+ pending: "pending";
2053
+ dismissed: "dismissed";
2054
+ started: "started";
2055
+ }>;
2056
+ createdAt: z.ZodString;
2057
+ updatedAt: z.ZodString;
2058
+ }, z.core.$strip>>;
2059
+ }, z.core.$strip>;
2060
+ }, z.core.$strip>;
2061
+ export declare const TasksSuggestedStartModeSchema: z.ZodEnum<{
2062
+ worktree: "worktree";
2063
+ local: "local";
2064
+ in_session: "in_session";
2065
+ }>;
2066
+ export declare const TasksSuggestedStartRequestMessageSchema: z.ZodObject<{
2067
+ type: z.ZodLiteral<"tasks.suggested.start.request">;
2068
+ parentAgentId: z.ZodString;
2069
+ taskIds: z.ZodArray<z.ZodString>;
2070
+ mode: z.ZodEnum<{
2071
+ worktree: "worktree";
2072
+ local: "local";
2073
+ in_session: "in_session";
2074
+ }>;
2075
+ requestId: z.ZodString;
2076
+ }, z.core.$strip>;
2077
+ export declare const TasksSuggestedStartResponseMessageSchema: z.ZodObject<{
2078
+ type: z.ZodLiteral<"tasks.suggested.start.response">;
2079
+ payload: z.ZodObject<{
2080
+ requestId: z.ZodString;
2081
+ parentAgentId: z.ZodString;
2082
+ accepted: z.ZodBoolean;
2083
+ succeeded: z.ZodNumber;
2084
+ failed: z.ZodNumber;
2085
+ error: z.ZodNullable<z.ZodString>;
2086
+ }, z.core.$strip>;
2087
+ }, z.core.$strip>;
2088
+ export declare const TasksSuggestedDismissRequestMessageSchema: z.ZodObject<{
2089
+ type: z.ZodLiteral<"tasks.suggested.dismiss.request">;
2090
+ parentAgentId: z.ZodString;
2091
+ taskIds: z.ZodArray<z.ZodString>;
2092
+ requestId: z.ZodString;
2093
+ }, z.core.$strip>;
2094
+ export declare const TasksSuggestedDismissResponseMessageSchema: z.ZodObject<{
2095
+ type: z.ZodLiteral<"tasks.suggested.dismiss.response">;
2096
+ payload: z.ZodObject<{
2097
+ requestId: z.ZodString;
2098
+ parentAgentId: z.ZodString;
2099
+ accepted: z.ZodBoolean;
2100
+ succeeded: z.ZodNumber;
2101
+ failed: z.ZodNumber;
2102
+ error: z.ZodNullable<z.ZodString>;
2103
+ }, z.core.$strip>;
2104
+ }, z.core.$strip>;
2002
2105
  export declare const AgentPersonalitySetRequestMessageSchema: z.ZodObject<{
2003
2106
  type: z.ZodLiteral<"agent.personality.set.request">;
2004
2107
  agentId: z.ZodString;
@@ -2084,6 +2187,73 @@ export declare const ProjectRemoveResponseSchema: z.ZodObject<{
2084
2187
  error: z.ZodNullable<z.ZodString>;
2085
2188
  }, z.core.$strip>;
2086
2189
  }, z.core.$strip>;
2190
+ export declare const ProjectLinksListResponsePayloadSchema: z.ZodObject<{
2191
+ requestId: z.ZodString;
2192
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
2193
+ projectAId: z.ZodString;
2194
+ projectBId: z.ZodString;
2195
+ }, z.core.$strip>>>;
2196
+ error: z.ZodNullable<z.ZodString>;
2197
+ }, z.core.$strip>;
2198
+ export declare const ProjectLinksListResponseSchema: z.ZodObject<{
2199
+ type: z.ZodLiteral<"project.links.list.response">;
2200
+ payload: z.ZodObject<{
2201
+ requestId: z.ZodString;
2202
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
2203
+ projectAId: z.ZodString;
2204
+ projectBId: z.ZodString;
2205
+ }, z.core.$strip>>>;
2206
+ error: z.ZodNullable<z.ZodString>;
2207
+ }, z.core.$strip>;
2208
+ }, z.core.$strip>;
2209
+ export declare const ProjectLinksMutationResponsePayloadSchema: z.ZodObject<{
2210
+ requestId: z.ZodString;
2211
+ accepted: z.ZodBoolean;
2212
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
2213
+ projectAId: z.ZodString;
2214
+ projectBId: z.ZodString;
2215
+ }, z.core.$strip>>>;
2216
+ error: z.ZodNullable<z.ZodString>;
2217
+ }, z.core.$strip>;
2218
+ export declare const ProjectLinksSetResponseSchema: z.ZodObject<{
2219
+ type: z.ZodLiteral<"project.links.set.response">;
2220
+ payload: z.ZodObject<{
2221
+ requestId: z.ZodString;
2222
+ accepted: z.ZodBoolean;
2223
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
2224
+ projectAId: z.ZodString;
2225
+ projectBId: z.ZodString;
2226
+ }, z.core.$strip>>>;
2227
+ error: z.ZodNullable<z.ZodString>;
2228
+ }, z.core.$strip>;
2229
+ }, z.core.$strip>;
2230
+ export declare const ProjectLinksUnsetResponseSchema: z.ZodObject<{
2231
+ type: z.ZodLiteral<"project.links.unset.response">;
2232
+ payload: z.ZodObject<{
2233
+ requestId: z.ZodString;
2234
+ accepted: z.ZodBoolean;
2235
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
2236
+ projectAId: z.ZodString;
2237
+ projectBId: z.ZodString;
2238
+ }, z.core.$strip>>>;
2239
+ error: z.ZodNullable<z.ZodString>;
2240
+ }, z.core.$strip>;
2241
+ }, z.core.$strip>;
2242
+ export declare const ProjectLinksChangedPayloadSchema: z.ZodObject<{
2243
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
2244
+ projectAId: z.ZodString;
2245
+ projectBId: z.ZodString;
2246
+ }, z.core.$strip>>>;
2247
+ }, z.core.$strip>;
2248
+ export declare const ProjectLinksChangedSchema: z.ZodObject<{
2249
+ type: z.ZodLiteral<"project.links.changed">;
2250
+ payload: z.ZodObject<{
2251
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
2252
+ projectAId: z.ZodString;
2253
+ projectBId: z.ZodString;
2254
+ }, z.core.$strip>>>;
2255
+ }, z.core.$strip>;
2256
+ }, z.core.$strip>;
2087
2257
  export declare const WorkspaceTitleSetResponsePayloadSchema: z.ZodObject<{
2088
2258
  requestId: z.ZodString;
2089
2259
  workspaceId: z.ZodString;
@@ -2383,6 +2553,7 @@ export declare const CheckoutGitRollbackRequestSchema: z.ZodObject<{
2383
2553
  type: z.ZodLiteral<"checkout.git.rollback.request">;
2384
2554
  cwd: z.ZodString;
2385
2555
  paths: z.ZodArray<z.ZodString>;
2556
+ allowWithRunningAgents: z.ZodOptional<z.ZodBoolean>;
2386
2557
  requestId: z.ZodString;
2387
2558
  }, z.core.$strip>;
2388
2559
  export declare const CheckoutMergeRequestSchema: z.ZodObject<{
@@ -3663,6 +3834,19 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
3663
3834
  type: z.ZodLiteral<"project.remove.request">;
3664
3835
  projectId: z.ZodString;
3665
3836
  requestId: z.ZodString;
3837
+ }, z.core.$strip>, z.ZodObject<{
3838
+ type: z.ZodLiteral<"project.links.list.request">;
3839
+ requestId: z.ZodString;
3840
+ }, z.core.$strip>, z.ZodObject<{
3841
+ type: z.ZodLiteral<"project.links.set.request">;
3842
+ projectId: z.ZodString;
3843
+ otherProjectId: z.ZodString;
3844
+ requestId: z.ZodString;
3845
+ }, z.core.$strip>, z.ZodObject<{
3846
+ type: z.ZodLiteral<"project.links.unset.request">;
3847
+ projectId: z.ZodString;
3848
+ otherProjectId: z.ZodString;
3849
+ requestId: z.ZodString;
3666
3850
  }, z.core.$strip>, z.ZodObject<{
3667
3851
  type: z.ZodLiteral<"workspace.title.set.request">;
3668
3852
  workspaceId: z.ZodString;
@@ -4295,6 +4479,21 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
4295
4479
  parentAgentId: z.ZodString;
4296
4480
  taskIds: z.ZodArray<z.ZodString>;
4297
4481
  requestId: z.ZodString;
4482
+ }, z.core.$strip>, z.ZodObject<{
4483
+ type: z.ZodLiteral<"tasks.suggested.start.request">;
4484
+ parentAgentId: z.ZodString;
4485
+ taskIds: z.ZodArray<z.ZodString>;
4486
+ mode: z.ZodEnum<{
4487
+ worktree: "worktree";
4488
+ local: "local";
4489
+ in_session: "in_session";
4490
+ }>;
4491
+ requestId: z.ZodString;
4492
+ }, z.core.$strip>, z.ZodObject<{
4493
+ type: z.ZodLiteral<"tasks.suggested.dismiss.request">;
4494
+ parentAgentId: z.ZodString;
4495
+ taskIds: z.ZodArray<z.ZodString>;
4496
+ requestId: z.ZodString;
4298
4497
  }, z.core.$strip>, z.ZodObject<{
4299
4498
  type: z.ZodLiteral<"agent.personality.set.request">;
4300
4499
  agentId: z.ZodString;
@@ -4356,6 +4555,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
4356
4555
  type: z.ZodLiteral<"checkout.git.rollback.request">;
4357
4556
  cwd: z.ZodString;
4358
4557
  paths: z.ZodArray<z.ZodString>;
4558
+ allowWithRunningAgents: z.ZodOptional<z.ZodBoolean>;
4359
4559
  requestId: z.ZodString;
4360
4560
  }, z.core.$strip>, z.ZodObject<{
4361
4561
  type: z.ZodLiteral<"checkout.git.get_operation_log.request">;
@@ -5257,6 +5457,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
5257
5457
  glowA: z.ZodString;
5258
5458
  glowB: z.ZodString;
5259
5459
  }, z.core.$loose>>;
5460
+ personalityName: z.ZodOptional<z.ZodString>;
5260
5461
  requestId: z.ZodString;
5261
5462
  }, z.core.$strip>, z.ZodObject<{
5262
5463
  type: z.ZodLiteral<"artifact.update.request">;
@@ -5466,6 +5667,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
5466
5667
  artifacts: z.ZodOptional<z.ZodBoolean>;
5467
5668
  observedSubagents: z.ZodOptional<z.ZodBoolean>;
5468
5669
  backgroundShellTasks: z.ZodOptional<z.ZodBoolean>;
5670
+ suggestedTasks: z.ZodOptional<z.ZodBoolean>;
5469
5671
  textEditor: z.ZodOptional<z.ZodBoolean>;
5470
5672
  projectSearch: z.ZodOptional<z.ZodBoolean>;
5471
5673
  codeIndex: z.ZodOptional<z.ZodBoolean>;
@@ -5484,6 +5686,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
5484
5686
  agentOrchestration: z.ZodOptional<z.ZodBoolean>;
5485
5687
  activityStats: z.ZodOptional<z.ZodBoolean>;
5486
5688
  runsClear: z.ZodOptional<z.ZodBoolean>;
5689
+ projectLinks: z.ZodOptional<z.ZodBoolean>;
5487
5690
  }, z.core.$strip>>;
5488
5691
  }, z.core.$loose>, z.ZodTransform<{
5489
5692
  hostname: string | null;
@@ -5525,6 +5728,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
5525
5728
  artifacts?: boolean | undefined;
5526
5729
  observedSubagents?: boolean | undefined;
5527
5730
  backgroundShellTasks?: boolean | undefined;
5731
+ suggestedTasks?: boolean | undefined;
5528
5732
  textEditor?: boolean | undefined;
5529
5733
  projectSearch?: boolean | undefined;
5530
5734
  codeIndex?: boolean | undefined;
@@ -5543,6 +5747,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
5543
5747
  agentOrchestration?: boolean | undefined;
5544
5748
  activityStats?: boolean | undefined;
5545
5749
  runsClear?: boolean | undefined;
5750
+ projectLinks?: boolean | undefined;
5546
5751
  } | undefined;
5547
5752
  }, {
5548
5753
  [x: string]: unknown;
@@ -5585,6 +5790,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
5585
5790
  artifacts?: boolean | undefined;
5586
5791
  observedSubagents?: boolean | undefined;
5587
5792
  backgroundShellTasks?: boolean | undefined;
5793
+ suggestedTasks?: boolean | undefined;
5588
5794
  textEditor?: boolean | undefined;
5589
5795
  projectSearch?: boolean | undefined;
5590
5796
  codeIndex?: boolean | undefined;
@@ -5603,6 +5809,7 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
5603
5809
  agentOrchestration?: boolean | undefined;
5604
5810
  activityStats?: boolean | undefined;
5605
5811
  runsClear?: boolean | undefined;
5812
+ projectLinks?: boolean | undefined;
5606
5813
  } | undefined;
5607
5814
  }>>;
5608
5815
  export declare const StatusMessageSchema: z.ZodObject<{
@@ -6932,6 +7139,7 @@ export declare const ArtifactUpdateMessageSchema: z.ZodObject<{
6932
7139
  glowA: z.ZodString;
6933
7140
  glowB: z.ZodString;
6934
7141
  }, z.core.$loose>>>;
7142
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6935
7143
  errorMessage: z.ZodNullable<z.ZodString>;
6936
7144
  }, z.core.$strip>;
6937
7145
  }, z.core.$strip>;
@@ -11164,6 +11372,12 @@ export declare const CheckoutGitRollbackErrorSchema: z.ZodDiscriminatedUnion<[z.
11164
11372
  }, z.core.$strip>, z.ZodObject<{
11165
11373
  kind: z.ZodLiteral<"git_failed">;
11166
11374
  detail: z.ZodString;
11375
+ }, z.core.$strip>, z.ZodObject<{
11376
+ kind: z.ZodLiteral<"agents_running">;
11377
+ agents: z.ZodArray<z.ZodObject<{
11378
+ id: z.ZodString;
11379
+ title: z.ZodNullable<z.ZodString>;
11380
+ }, z.core.$strip>>;
11167
11381
  }, z.core.$strip>], "kind">;
11168
11382
  export declare const CheckoutGitRollbackResponseSchema: z.ZodObject<{
11169
11383
  type: z.ZodLiteral<"checkout.git.rollback.response">;
@@ -11176,6 +11390,12 @@ export declare const CheckoutGitRollbackResponseSchema: z.ZodObject<{
11176
11390
  }, z.core.$strip>, z.ZodObject<{
11177
11391
  kind: z.ZodLiteral<"git_failed">;
11178
11392
  detail: z.ZodString;
11393
+ }, z.core.$strip>, z.ZodObject<{
11394
+ kind: z.ZodLiteral<"agents_running">;
11395
+ agents: z.ZodArray<z.ZodObject<{
11396
+ id: z.ZodString;
11397
+ title: z.ZodNullable<z.ZodString>;
11398
+ }, z.core.$strip>>;
11179
11399
  }, z.core.$strip>], "kind">>;
11180
11400
  requestId: z.ZodString;
11181
11401
  }, z.core.$strip>;
@@ -13561,6 +13781,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13561
13781
  glowA: z.ZodString;
13562
13782
  glowB: z.ZodString;
13563
13783
  }, z.core.$loose>>>;
13784
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13564
13785
  errorMessage: z.ZodNullable<z.ZodString>;
13565
13786
  }, z.core.$strip>;
13566
13787
  }, z.core.$strip>;
@@ -17078,6 +17299,45 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17078
17299
  archivedAt: z.ZodOptional<z.ZodString>;
17079
17300
  }, z.core.$strip>>;
17080
17301
  }, z.core.$strip>;
17302
+ }, z.core.$strip>, z.ZodObject<{
17303
+ type: z.ZodLiteral<"tasks.suggested.start.response">;
17304
+ payload: z.ZodObject<{
17305
+ requestId: z.ZodString;
17306
+ parentAgentId: z.ZodString;
17307
+ accepted: z.ZodBoolean;
17308
+ succeeded: z.ZodNumber;
17309
+ failed: z.ZodNumber;
17310
+ error: z.ZodNullable<z.ZodString>;
17311
+ }, z.core.$strip>;
17312
+ }, z.core.$strip>, z.ZodObject<{
17313
+ type: z.ZodLiteral<"tasks.suggested.dismiss.response">;
17314
+ payload: z.ZodObject<{
17315
+ requestId: z.ZodString;
17316
+ parentAgentId: z.ZodString;
17317
+ accepted: z.ZodBoolean;
17318
+ succeeded: z.ZodNumber;
17319
+ failed: z.ZodNumber;
17320
+ error: z.ZodNullable<z.ZodString>;
17321
+ }, z.core.$strip>;
17322
+ }, z.core.$strip>, z.ZodObject<{
17323
+ type: z.ZodLiteral<"suggested_tasks_changed">;
17324
+ payload: z.ZodObject<{
17325
+ parentAgentId: z.ZodString;
17326
+ tasks: z.ZodArray<z.ZodObject<{
17327
+ taskId: z.ZodString;
17328
+ parentAgentId: z.ZodString;
17329
+ title: z.ZodString;
17330
+ tldr: z.ZodString;
17331
+ cwd: z.ZodOptional<z.ZodString>;
17332
+ state: z.ZodEnum<{
17333
+ pending: "pending";
17334
+ dismissed: "dismissed";
17335
+ started: "started";
17336
+ }>;
17337
+ createdAt: z.ZodString;
17338
+ updatedAt: z.ZodString;
17339
+ }, z.core.$strip>>;
17340
+ }, z.core.$strip>;
17081
17341
  }, z.core.$strip>, z.ZodObject<{
17082
17342
  type: z.ZodLiteral<"agent.personality.set.response">;
17083
17343
  payload: z.ZodObject<{
@@ -17122,6 +17382,46 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17122
17382
  removedWorkspaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
17123
17383
  error: z.ZodNullable<z.ZodString>;
17124
17384
  }, z.core.$strip>;
17385
+ }, z.core.$strip>, z.ZodObject<{
17386
+ type: z.ZodLiteral<"project.links.list.response">;
17387
+ payload: z.ZodObject<{
17388
+ requestId: z.ZodString;
17389
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
17390
+ projectAId: z.ZodString;
17391
+ projectBId: z.ZodString;
17392
+ }, z.core.$strip>>>;
17393
+ error: z.ZodNullable<z.ZodString>;
17394
+ }, z.core.$strip>;
17395
+ }, z.core.$strip>, z.ZodObject<{
17396
+ type: z.ZodLiteral<"project.links.set.response">;
17397
+ payload: z.ZodObject<{
17398
+ requestId: z.ZodString;
17399
+ accepted: z.ZodBoolean;
17400
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
17401
+ projectAId: z.ZodString;
17402
+ projectBId: z.ZodString;
17403
+ }, z.core.$strip>>>;
17404
+ error: z.ZodNullable<z.ZodString>;
17405
+ }, z.core.$strip>;
17406
+ }, z.core.$strip>, z.ZodObject<{
17407
+ type: z.ZodLiteral<"project.links.unset.response">;
17408
+ payload: z.ZodObject<{
17409
+ requestId: z.ZodString;
17410
+ accepted: z.ZodBoolean;
17411
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
17412
+ projectAId: z.ZodString;
17413
+ projectBId: z.ZodString;
17414
+ }, z.core.$strip>>>;
17415
+ error: z.ZodNullable<z.ZodString>;
17416
+ }, z.core.$strip>;
17417
+ }, z.core.$strip>, z.ZodObject<{
17418
+ type: z.ZodLiteral<"project.links.changed">;
17419
+ payload: z.ZodObject<{
17420
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
17421
+ projectAId: z.ZodString;
17422
+ projectBId: z.ZodString;
17423
+ }, z.core.$strip>>>;
17424
+ }, z.core.$strip>;
17125
17425
  }, z.core.$strip>, z.ZodObject<{
17126
17426
  type: z.ZodLiteral<"workspace.title.set.response">;
17127
17427
  payload: z.ZodObject<{
@@ -17676,6 +17976,12 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17676
17976
  }, z.core.$strip>, z.ZodObject<{
17677
17977
  kind: z.ZodLiteral<"git_failed">;
17678
17978
  detail: z.ZodString;
17979
+ }, z.core.$strip>, z.ZodObject<{
17980
+ kind: z.ZodLiteral<"agents_running">;
17981
+ agents: z.ZodArray<z.ZodObject<{
17982
+ id: z.ZodString;
17983
+ title: z.ZodNullable<z.ZodString>;
17984
+ }, z.core.$strip>>;
17679
17985
  }, z.core.$strip>], "kind">>;
17680
17986
  requestId: z.ZodString;
17681
17987
  }, z.core.$strip>;
@@ -19668,6 +19974,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19668
19974
  succeeded: "succeeded";
19669
19975
  }>>>;
19670
19976
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19977
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19978
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19979
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19671
19980
  pausedAt: z.ZodNullable<z.ZodString>;
19672
19981
  expiresAt: z.ZodNullable<z.ZodString>;
19673
19982
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -19735,6 +20044,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19735
20044
  succeeded: "succeeded";
19736
20045
  }>>>;
19737
20046
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20047
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20048
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20049
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19738
20050
  pausedAt: z.ZodNullable<z.ZodString>;
19739
20051
  expiresAt: z.ZodNullable<z.ZodString>;
19740
20052
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -19802,6 +20114,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19802
20114
  succeeded: "succeeded";
19803
20115
  }>>>;
19804
20116
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20117
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20118
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20119
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19805
20120
  pausedAt: z.ZodNullable<z.ZodString>;
19806
20121
  expiresAt: z.ZodNullable<z.ZodString>;
19807
20122
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -19817,6 +20132,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19817
20132
  }>;
19818
20133
  agentId: z.ZodNullable<z.ZodGUID>;
19819
20134
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20135
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20136
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20137
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19820
20138
  output: z.ZodNullable<z.ZodString>;
19821
20139
  error: z.ZodNullable<z.ZodString>;
19822
20140
  }, z.core.$strip>>;
@@ -19839,6 +20157,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19839
20157
  }>;
19840
20158
  agentId: z.ZodNullable<z.ZodGUID>;
19841
20159
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20160
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20161
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20162
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19842
20163
  output: z.ZodNullable<z.ZodString>;
19843
20164
  error: z.ZodNullable<z.ZodString>;
19844
20165
  }, z.core.$strip>>;
@@ -19905,6 +20226,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19905
20226
  succeeded: "succeeded";
19906
20227
  }>>>;
19907
20228
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20229
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20230
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20231
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19908
20232
  pausedAt: z.ZodNullable<z.ZodString>;
19909
20233
  expiresAt: z.ZodNullable<z.ZodString>;
19910
20234
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -19972,6 +20296,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
19972
20296
  succeeded: "succeeded";
19973
20297
  }>>>;
19974
20298
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20299
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20300
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20301
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19975
20302
  pausedAt: z.ZodNullable<z.ZodString>;
19976
20303
  expiresAt: z.ZodNullable<z.ZodString>;
19977
20304
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -20046,6 +20373,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20046
20373
  succeeded: "succeeded";
20047
20374
  }>>>;
20048
20375
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20376
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20377
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20378
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20049
20379
  pausedAt: z.ZodNullable<z.ZodString>;
20050
20380
  expiresAt: z.ZodNullable<z.ZodString>;
20051
20381
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -20061,6 +20391,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20061
20391
  }>;
20062
20392
  agentId: z.ZodNullable<z.ZodGUID>;
20063
20393
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20394
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20395
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20396
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20064
20397
  output: z.ZodNullable<z.ZodString>;
20065
20398
  error: z.ZodNullable<z.ZodString>;
20066
20399
  }, z.core.$strip>>;
@@ -20128,6 +20461,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20128
20461
  succeeded: "succeeded";
20129
20462
  }>>>;
20130
20463
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20464
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20465
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20466
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20131
20467
  pausedAt: z.ZodNullable<z.ZodString>;
20132
20468
  expiresAt: z.ZodNullable<z.ZodString>;
20133
20469
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -20143,6 +20479,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20143
20479
  }>;
20144
20480
  agentId: z.ZodNullable<z.ZodGUID>;
20145
20481
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20482
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20483
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20484
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20146
20485
  output: z.ZodNullable<z.ZodString>;
20147
20486
  error: z.ZodNullable<z.ZodString>;
20148
20487
  }, z.core.$strip>>;
@@ -20603,6 +20942,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20603
20942
  glowA: z.ZodString;
20604
20943
  glowB: z.ZodString;
20605
20944
  }, z.core.$loose>>>;
20945
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20606
20946
  errorMessage: z.ZodNullable<z.ZodString>;
20607
20947
  }, z.core.$strip>>;
20608
20948
  success: z.ZodBoolean;
@@ -20638,6 +20978,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20638
20978
  glowA: z.ZodString;
20639
20979
  glowB: z.ZodString;
20640
20980
  }, z.core.$loose>>>;
20981
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20641
20982
  errorMessage: z.ZodNullable<z.ZodString>;
20642
20983
  }, z.core.$strip>;
20643
20984
  success: z.ZodBoolean;
@@ -20673,6 +21014,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20673
21014
  glowA: z.ZodString;
20674
21015
  glowB: z.ZodString;
20675
21016
  }, z.core.$loose>>>;
21017
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20676
21018
  errorMessage: z.ZodNullable<z.ZodString>;
20677
21019
  }, z.core.$strip>;
20678
21020
  success: z.ZodBoolean;
@@ -20708,6 +21050,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20708
21050
  glowA: z.ZodString;
20709
21051
  glowB: z.ZodString;
20710
21052
  }, z.core.$loose>>>;
21053
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20711
21054
  errorMessage: z.ZodNullable<z.ZodString>;
20712
21055
  }, z.core.$strip>;
20713
21056
  success: z.ZodBoolean;
@@ -20743,6 +21086,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20743
21086
  glowA: z.ZodString;
20744
21087
  glowB: z.ZodString;
20745
21088
  }, z.core.$loose>>>;
21089
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20746
21090
  errorMessage: z.ZodNullable<z.ZodString>;
20747
21091
  }, z.core.$strip>;
20748
21092
  success: z.ZodBoolean;
@@ -20785,6 +21129,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20785
21129
  glowA: z.ZodString;
20786
21130
  glowB: z.ZodString;
20787
21131
  }, z.core.$loose>>>;
21132
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20788
21133
  errorMessage: z.ZodNullable<z.ZodString>;
20789
21134
  }, z.core.$strip>;
20790
21135
  success: z.ZodBoolean;
@@ -20828,6 +21173,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20828
21173
  glowA: z.ZodString;
20829
21174
  glowB: z.ZodString;
20830
21175
  }, z.core.$loose>>>;
21176
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20831
21177
  errorMessage: z.ZodNullable<z.ZodString>;
20832
21178
  }, z.core.$strip>;
20833
21179
  }, z.core.$strip>;
@@ -20860,6 +21206,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
20860
21206
  glowA: z.ZodString;
20861
21207
  glowB: z.ZodString;
20862
21208
  }, z.core.$loose>>>;
21209
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20863
21210
  errorMessage: z.ZodNullable<z.ZodString>;
20864
21211
  }, z.core.$strip>;
20865
21212
  }, z.core.$strip>;
@@ -20923,10 +21270,23 @@ export type BackgroundShellTaskInfo = z.infer<typeof BackgroundShellTaskInfoSche
20923
21270
  export type BackgroundShellTasksChanged = z.infer<typeof BackgroundShellTasksChangedSchema>;
20924
21271
  export type AgentBackgroundTaskStopResponseMessage = z.infer<typeof AgentBackgroundTaskStopResponseMessageSchema>;
20925
21272
  export type AgentBackgroundTaskClearResponseMessage = z.infer<typeof AgentBackgroundTaskClearResponseMessageSchema>;
21273
+ export type SuggestedTaskInfo = z.infer<typeof SuggestedTaskInfoSchema>;
21274
+ export type SuggestedTaskState = z.infer<typeof SuggestedTaskStateSchema>;
21275
+ export type SuggestedTasksChanged = z.infer<typeof SuggestedTasksChangedSchema>;
21276
+ export type TasksSuggestedStartMode = z.infer<typeof TasksSuggestedStartModeSchema>;
21277
+ export type TasksSuggestedStartResponseMessage = z.infer<typeof TasksSuggestedStartResponseMessageSchema>;
21278
+ export type TasksSuggestedDismissResponseMessage = z.infer<typeof TasksSuggestedDismissResponseMessageSchema>;
20926
21279
  export type AgentRewindResponseMessage = z.infer<typeof AgentRewindResponseMessageSchema>;
20927
21280
  export type UpdateAgentResponseMessage = z.infer<typeof UpdateAgentResponseMessageSchema>;
20928
21281
  export type ProjectRenameResponse = z.infer<typeof ProjectRenameResponseSchema>;
20929
21282
  export type ProjectRemoveResponse = z.infer<typeof ProjectRemoveResponseSchema>;
21283
+ export type ProjectLink = z.infer<typeof ProjectLinkSchema>;
21284
+ export type ProjectLinksListResponse = z.infer<typeof ProjectLinksListResponseSchema>;
21285
+ export type ProjectLinksListResponsePayload = z.infer<typeof ProjectLinksListResponsePayloadSchema>;
21286
+ export type ProjectLinksSetResponse = z.infer<typeof ProjectLinksSetResponseSchema>;
21287
+ export type ProjectLinksUnsetResponse = z.infer<typeof ProjectLinksUnsetResponseSchema>;
21288
+ export type ProjectLinksMutationResponsePayload = z.infer<typeof ProjectLinksMutationResponsePayloadSchema>;
21289
+ export type ProjectLinksChanged = z.infer<typeof ProjectLinksChangedSchema>;
20930
21290
  export type WorkspaceTitleSetResponse = z.infer<typeof WorkspaceTitleSetResponseSchema>;
20931
21291
  export type WorkspaceTitleSetResponsePayload = z.infer<typeof WorkspaceTitleSetResponsePayloadSchema>;
20932
21292
  export type WorkspaceCreateRequest = z.infer<typeof WorkspaceCreateRequestSchema>;
@@ -21033,6 +21393,9 @@ export type DeleteAgentRequestMessage = z.infer<typeof DeleteAgentRequestMessage
21033
21393
  export type UpdateAgentRequestMessage = z.infer<typeof UpdateAgentRequestMessageSchema>;
21034
21394
  export type ProjectRenameRequest = z.infer<typeof ProjectRenameRequestSchema>;
21035
21395
  export type ProjectRemoveRequest = z.infer<typeof ProjectRemoveRequestSchema>;
21396
+ export type ProjectLinksListRequest = z.infer<typeof ProjectLinksListRequestSchema>;
21397
+ export type ProjectLinksSetRequest = z.infer<typeof ProjectLinksSetRequestSchema>;
21398
+ export type ProjectLinksUnsetRequest = z.infer<typeof ProjectLinksUnsetRequestSchema>;
21036
21399
  export type WorkspaceTitleSetRequest = z.infer<typeof WorkspaceTitleSetRequestSchema>;
21037
21400
  export type SetAgentModeRequestMessage = z.infer<typeof SetAgentModeRequestMessageSchema>;
21038
21401
  export type SetAgentModelRequestMessage = z.infer<typeof SetAgentModelRequestMessageSchema>;
@@ -21042,6 +21405,8 @@ export type AgentDetachRequestMessage = z.infer<typeof AgentDetachRequestMessage
21042
21405
  export type AgentSubagentStopRequestMessage = z.infer<typeof AgentSubagentStopRequestMessageSchema>;
21043
21406
  export type AgentBackgroundTaskStopRequestMessage = z.infer<typeof AgentBackgroundTaskStopRequestMessageSchema>;
21044
21407
  export type AgentBackgroundTaskClearRequestMessage = z.infer<typeof AgentBackgroundTaskClearRequestMessageSchema>;
21408
+ export type TasksSuggestedStartRequestMessage = z.infer<typeof TasksSuggestedStartRequestMessageSchema>;
21409
+ export type TasksSuggestedDismissRequestMessage = z.infer<typeof TasksSuggestedDismissRequestMessageSchema>;
21045
21410
  export type AgentPersonalitySetRequestMessage = z.infer<typeof AgentPersonalitySetRequestMessageSchema>;
21046
21411
  export type AgentPermissionResponseMessage = z.infer<typeof AgentPermissionResponseMessageSchema>;
21047
21412
  export type CheckoutStatusRequest = z.infer<typeof CheckoutStatusRequestSchema>;
@@ -21641,6 +22006,19 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
21641
22006
  type: z.ZodLiteral<"project.remove.request">;
21642
22007
  projectId: z.ZodString;
21643
22008
  requestId: z.ZodString;
22009
+ }, z.core.$strip>, z.ZodObject<{
22010
+ type: z.ZodLiteral<"project.links.list.request">;
22011
+ requestId: z.ZodString;
22012
+ }, z.core.$strip>, z.ZodObject<{
22013
+ type: z.ZodLiteral<"project.links.set.request">;
22014
+ projectId: z.ZodString;
22015
+ otherProjectId: z.ZodString;
22016
+ requestId: z.ZodString;
22017
+ }, z.core.$strip>, z.ZodObject<{
22018
+ type: z.ZodLiteral<"project.links.unset.request">;
22019
+ projectId: z.ZodString;
22020
+ otherProjectId: z.ZodString;
22021
+ requestId: z.ZodString;
21644
22022
  }, z.core.$strip>, z.ZodObject<{
21645
22023
  type: z.ZodLiteral<"workspace.title.set.request">;
21646
22024
  workspaceId: z.ZodString;
@@ -22273,6 +22651,21 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
22273
22651
  parentAgentId: z.ZodString;
22274
22652
  taskIds: z.ZodArray<z.ZodString>;
22275
22653
  requestId: z.ZodString;
22654
+ }, z.core.$strip>, z.ZodObject<{
22655
+ type: z.ZodLiteral<"tasks.suggested.start.request">;
22656
+ parentAgentId: z.ZodString;
22657
+ taskIds: z.ZodArray<z.ZodString>;
22658
+ mode: z.ZodEnum<{
22659
+ worktree: "worktree";
22660
+ local: "local";
22661
+ in_session: "in_session";
22662
+ }>;
22663
+ requestId: z.ZodString;
22664
+ }, z.core.$strip>, z.ZodObject<{
22665
+ type: z.ZodLiteral<"tasks.suggested.dismiss.request">;
22666
+ parentAgentId: z.ZodString;
22667
+ taskIds: z.ZodArray<z.ZodString>;
22668
+ requestId: z.ZodString;
22276
22669
  }, z.core.$strip>, z.ZodObject<{
22277
22670
  type: z.ZodLiteral<"agent.personality.set.request">;
22278
22671
  agentId: z.ZodString;
@@ -22334,6 +22727,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
22334
22727
  type: z.ZodLiteral<"checkout.git.rollback.request">;
22335
22728
  cwd: z.ZodString;
22336
22729
  paths: z.ZodArray<z.ZodString>;
22730
+ allowWithRunningAgents: z.ZodOptional<z.ZodBoolean>;
22337
22731
  requestId: z.ZodString;
22338
22732
  }, z.core.$strip>, z.ZodObject<{
22339
22733
  type: z.ZodLiteral<"checkout.git.get_operation_log.request">;
@@ -23235,6 +23629,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
23235
23629
  glowA: z.ZodString;
23236
23630
  glowB: z.ZodString;
23237
23631
  }, z.core.$loose>>;
23632
+ personalityName: z.ZodOptional<z.ZodString>;
23238
23633
  requestId: z.ZodString;
23239
23634
  }, z.core.$strip>, z.ZodObject<{
23240
23635
  type: z.ZodLiteral<"artifact.update.request">;
@@ -23601,6 +23996,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23601
23996
  glowA: z.ZodString;
23602
23997
  glowB: z.ZodString;
23603
23998
  }, z.core.$loose>>>;
23999
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23604
24000
  errorMessage: z.ZodNullable<z.ZodString>;
23605
24001
  }, z.core.$strip>;
23606
24002
  }, z.core.$strip>;
@@ -27118,6 +27514,45 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27118
27514
  archivedAt: z.ZodOptional<z.ZodString>;
27119
27515
  }, z.core.$strip>>;
27120
27516
  }, z.core.$strip>;
27517
+ }, z.core.$strip>, z.ZodObject<{
27518
+ type: z.ZodLiteral<"tasks.suggested.start.response">;
27519
+ payload: z.ZodObject<{
27520
+ requestId: z.ZodString;
27521
+ parentAgentId: z.ZodString;
27522
+ accepted: z.ZodBoolean;
27523
+ succeeded: z.ZodNumber;
27524
+ failed: z.ZodNumber;
27525
+ error: z.ZodNullable<z.ZodString>;
27526
+ }, z.core.$strip>;
27527
+ }, z.core.$strip>, z.ZodObject<{
27528
+ type: z.ZodLiteral<"tasks.suggested.dismiss.response">;
27529
+ payload: z.ZodObject<{
27530
+ requestId: z.ZodString;
27531
+ parentAgentId: z.ZodString;
27532
+ accepted: z.ZodBoolean;
27533
+ succeeded: z.ZodNumber;
27534
+ failed: z.ZodNumber;
27535
+ error: z.ZodNullable<z.ZodString>;
27536
+ }, z.core.$strip>;
27537
+ }, z.core.$strip>, z.ZodObject<{
27538
+ type: z.ZodLiteral<"suggested_tasks_changed">;
27539
+ payload: z.ZodObject<{
27540
+ parentAgentId: z.ZodString;
27541
+ tasks: z.ZodArray<z.ZodObject<{
27542
+ taskId: z.ZodString;
27543
+ parentAgentId: z.ZodString;
27544
+ title: z.ZodString;
27545
+ tldr: z.ZodString;
27546
+ cwd: z.ZodOptional<z.ZodString>;
27547
+ state: z.ZodEnum<{
27548
+ pending: "pending";
27549
+ dismissed: "dismissed";
27550
+ started: "started";
27551
+ }>;
27552
+ createdAt: z.ZodString;
27553
+ updatedAt: z.ZodString;
27554
+ }, z.core.$strip>>;
27555
+ }, z.core.$strip>;
27121
27556
  }, z.core.$strip>, z.ZodObject<{
27122
27557
  type: z.ZodLiteral<"agent.personality.set.response">;
27123
27558
  payload: z.ZodObject<{
@@ -27162,6 +27597,46 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27162
27597
  removedWorkspaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
27163
27598
  error: z.ZodNullable<z.ZodString>;
27164
27599
  }, z.core.$strip>;
27600
+ }, z.core.$strip>, z.ZodObject<{
27601
+ type: z.ZodLiteral<"project.links.list.response">;
27602
+ payload: z.ZodObject<{
27603
+ requestId: z.ZodString;
27604
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
27605
+ projectAId: z.ZodString;
27606
+ projectBId: z.ZodString;
27607
+ }, z.core.$strip>>>;
27608
+ error: z.ZodNullable<z.ZodString>;
27609
+ }, z.core.$strip>;
27610
+ }, z.core.$strip>, z.ZodObject<{
27611
+ type: z.ZodLiteral<"project.links.set.response">;
27612
+ payload: z.ZodObject<{
27613
+ requestId: z.ZodString;
27614
+ accepted: z.ZodBoolean;
27615
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
27616
+ projectAId: z.ZodString;
27617
+ projectBId: z.ZodString;
27618
+ }, z.core.$strip>>>;
27619
+ error: z.ZodNullable<z.ZodString>;
27620
+ }, z.core.$strip>;
27621
+ }, z.core.$strip>, z.ZodObject<{
27622
+ type: z.ZodLiteral<"project.links.unset.response">;
27623
+ payload: z.ZodObject<{
27624
+ requestId: z.ZodString;
27625
+ accepted: z.ZodBoolean;
27626
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
27627
+ projectAId: z.ZodString;
27628
+ projectBId: z.ZodString;
27629
+ }, z.core.$strip>>>;
27630
+ error: z.ZodNullable<z.ZodString>;
27631
+ }, z.core.$strip>;
27632
+ }, z.core.$strip>, z.ZodObject<{
27633
+ type: z.ZodLiteral<"project.links.changed">;
27634
+ payload: z.ZodObject<{
27635
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
27636
+ projectAId: z.ZodString;
27637
+ projectBId: z.ZodString;
27638
+ }, z.core.$strip>>>;
27639
+ }, z.core.$strip>;
27165
27640
  }, z.core.$strip>, z.ZodObject<{
27166
27641
  type: z.ZodLiteral<"workspace.title.set.response">;
27167
27642
  payload: z.ZodObject<{
@@ -27716,6 +28191,12 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27716
28191
  }, z.core.$strip>, z.ZodObject<{
27717
28192
  kind: z.ZodLiteral<"git_failed">;
27718
28193
  detail: z.ZodString;
28194
+ }, z.core.$strip>, z.ZodObject<{
28195
+ kind: z.ZodLiteral<"agents_running">;
28196
+ agents: z.ZodArray<z.ZodObject<{
28197
+ id: z.ZodString;
28198
+ title: z.ZodNullable<z.ZodString>;
28199
+ }, z.core.$strip>>;
27719
28200
  }, z.core.$strip>], "kind">>;
27720
28201
  requestId: z.ZodString;
27721
28202
  }, z.core.$strip>;
@@ -29708,6 +30189,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
29708
30189
  succeeded: "succeeded";
29709
30190
  }>>>;
29710
30191
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30192
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30193
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30194
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29711
30195
  pausedAt: z.ZodNullable<z.ZodString>;
29712
30196
  expiresAt: z.ZodNullable<z.ZodString>;
29713
30197
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -29775,6 +30259,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
29775
30259
  succeeded: "succeeded";
29776
30260
  }>>>;
29777
30261
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30262
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30263
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30264
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29778
30265
  pausedAt: z.ZodNullable<z.ZodString>;
29779
30266
  expiresAt: z.ZodNullable<z.ZodString>;
29780
30267
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -29842,6 +30329,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
29842
30329
  succeeded: "succeeded";
29843
30330
  }>>>;
29844
30331
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30332
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30333
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30334
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29845
30335
  pausedAt: z.ZodNullable<z.ZodString>;
29846
30336
  expiresAt: z.ZodNullable<z.ZodString>;
29847
30337
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -29857,6 +30347,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
29857
30347
  }>;
29858
30348
  agentId: z.ZodNullable<z.ZodGUID>;
29859
30349
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30350
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30351
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30352
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29860
30353
  output: z.ZodNullable<z.ZodString>;
29861
30354
  error: z.ZodNullable<z.ZodString>;
29862
30355
  }, z.core.$strip>>;
@@ -29879,6 +30372,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
29879
30372
  }>;
29880
30373
  agentId: z.ZodNullable<z.ZodGUID>;
29881
30374
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30375
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30376
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30377
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29882
30378
  output: z.ZodNullable<z.ZodString>;
29883
30379
  error: z.ZodNullable<z.ZodString>;
29884
30380
  }, z.core.$strip>>;
@@ -29945,6 +30441,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
29945
30441
  succeeded: "succeeded";
29946
30442
  }>>>;
29947
30443
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30444
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30445
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30446
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29948
30447
  pausedAt: z.ZodNullable<z.ZodString>;
29949
30448
  expiresAt: z.ZodNullable<z.ZodString>;
29950
30449
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -30012,6 +30511,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30012
30511
  succeeded: "succeeded";
30013
30512
  }>>>;
30014
30513
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30514
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30515
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30516
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30015
30517
  pausedAt: z.ZodNullable<z.ZodString>;
30016
30518
  expiresAt: z.ZodNullable<z.ZodString>;
30017
30519
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -30086,6 +30588,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30086
30588
  succeeded: "succeeded";
30087
30589
  }>>>;
30088
30590
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30591
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30592
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30593
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30089
30594
  pausedAt: z.ZodNullable<z.ZodString>;
30090
30595
  expiresAt: z.ZodNullable<z.ZodString>;
30091
30596
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -30101,6 +30606,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30101
30606
  }>;
30102
30607
  agentId: z.ZodNullable<z.ZodGUID>;
30103
30608
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30609
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30610
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30611
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30104
30612
  output: z.ZodNullable<z.ZodString>;
30105
30613
  error: z.ZodNullable<z.ZodString>;
30106
30614
  }, z.core.$strip>>;
@@ -30168,6 +30676,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30168
30676
  succeeded: "succeeded";
30169
30677
  }>>>;
30170
30678
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30679
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30680
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30681
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30171
30682
  pausedAt: z.ZodNullable<z.ZodString>;
30172
30683
  expiresAt: z.ZodNullable<z.ZodString>;
30173
30684
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -30183,6 +30694,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30183
30694
  }>;
30184
30695
  agentId: z.ZodNullable<z.ZodGUID>;
30185
30696
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30697
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30698
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30699
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30186
30700
  output: z.ZodNullable<z.ZodString>;
30187
30701
  error: z.ZodNullable<z.ZodString>;
30188
30702
  }, z.core.$strip>>;
@@ -30643,6 +31157,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30643
31157
  glowA: z.ZodString;
30644
31158
  glowB: z.ZodString;
30645
31159
  }, z.core.$loose>>>;
31160
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30646
31161
  errorMessage: z.ZodNullable<z.ZodString>;
30647
31162
  }, z.core.$strip>>;
30648
31163
  success: z.ZodBoolean;
@@ -30678,6 +31193,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30678
31193
  glowA: z.ZodString;
30679
31194
  glowB: z.ZodString;
30680
31195
  }, z.core.$loose>>>;
31196
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30681
31197
  errorMessage: z.ZodNullable<z.ZodString>;
30682
31198
  }, z.core.$strip>;
30683
31199
  success: z.ZodBoolean;
@@ -30713,6 +31229,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30713
31229
  glowA: z.ZodString;
30714
31230
  glowB: z.ZodString;
30715
31231
  }, z.core.$loose>>>;
31232
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30716
31233
  errorMessage: z.ZodNullable<z.ZodString>;
30717
31234
  }, z.core.$strip>;
30718
31235
  success: z.ZodBoolean;
@@ -30748,6 +31265,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30748
31265
  glowA: z.ZodString;
30749
31266
  glowB: z.ZodString;
30750
31267
  }, z.core.$loose>>>;
31268
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30751
31269
  errorMessage: z.ZodNullable<z.ZodString>;
30752
31270
  }, z.core.$strip>;
30753
31271
  success: z.ZodBoolean;
@@ -30783,6 +31301,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30783
31301
  glowA: z.ZodString;
30784
31302
  glowB: z.ZodString;
30785
31303
  }, z.core.$loose>>>;
31304
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30786
31305
  errorMessage: z.ZodNullable<z.ZodString>;
30787
31306
  }, z.core.$strip>;
30788
31307
  success: z.ZodBoolean;
@@ -30825,6 +31344,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30825
31344
  glowA: z.ZodString;
30826
31345
  glowB: z.ZodString;
30827
31346
  }, z.core.$loose>>>;
31347
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30828
31348
  errorMessage: z.ZodNullable<z.ZodString>;
30829
31349
  }, z.core.$strip>;
30830
31350
  success: z.ZodBoolean;
@@ -30868,6 +31388,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30868
31388
  glowA: z.ZodString;
30869
31389
  glowB: z.ZodString;
30870
31390
  }, z.core.$loose>>>;
31391
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30871
31392
  errorMessage: z.ZodNullable<z.ZodString>;
30872
31393
  }, z.core.$strip>;
30873
31394
  }, z.core.$strip>;
@@ -30900,6 +31421,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
30900
31421
  glowA: z.ZodString;
30901
31422
  glowB: z.ZodString;
30902
31423
  }, z.core.$loose>>>;
31424
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30903
31425
  errorMessage: z.ZodNullable<z.ZodString>;
30904
31426
  }, z.core.$strip>;
30905
31427
  }, z.core.$strip>;
@@ -31332,6 +31854,19 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
31332
31854
  type: z.ZodLiteral<"project.remove.request">;
31333
31855
  projectId: z.ZodString;
31334
31856
  requestId: z.ZodString;
31857
+ }, z.core.$strip>, z.ZodObject<{
31858
+ type: z.ZodLiteral<"project.links.list.request">;
31859
+ requestId: z.ZodString;
31860
+ }, z.core.$strip>, z.ZodObject<{
31861
+ type: z.ZodLiteral<"project.links.set.request">;
31862
+ projectId: z.ZodString;
31863
+ otherProjectId: z.ZodString;
31864
+ requestId: z.ZodString;
31865
+ }, z.core.$strip>, z.ZodObject<{
31866
+ type: z.ZodLiteral<"project.links.unset.request">;
31867
+ projectId: z.ZodString;
31868
+ otherProjectId: z.ZodString;
31869
+ requestId: z.ZodString;
31335
31870
  }, z.core.$strip>, z.ZodObject<{
31336
31871
  type: z.ZodLiteral<"workspace.title.set.request">;
31337
31872
  workspaceId: z.ZodString;
@@ -31964,6 +32499,21 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
31964
32499
  parentAgentId: z.ZodString;
31965
32500
  taskIds: z.ZodArray<z.ZodString>;
31966
32501
  requestId: z.ZodString;
32502
+ }, z.core.$strip>, z.ZodObject<{
32503
+ type: z.ZodLiteral<"tasks.suggested.start.request">;
32504
+ parentAgentId: z.ZodString;
32505
+ taskIds: z.ZodArray<z.ZodString>;
32506
+ mode: z.ZodEnum<{
32507
+ worktree: "worktree";
32508
+ local: "local";
32509
+ in_session: "in_session";
32510
+ }>;
32511
+ requestId: z.ZodString;
32512
+ }, z.core.$strip>, z.ZodObject<{
32513
+ type: z.ZodLiteral<"tasks.suggested.dismiss.request">;
32514
+ parentAgentId: z.ZodString;
32515
+ taskIds: z.ZodArray<z.ZodString>;
32516
+ requestId: z.ZodString;
31967
32517
  }, z.core.$strip>, z.ZodObject<{
31968
32518
  type: z.ZodLiteral<"agent.personality.set.request">;
31969
32519
  agentId: z.ZodString;
@@ -32025,6 +32575,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
32025
32575
  type: z.ZodLiteral<"checkout.git.rollback.request">;
32026
32576
  cwd: z.ZodString;
32027
32577
  paths: z.ZodArray<z.ZodString>;
32578
+ allowWithRunningAgents: z.ZodOptional<z.ZodBoolean>;
32028
32579
  requestId: z.ZodString;
32029
32580
  }, z.core.$strip>, z.ZodObject<{
32030
32581
  type: z.ZodLiteral<"checkout.git.get_operation_log.request">;
@@ -32926,6 +33477,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
32926
33477
  glowA: z.ZodString;
32927
33478
  glowB: z.ZodString;
32928
33479
  }, z.core.$loose>>;
33480
+ personalityName: z.ZodOptional<z.ZodString>;
32929
33481
  requestId: z.ZodString;
32930
33482
  }, z.core.$strip>, z.ZodObject<{
32931
33483
  type: z.ZodLiteral<"artifact.update.request">;
@@ -33294,6 +33846,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33294
33846
  glowA: z.ZodString;
33295
33847
  glowB: z.ZodString;
33296
33848
  }, z.core.$loose>>>;
33849
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33297
33850
  errorMessage: z.ZodNullable<z.ZodString>;
33298
33851
  }, z.core.$strip>;
33299
33852
  }, z.core.$strip>;
@@ -36811,6 +37364,45 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
36811
37364
  archivedAt: z.ZodOptional<z.ZodString>;
36812
37365
  }, z.core.$strip>>;
36813
37366
  }, z.core.$strip>;
37367
+ }, z.core.$strip>, z.ZodObject<{
37368
+ type: z.ZodLiteral<"tasks.suggested.start.response">;
37369
+ payload: z.ZodObject<{
37370
+ requestId: z.ZodString;
37371
+ parentAgentId: z.ZodString;
37372
+ accepted: z.ZodBoolean;
37373
+ succeeded: z.ZodNumber;
37374
+ failed: z.ZodNumber;
37375
+ error: z.ZodNullable<z.ZodString>;
37376
+ }, z.core.$strip>;
37377
+ }, z.core.$strip>, z.ZodObject<{
37378
+ type: z.ZodLiteral<"tasks.suggested.dismiss.response">;
37379
+ payload: z.ZodObject<{
37380
+ requestId: z.ZodString;
37381
+ parentAgentId: z.ZodString;
37382
+ accepted: z.ZodBoolean;
37383
+ succeeded: z.ZodNumber;
37384
+ failed: z.ZodNumber;
37385
+ error: z.ZodNullable<z.ZodString>;
37386
+ }, z.core.$strip>;
37387
+ }, z.core.$strip>, z.ZodObject<{
37388
+ type: z.ZodLiteral<"suggested_tasks_changed">;
37389
+ payload: z.ZodObject<{
37390
+ parentAgentId: z.ZodString;
37391
+ tasks: z.ZodArray<z.ZodObject<{
37392
+ taskId: z.ZodString;
37393
+ parentAgentId: z.ZodString;
37394
+ title: z.ZodString;
37395
+ tldr: z.ZodString;
37396
+ cwd: z.ZodOptional<z.ZodString>;
37397
+ state: z.ZodEnum<{
37398
+ pending: "pending";
37399
+ dismissed: "dismissed";
37400
+ started: "started";
37401
+ }>;
37402
+ createdAt: z.ZodString;
37403
+ updatedAt: z.ZodString;
37404
+ }, z.core.$strip>>;
37405
+ }, z.core.$strip>;
36814
37406
  }, z.core.$strip>, z.ZodObject<{
36815
37407
  type: z.ZodLiteral<"agent.personality.set.response">;
36816
37408
  payload: z.ZodObject<{
@@ -36855,6 +37447,46 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
36855
37447
  removedWorkspaceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
36856
37448
  error: z.ZodNullable<z.ZodString>;
36857
37449
  }, z.core.$strip>;
37450
+ }, z.core.$strip>, z.ZodObject<{
37451
+ type: z.ZodLiteral<"project.links.list.response">;
37452
+ payload: z.ZodObject<{
37453
+ requestId: z.ZodString;
37454
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
37455
+ projectAId: z.ZodString;
37456
+ projectBId: z.ZodString;
37457
+ }, z.core.$strip>>>;
37458
+ error: z.ZodNullable<z.ZodString>;
37459
+ }, z.core.$strip>;
37460
+ }, z.core.$strip>, z.ZodObject<{
37461
+ type: z.ZodLiteral<"project.links.set.response">;
37462
+ payload: z.ZodObject<{
37463
+ requestId: z.ZodString;
37464
+ accepted: z.ZodBoolean;
37465
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
37466
+ projectAId: z.ZodString;
37467
+ projectBId: z.ZodString;
37468
+ }, z.core.$strip>>>;
37469
+ error: z.ZodNullable<z.ZodString>;
37470
+ }, z.core.$strip>;
37471
+ }, z.core.$strip>, z.ZodObject<{
37472
+ type: z.ZodLiteral<"project.links.unset.response">;
37473
+ payload: z.ZodObject<{
37474
+ requestId: z.ZodString;
37475
+ accepted: z.ZodBoolean;
37476
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
37477
+ projectAId: z.ZodString;
37478
+ projectBId: z.ZodString;
37479
+ }, z.core.$strip>>>;
37480
+ error: z.ZodNullable<z.ZodString>;
37481
+ }, z.core.$strip>;
37482
+ }, z.core.$strip>, z.ZodObject<{
37483
+ type: z.ZodLiteral<"project.links.changed">;
37484
+ payload: z.ZodObject<{
37485
+ links: z.ZodDefault<z.ZodArray<z.ZodObject<{
37486
+ projectAId: z.ZodString;
37487
+ projectBId: z.ZodString;
37488
+ }, z.core.$strip>>>;
37489
+ }, z.core.$strip>;
36858
37490
  }, z.core.$strip>, z.ZodObject<{
36859
37491
  type: z.ZodLiteral<"workspace.title.set.response">;
36860
37492
  payload: z.ZodObject<{
@@ -37409,6 +38041,12 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37409
38041
  }, z.core.$strip>, z.ZodObject<{
37410
38042
  kind: z.ZodLiteral<"git_failed">;
37411
38043
  detail: z.ZodString;
38044
+ }, z.core.$strip>, z.ZodObject<{
38045
+ kind: z.ZodLiteral<"agents_running">;
38046
+ agents: z.ZodArray<z.ZodObject<{
38047
+ id: z.ZodString;
38048
+ title: z.ZodNullable<z.ZodString>;
38049
+ }, z.core.$strip>>;
37412
38050
  }, z.core.$strip>], "kind">>;
37413
38051
  requestId: z.ZodString;
37414
38052
  }, z.core.$strip>;
@@ -39401,6 +40039,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39401
40039
  succeeded: "succeeded";
39402
40040
  }>>>;
39403
40041
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40042
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40043
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40044
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39404
40045
  pausedAt: z.ZodNullable<z.ZodString>;
39405
40046
  expiresAt: z.ZodNullable<z.ZodString>;
39406
40047
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -39468,6 +40109,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39468
40109
  succeeded: "succeeded";
39469
40110
  }>>>;
39470
40111
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40112
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40113
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40114
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39471
40115
  pausedAt: z.ZodNullable<z.ZodString>;
39472
40116
  expiresAt: z.ZodNullable<z.ZodString>;
39473
40117
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -39535,6 +40179,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39535
40179
  succeeded: "succeeded";
39536
40180
  }>>>;
39537
40181
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40182
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40183
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40184
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39538
40185
  pausedAt: z.ZodNullable<z.ZodString>;
39539
40186
  expiresAt: z.ZodNullable<z.ZodString>;
39540
40187
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -39550,6 +40197,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39550
40197
  }>;
39551
40198
  agentId: z.ZodNullable<z.ZodGUID>;
39552
40199
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40200
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40201
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40202
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39553
40203
  output: z.ZodNullable<z.ZodString>;
39554
40204
  error: z.ZodNullable<z.ZodString>;
39555
40205
  }, z.core.$strip>>;
@@ -39572,6 +40222,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39572
40222
  }>;
39573
40223
  agentId: z.ZodNullable<z.ZodGUID>;
39574
40224
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40225
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40226
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40227
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39575
40228
  output: z.ZodNullable<z.ZodString>;
39576
40229
  error: z.ZodNullable<z.ZodString>;
39577
40230
  }, z.core.$strip>>;
@@ -39638,6 +40291,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39638
40291
  succeeded: "succeeded";
39639
40292
  }>>>;
39640
40293
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40294
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40295
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40296
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39641
40297
  pausedAt: z.ZodNullable<z.ZodString>;
39642
40298
  expiresAt: z.ZodNullable<z.ZodString>;
39643
40299
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -39705,6 +40361,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39705
40361
  succeeded: "succeeded";
39706
40362
  }>>>;
39707
40363
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40364
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40365
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40366
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39708
40367
  pausedAt: z.ZodNullable<z.ZodString>;
39709
40368
  expiresAt: z.ZodNullable<z.ZodString>;
39710
40369
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -39779,6 +40438,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39779
40438
  succeeded: "succeeded";
39780
40439
  }>>>;
39781
40440
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40441
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40442
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40443
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39782
40444
  pausedAt: z.ZodNullable<z.ZodString>;
39783
40445
  expiresAt: z.ZodNullable<z.ZodString>;
39784
40446
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -39794,6 +40456,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39794
40456
  }>;
39795
40457
  agentId: z.ZodNullable<z.ZodGUID>;
39796
40458
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40459
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40460
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40461
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39797
40462
  output: z.ZodNullable<z.ZodString>;
39798
40463
  error: z.ZodNullable<z.ZodString>;
39799
40464
  }, z.core.$strip>>;
@@ -39861,6 +40526,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39861
40526
  succeeded: "succeeded";
39862
40527
  }>>>;
39863
40528
  lastRunError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40529
+ lastRunPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40530
+ lastRunProvider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40531
+ lastRunModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39864
40532
  pausedAt: z.ZodNullable<z.ZodString>;
39865
40533
  expiresAt: z.ZodNullable<z.ZodString>;
39866
40534
  maxRuns: z.ZodNullable<z.ZodNumber>;
@@ -39876,6 +40544,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
39876
40544
  }>;
39877
40545
  agentId: z.ZodNullable<z.ZodGUID>;
39878
40546
  workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40547
+ personalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40548
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40549
+ model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
39879
40550
  output: z.ZodNullable<z.ZodString>;
39880
40551
  error: z.ZodNullable<z.ZodString>;
39881
40552
  }, z.core.$strip>>;
@@ -40336,6 +41007,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40336
41007
  glowA: z.ZodString;
40337
41008
  glowB: z.ZodString;
40338
41009
  }, z.core.$loose>>>;
41010
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40339
41011
  errorMessage: z.ZodNullable<z.ZodString>;
40340
41012
  }, z.core.$strip>>;
40341
41013
  success: z.ZodBoolean;
@@ -40371,6 +41043,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40371
41043
  glowA: z.ZodString;
40372
41044
  glowB: z.ZodString;
40373
41045
  }, z.core.$loose>>>;
41046
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40374
41047
  errorMessage: z.ZodNullable<z.ZodString>;
40375
41048
  }, z.core.$strip>;
40376
41049
  success: z.ZodBoolean;
@@ -40406,6 +41079,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40406
41079
  glowA: z.ZodString;
40407
41080
  glowB: z.ZodString;
40408
41081
  }, z.core.$loose>>>;
41082
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40409
41083
  errorMessage: z.ZodNullable<z.ZodString>;
40410
41084
  }, z.core.$strip>;
40411
41085
  success: z.ZodBoolean;
@@ -40441,6 +41115,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40441
41115
  glowA: z.ZodString;
40442
41116
  glowB: z.ZodString;
40443
41117
  }, z.core.$loose>>>;
41118
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40444
41119
  errorMessage: z.ZodNullable<z.ZodString>;
40445
41120
  }, z.core.$strip>;
40446
41121
  success: z.ZodBoolean;
@@ -40476,6 +41151,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40476
41151
  glowA: z.ZodString;
40477
41152
  glowB: z.ZodString;
40478
41153
  }, z.core.$loose>>>;
41154
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40479
41155
  errorMessage: z.ZodNullable<z.ZodString>;
40480
41156
  }, z.core.$strip>;
40481
41157
  success: z.ZodBoolean;
@@ -40518,6 +41194,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40518
41194
  glowA: z.ZodString;
40519
41195
  glowB: z.ZodString;
40520
41196
  }, z.core.$loose>>>;
41197
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40521
41198
  errorMessage: z.ZodNullable<z.ZodString>;
40522
41199
  }, z.core.$strip>;
40523
41200
  success: z.ZodBoolean;
@@ -40561,6 +41238,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40561
41238
  glowA: z.ZodString;
40562
41239
  glowB: z.ZodString;
40563
41240
  }, z.core.$loose>>>;
41241
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40564
41242
  errorMessage: z.ZodNullable<z.ZodString>;
40565
41243
  }, z.core.$strip>;
40566
41244
  }, z.core.$strip>;
@@ -40593,6 +41271,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
40593
41271
  glowA: z.ZodString;
40594
41272
  glowB: z.ZodString;
40595
41273
  }, z.core.$loose>>>;
41274
+ generationPersonalityName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40596
41275
  errorMessage: z.ZodNullable<z.ZodString>;
40597
41276
  }, z.core.$strip>;
40598
41277
  }, z.core.$strip>;