@pellux/goodvibes-contracts 1.8.0 → 1.9.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.
@@ -302,7 +302,11 @@ export interface OperatorMethodInputMap {
302
302
  "automation.runs.get": {
303
303
  runId: string;
304
304
  };
305
- "automation.runs.list": {};
305
+ "automation.runs.list": {
306
+ limit?: number;
307
+ cursor?: string;
308
+ since?: number;
309
+ };
306
310
  "automation.runs.retry": {
307
311
  runId: string;
308
312
  };
@@ -719,6 +723,10 @@ export interface OperatorMethodInputMap {
719
723
  "fleet.attempts.pick": {
720
724
  groupId: string;
721
725
  winnerItemId: string;
726
+ confirm?: boolean;
727
+ };
728
+ "fleet.graph.get": {
729
+ workstreamId: string;
722
730
  };
723
731
  "fleet.list": {
724
732
  kinds?: readonly string[];
@@ -726,6 +734,10 @@ export interface OperatorMethodInputMap {
726
734
  limit?: number;
727
735
  cursor?: string;
728
736
  };
737
+ "fleet.observed.steer": {
738
+ id: string;
739
+ text: string;
740
+ };
729
741
  "fleet.snapshot": {};
730
742
  "fleet.unarchive": {
731
743
  id: string;
@@ -1078,6 +1090,7 @@ export interface OperatorMethodInputMap {
1078
1090
  readonly [key: string]: unknown;
1079
1091
  });
1080
1092
  "memory.doctor": {};
1093
+ "memory.consolidation.receipts": {};
1081
1094
  "memory.embeddings.default.set": ({
1082
1095
  providerId: string;
1083
1096
  } & {
@@ -1258,6 +1271,10 @@ export interface OperatorMethodInputMap {
1258
1271
  "permissions.rules.delete": {
1259
1272
  ruleId: string;
1260
1273
  };
1274
+ "power.keepAwake.set": {
1275
+ enabled: boolean;
1276
+ };
1277
+ "power.status.get": {};
1261
1278
  "principals.create": {
1262
1279
  name: string;
1263
1280
  kind: "bot" | "service" | "token" | "user";
@@ -1574,6 +1591,18 @@ export interface OperatorMethodInputMap {
1574
1591
  sessionId: string;
1575
1592
  mode: "accept-edits" | "auto" | "normal" | "plan";
1576
1593
  };
1594
+ "sessions.queuedMessages.delete": {
1595
+ sessionId: string;
1596
+ messageId: string;
1597
+ };
1598
+ "sessions.queuedMessages.edit": {
1599
+ sessionId: string;
1600
+ messageId: string;
1601
+ text: string;
1602
+ };
1603
+ "sessions.queuedMessages.list": {
1604
+ sessionId: string;
1605
+ };
1577
1606
  "sessions.followUp": ({
1578
1607
  body: string;
1579
1608
  surfaceKind?: string;
@@ -1685,6 +1714,10 @@ export interface OperatorMethodInputMap {
1685
1714
  } & {
1686
1715
  readonly [key: string]: unknown;
1687
1716
  });
1717
+ "sessions.toolCalls.cancel": {
1718
+ sessionId: string;
1719
+ callId: string;
1720
+ };
1688
1721
  "settings.snapshot": {};
1689
1722
  "surfaces.list": {};
1690
1723
  "skills.create": {
@@ -2074,6 +2107,73 @@ export interface OperatorMethodInputMap {
2074
2107
  path: string;
2075
2108
  };
2076
2109
  "worktrees.snapshot": {};
2110
+ "push.subscriptions.reconcile": {
2111
+ deviceId: string;
2112
+ endpoint: string;
2113
+ keys: {
2114
+ p256dh: string;
2115
+ auth: string;
2116
+ };
2117
+ };
2118
+ "pairing.tokens.list": {};
2119
+ "pairing.tokens.create": {
2120
+ name: string;
2121
+ };
2122
+ "pairing.tokens.migrate": {
2123
+ name: string;
2124
+ };
2125
+ "pairing.tokens.rename": {
2126
+ id: string;
2127
+ name: string;
2128
+ };
2129
+ "pairing.tokens.delete": {
2130
+ id: string;
2131
+ };
2132
+ "pairing.tokens.revokeShared": {};
2133
+ "pairing.handoff.create": {
2134
+ name: string;
2135
+ offers?: readonly string[];
2136
+ };
2137
+ "pairing.handoff.complete": {
2138
+ accept?: {
2139
+ notifications?: {
2140
+ endpoint: string;
2141
+ keys: {
2142
+ p256dh: string;
2143
+ auth: string;
2144
+ };
2145
+ deviceId?: string;
2146
+ };
2147
+ relay?: boolean;
2148
+ passkey?: {
2149
+ rpId: string;
2150
+ origin: string;
2151
+ credentialId: string;
2152
+ publicKeyCose: string;
2153
+ };
2154
+ };
2155
+ };
2156
+ "pairing.posture.get": {
2157
+ origin?: string;
2158
+ };
2159
+ "tailscale.get": {};
2160
+ "tailscale.serve.run": {};
2161
+ "fleet.conflicts.list": {
2162
+ workstreamId?: string;
2163
+ };
2164
+ "fleet.conflicts.resolve": {
2165
+ itemId: string;
2166
+ };
2167
+ "worktrees.discard": {
2168
+ path: string;
2169
+ };
2170
+ "acp.agents.list": {};
2171
+ "acp.sessions.create": {
2172
+ agentId: string;
2173
+ cwd: string;
2174
+ title?: string;
2175
+ prompt?: string;
2176
+ };
2077
2177
  }
2078
2178
  export interface OperatorMethodOutputMap {
2079
2179
  "accounts.snapshot": {
@@ -2595,13 +2695,13 @@ export interface OperatorMethodOutputMap {
2595
2695
  labels: readonly string[];
2596
2696
  createdAt: number;
2597
2697
  updatedAt: number;
2598
- status: "cancelled" | "completed" | "failed" | "queued" | "running";
2698
+ status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
2599
2699
  agentId?: string;
2600
2700
  triggeredBy: ({
2601
2701
  id: string;
2602
2702
  kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
2603
2703
  label: string;
2604
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
2704
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
2605
2705
  routeId?: string;
2606
2706
  enabled: boolean;
2607
2707
  createdAt: number;
@@ -2621,7 +2721,7 @@ export interface OperatorMethodOutputMap {
2621
2721
  routeId?: string;
2622
2722
  threadId?: string;
2623
2723
  channelId?: string;
2624
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
2724
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
2625
2725
  pinnedSessionId?: string;
2626
2726
  preserveThread?: boolean;
2627
2727
  createIfMissing?: boolean;
@@ -2635,7 +2735,7 @@ export interface OperatorMethodOutputMap {
2635
2735
  routeId?: string;
2636
2736
  threadId?: string;
2637
2737
  channelId?: string;
2638
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
2738
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
2639
2739
  pinnedSessionId?: string;
2640
2740
  preserveThread?: boolean;
2641
2741
  createIfMissing?: boolean;
@@ -2668,7 +2768,7 @@ export interface OperatorMethodOutputMap {
2668
2768
  id?: string;
2669
2769
  url?: string;
2670
2770
  routeId?: string;
2671
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
2771
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
2672
2772
  metadata?: ({} & {
2673
2773
  readonly [key: string]: ({} & {
2674
2774
  readonly [key: string]: JsonValue;
@@ -2690,7 +2790,7 @@ export interface OperatorMethodOutputMap {
2690
2790
  route?: ({
2691
2791
  id: string;
2692
2792
  kind: "channel" | "message" | "session" | "thread";
2693
- surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
2793
+ surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
2694
2794
  surfaceId: string;
2695
2795
  externalId: string;
2696
2796
  sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
@@ -2725,7 +2825,7 @@ export interface OperatorMethodOutputMap {
2725
2825
  jobId: string;
2726
2826
  target: {
2727
2827
  kind: "integration" | "link" | "none" | "surface" | "webhook";
2728
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
2828
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
2729
2829
  address?: string;
2730
2830
  routeId?: string;
2731
2831
  label?: string;
@@ -3299,13 +3399,13 @@ export interface OperatorMethodOutputMap {
3299
3399
  labels: readonly string[];
3300
3400
  createdAt: number;
3301
3401
  updatedAt: number;
3302
- status: "cancelled" | "completed" | "failed" | "queued" | "running";
3402
+ status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
3303
3403
  agentId?: string;
3304
3404
  triggeredBy: ({
3305
3405
  id: string;
3306
3406
  kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
3307
3407
  label: string;
3308
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3408
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3309
3409
  routeId?: string;
3310
3410
  enabled: boolean;
3311
3411
  createdAt: number;
@@ -3325,7 +3425,7 @@ export interface OperatorMethodOutputMap {
3325
3425
  routeId?: string;
3326
3426
  threadId?: string;
3327
3427
  channelId?: string;
3328
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3428
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3329
3429
  pinnedSessionId?: string;
3330
3430
  preserveThread?: boolean;
3331
3431
  createIfMissing?: boolean;
@@ -3339,7 +3439,7 @@ export interface OperatorMethodOutputMap {
3339
3439
  routeId?: string;
3340
3440
  threadId?: string;
3341
3441
  channelId?: string;
3342
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3442
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3343
3443
  pinnedSessionId?: string;
3344
3444
  preserveThread?: boolean;
3345
3445
  createIfMissing?: boolean;
@@ -3372,7 +3472,7 @@ export interface OperatorMethodOutputMap {
3372
3472
  id?: string;
3373
3473
  url?: string;
3374
3474
  routeId?: string;
3375
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3475
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3376
3476
  metadata?: ({} & {
3377
3477
  readonly [key: string]: ({} & {
3378
3478
  readonly [key: string]: JsonValue;
@@ -3394,7 +3494,7 @@ export interface OperatorMethodOutputMap {
3394
3494
  route?: ({
3395
3495
  id: string;
3396
3496
  kind: "channel" | "message" | "session" | "thread";
3397
- surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3497
+ surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3398
3498
  surfaceId: string;
3399
3499
  externalId: string;
3400
3500
  sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
@@ -3429,7 +3529,7 @@ export interface OperatorMethodOutputMap {
3429
3529
  jobId: string;
3430
3530
  target: {
3431
3531
  kind: "integration" | "link" | "none" | "surface" | "webhook";
3432
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3532
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3433
3533
  address?: string;
3434
3534
  routeId?: string;
3435
3535
  label?: string;
@@ -3483,13 +3583,13 @@ export interface OperatorMethodOutputMap {
3483
3583
  labels: readonly string[];
3484
3584
  createdAt: number;
3485
3585
  updatedAt: number;
3486
- status: "cancelled" | "completed" | "failed" | "queued" | "running";
3586
+ status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
3487
3587
  agentId?: string;
3488
3588
  triggeredBy: ({
3489
3589
  id: string;
3490
3590
  kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
3491
3591
  label: string;
3492
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3592
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3493
3593
  routeId?: string;
3494
3594
  enabled: boolean;
3495
3595
  createdAt: number;
@@ -3509,7 +3609,7 @@ export interface OperatorMethodOutputMap {
3509
3609
  routeId?: string;
3510
3610
  threadId?: string;
3511
3611
  channelId?: string;
3512
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3612
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3513
3613
  pinnedSessionId?: string;
3514
3614
  preserveThread?: boolean;
3515
3615
  createIfMissing?: boolean;
@@ -3523,7 +3623,7 @@ export interface OperatorMethodOutputMap {
3523
3623
  routeId?: string;
3524
3624
  threadId?: string;
3525
3625
  channelId?: string;
3526
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3626
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3527
3627
  pinnedSessionId?: string;
3528
3628
  preserveThread?: boolean;
3529
3629
  createIfMissing?: boolean;
@@ -3556,7 +3656,7 @@ export interface OperatorMethodOutputMap {
3556
3656
  id?: string;
3557
3657
  url?: string;
3558
3658
  routeId?: string;
3559
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3659
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3560
3660
  metadata?: ({} & {
3561
3661
  readonly [key: string]: ({} & {
3562
3662
  readonly [key: string]: JsonValue;
@@ -3578,7 +3678,7 @@ export interface OperatorMethodOutputMap {
3578
3678
  route?: ({
3579
3679
  id: string;
3580
3680
  kind: "channel" | "message" | "session" | "thread";
3581
- surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3681
+ surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3582
3682
  surfaceId: string;
3583
3683
  externalId: string;
3584
3684
  sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
@@ -3613,7 +3713,7 @@ export interface OperatorMethodOutputMap {
3613
3713
  jobId: string;
3614
3714
  target: {
3615
3715
  kind: "integration" | "link" | "none" | "surface" | "webhook";
3616
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3716
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3617
3717
  address?: string;
3618
3718
  routeId?: string;
3619
3719
  label?: string;
@@ -3665,7 +3765,7 @@ export interface OperatorMethodOutputMap {
3665
3765
  jobId: string;
3666
3766
  target: {
3667
3767
  kind: "integration" | "link" | "none" | "surface" | "webhook";
3668
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3768
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3669
3769
  address?: string;
3670
3770
  routeId?: string;
3671
3771
  label?: string;
@@ -3686,13 +3786,13 @@ export interface OperatorMethodOutputMap {
3686
3786
  labels: readonly string[];
3687
3787
  createdAt: number;
3688
3788
  updatedAt: number;
3689
- status: "cancelled" | "completed" | "failed" | "queued" | "running";
3789
+ status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
3690
3790
  agentId?: string;
3691
3791
  triggeredBy: ({
3692
3792
  id: string;
3693
3793
  kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
3694
3794
  label: string;
3695
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3795
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3696
3796
  routeId?: string;
3697
3797
  enabled: boolean;
3698
3798
  createdAt: number;
@@ -3712,7 +3812,7 @@ export interface OperatorMethodOutputMap {
3712
3812
  routeId?: string;
3713
3813
  threadId?: string;
3714
3814
  channelId?: string;
3715
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3815
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3716
3816
  pinnedSessionId?: string;
3717
3817
  preserveThread?: boolean;
3718
3818
  createIfMissing?: boolean;
@@ -3726,7 +3826,7 @@ export interface OperatorMethodOutputMap {
3726
3826
  routeId?: string;
3727
3827
  threadId?: string;
3728
3828
  channelId?: string;
3729
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3829
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3730
3830
  pinnedSessionId?: string;
3731
3831
  preserveThread?: boolean;
3732
3832
  createIfMissing?: boolean;
@@ -3759,7 +3859,7 @@ export interface OperatorMethodOutputMap {
3759
3859
  id?: string;
3760
3860
  url?: string;
3761
3861
  routeId?: string;
3762
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3862
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3763
3863
  metadata?: ({} & {
3764
3864
  readonly [key: string]: ({} & {
3765
3865
  readonly [key: string]: JsonValue;
@@ -3781,7 +3881,7 @@ export interface OperatorMethodOutputMap {
3781
3881
  route?: ({
3782
3882
  id: string;
3783
3883
  kind: "channel" | "message" | "session" | "thread";
3784
- surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3884
+ surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3785
3885
  surfaceId: string;
3786
3886
  externalId: string;
3787
3887
  sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
@@ -3816,7 +3916,7 @@ export interface OperatorMethodOutputMap {
3816
3916
  jobId: string;
3817
3917
  target: {
3818
3918
  kind: "integration" | "link" | "none" | "surface" | "webhook";
3819
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3919
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3820
3920
  address?: string;
3821
3921
  routeId?: string;
3822
3922
  label?: string;
@@ -3870,13 +3970,13 @@ export interface OperatorMethodOutputMap {
3870
3970
  labels: readonly string[];
3871
3971
  createdAt: number;
3872
3972
  updatedAt: number;
3873
- status: "cancelled" | "completed" | "failed" | "queued" | "running";
3973
+ status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
3874
3974
  agentId?: string;
3875
3975
  triggeredBy: ({
3876
3976
  id: string;
3877
3977
  kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
3878
3978
  label: string;
3879
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3979
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3880
3980
  routeId?: string;
3881
3981
  enabled: boolean;
3882
3982
  createdAt: number;
@@ -3896,7 +3996,7 @@ export interface OperatorMethodOutputMap {
3896
3996
  routeId?: string;
3897
3997
  threadId?: string;
3898
3998
  channelId?: string;
3899
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
3999
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3900
4000
  pinnedSessionId?: string;
3901
4001
  preserveThread?: boolean;
3902
4002
  createIfMissing?: boolean;
@@ -3910,7 +4010,7 @@ export interface OperatorMethodOutputMap {
3910
4010
  routeId?: string;
3911
4011
  threadId?: string;
3912
4012
  channelId?: string;
3913
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
4013
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3914
4014
  pinnedSessionId?: string;
3915
4015
  preserveThread?: boolean;
3916
4016
  createIfMissing?: boolean;
@@ -3943,7 +4043,7 @@ export interface OperatorMethodOutputMap {
3943
4043
  id?: string;
3944
4044
  url?: string;
3945
4045
  routeId?: string;
3946
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
4046
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3947
4047
  metadata?: ({} & {
3948
4048
  readonly [key: string]: ({} & {
3949
4049
  readonly [key: string]: JsonValue;
@@ -3965,7 +4065,7 @@ export interface OperatorMethodOutputMap {
3965
4065
  route?: ({
3966
4066
  id: string;
3967
4067
  kind: "channel" | "message" | "session" | "thread";
3968
- surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
4068
+ surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
3969
4069
  surfaceId: string;
3970
4070
  externalId: string;
3971
4071
  sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
@@ -4000,7 +4100,7 @@ export interface OperatorMethodOutputMap {
4000
4100
  jobId: string;
4001
4101
  target: {
4002
4102
  kind: "integration" | "link" | "none" | "surface" | "webhook";
4003
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
4103
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
4004
4104
  address?: string;
4005
4105
  routeId?: string;
4006
4106
  label?: string;
@@ -5752,7 +5852,7 @@ export interface OperatorMethodOutputMap {
5752
5852
  capturedAt: number;
5753
5853
  nodes: readonly (({
5754
5854
  id: string;
5755
- kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
5855
+ kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
5756
5856
  parentId?: string;
5757
5857
  label: string;
5758
5858
  task?: string;
@@ -5790,13 +5890,41 @@ export interface OperatorMethodOutputMap {
5790
5890
  steerable: boolean;
5791
5891
  };
5792
5892
  needsAttention?: {
5793
- reason: "approval" | "input";
5893
+ reason: "approval" | "conflict" | "input" | "pick";
5794
5894
  detail?: string;
5795
5895
  };
5796
5896
  sessionRef?: {
5797
5897
  sessionId?: string;
5798
5898
  agentId?: string;
5799
5899
  };
5900
+ review?: {
5901
+ score: number;
5902
+ passed: boolean;
5903
+ cycles: number;
5904
+ checklist: readonly ({
5905
+ item: string;
5906
+ verified: boolean;
5907
+ evidence: string;
5908
+ howExercised?: string;
5909
+ })[];
5910
+ };
5911
+ observed?: {
5912
+ externalKind: "claude-code" | "codex" | "opencode" | "unknown";
5913
+ pid: number;
5914
+ cwd?: string;
5915
+ liveness: {
5916
+ state: "active" | "quiet";
5917
+ cpuSeconds: number;
5918
+ detail: string;
5919
+ };
5920
+ steer: {
5921
+ kind: "none" | "tmux";
5922
+ paneId?: string;
5923
+ tty?: string;
5924
+ reason?: string;
5925
+ };
5926
+ steerDrillInOnly: boolean;
5927
+ };
5800
5928
  } & {
5801
5929
  readonly [key: string]: unknown;
5802
5930
  }))[];
@@ -5851,15 +5979,87 @@ export interface OperatorMethodOutputMap {
5851
5979
  })[];
5852
5980
  };
5853
5981
  "fleet.attempts.pick": {
5982
+ applied: boolean;
5854
5983
  groupId: string;
5855
5984
  winnerItemId: string;
5856
- loserItemIds: readonly string[];
5857
- auto: boolean;
5985
+ loserItemIds?: readonly string[];
5986
+ auto?: boolean;
5987
+ requiresConfirm?: boolean;
5988
+ group?: {
5989
+ groupId: string;
5990
+ workstreamId: string;
5991
+ sourceTitle: string;
5992
+ ready: boolean;
5993
+ candidates: readonly ({
5994
+ itemId: string;
5995
+ attemptIndex: number;
5996
+ state: "failed" | "held-merge";
5997
+ title: string;
5998
+ worktreePath: null | string;
5999
+ branch: null | string;
6000
+ usage: {
6001
+ inputTokens: number;
6002
+ outputTokens: number;
6003
+ cacheReadTokens: number;
6004
+ cacheWriteTokens: number;
6005
+ reasoningTokens?: number;
6006
+ llmCallCount: number;
6007
+ turnCount: number;
6008
+ toolCallCount: number;
6009
+ costUsd: null | number;
6010
+ costState: "estimated" | "priced" | "unpriced";
6011
+ costSource?: "catalog" | "mixed" | "provider" | "user";
6012
+ pricingAsOf?: string;
6013
+ };
6014
+ failureReason: null | string;
6015
+ diff: null | {
6016
+ files: readonly string[];
6017
+ unifiedDiff: string;
6018
+ stat: string;
6019
+ };
6020
+ })[];
6021
+ autoAccept: boolean;
6022
+ judgment: null | {
6023
+ proposedWinnerItemId: null | string;
6024
+ reasons: readonly string[];
6025
+ model: null | string;
6026
+ scoredBy: "model";
6027
+ };
6028
+ };
6029
+ };
6030
+ "fleet.graph.get": {
6031
+ workstreamId: string;
6032
+ title: string;
6033
+ nodes: readonly ({
6034
+ id: string;
6035
+ title: string;
6036
+ state: string;
6037
+ cluster?: string;
6038
+ files: readonly string[];
6039
+ mergeState?: string;
6040
+ blockedReason?: string;
6041
+ orphaned: boolean;
6042
+ remainingDepth: number;
6043
+ stalled: boolean;
6044
+ agentId?: string;
6045
+ })[];
6046
+ edges: readonly ({
6047
+ from: string;
6048
+ to: string;
6049
+ })[];
6050
+ pool: null | {
6051
+ ready: number;
6052
+ running: number;
6053
+ atCap: boolean;
6054
+ capKey: string;
6055
+ maxSize: number;
6056
+ refusal?: string;
6057
+ };
5858
6058
  };
5859
6059
  "fleet.list": {
5860
6060
  items: readonly (({
5861
6061
  id: string;
5862
- kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
6062
+ kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
5863
6063
  parentId?: string;
5864
6064
  label: string;
5865
6065
  task?: string;
@@ -5897,13 +6097,41 @@ export interface OperatorMethodOutputMap {
5897
6097
  steerable: boolean;
5898
6098
  };
5899
6099
  needsAttention?: {
5900
- reason: "approval" | "input";
6100
+ reason: "approval" | "conflict" | "input" | "pick";
5901
6101
  detail?: string;
5902
6102
  };
5903
6103
  sessionRef?: {
5904
6104
  sessionId?: string;
5905
6105
  agentId?: string;
5906
6106
  };
6107
+ review?: {
6108
+ score: number;
6109
+ passed: boolean;
6110
+ cycles: number;
6111
+ checklist: readonly ({
6112
+ item: string;
6113
+ verified: boolean;
6114
+ evidence: string;
6115
+ howExercised?: string;
6116
+ })[];
6117
+ };
6118
+ observed?: {
6119
+ externalKind: "claude-code" | "codex" | "opencode" | "unknown";
6120
+ pid: number;
6121
+ cwd?: string;
6122
+ liveness: {
6123
+ state: "active" | "quiet";
6124
+ cpuSeconds: number;
6125
+ detail: string;
6126
+ };
6127
+ steer: {
6128
+ kind: "none" | "tmux";
6129
+ paneId?: string;
6130
+ tty?: string;
6131
+ reason?: string;
6132
+ };
6133
+ steerDrillInOnly: boolean;
6134
+ };
5907
6135
  } & {
5908
6136
  readonly [key: string]: unknown;
5909
6137
  }))[];
@@ -5911,11 +6139,16 @@ export interface OperatorMethodOutputMap {
5911
6139
  hasMore: boolean;
5912
6140
  capturedAt: number;
5913
6141
  };
6142
+ "fleet.observed.steer": {
6143
+ queued: boolean;
6144
+ messageId?: string;
6145
+ reason?: string;
6146
+ };
5914
6147
  "fleet.snapshot": {
5915
6148
  capturedAt: number;
5916
6149
  nodes: readonly (({
5917
6150
  id: string;
5918
- kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
6151
+ kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
5919
6152
  parentId?: string;
5920
6153
  label: string;
5921
6154
  task?: string;
@@ -5953,13 +6186,41 @@ export interface OperatorMethodOutputMap {
5953
6186
  steerable: boolean;
5954
6187
  };
5955
6188
  needsAttention?: {
5956
- reason: "approval" | "input";
6189
+ reason: "approval" | "conflict" | "input" | "pick";
5957
6190
  detail?: string;
5958
6191
  };
5959
6192
  sessionRef?: {
5960
6193
  sessionId?: string;
5961
6194
  agentId?: string;
5962
6195
  };
6196
+ review?: {
6197
+ score: number;
6198
+ passed: boolean;
6199
+ cycles: number;
6200
+ checklist: readonly ({
6201
+ item: string;
6202
+ verified: boolean;
6203
+ evidence: string;
6204
+ howExercised?: string;
6205
+ })[];
6206
+ };
6207
+ observed?: {
6208
+ externalKind: "claude-code" | "codex" | "opencode" | "unknown";
6209
+ pid: number;
6210
+ cwd?: string;
6211
+ liveness: {
6212
+ state: "active" | "quiet";
6213
+ cpuSeconds: number;
6214
+ detail: string;
6215
+ };
6216
+ steer: {
6217
+ kind: "none" | "tmux";
6218
+ paneId?: string;
6219
+ tty?: string;
6220
+ reason?: string;
6221
+ };
6222
+ steerDrillInOnly: boolean;
6223
+ };
5963
6224
  } & {
5964
6225
  readonly [key: string]: unknown;
5965
6226
  }))[];
@@ -7524,6 +7785,38 @@ export interface OperatorMethodOutputMap {
7524
7785
  };
7525
7786
  checkedAt: number;
7526
7787
  };
7788
+ "memory.consolidation.receipts": {
7789
+ receipts: readonly ({
7790
+ runId: string;
7791
+ ranAt: string;
7792
+ trigger: string;
7793
+ idle: boolean;
7794
+ scanned: number;
7795
+ merged: readonly (({} & {
7796
+ readonly [key: string]: unknown;
7797
+ }))[];
7798
+ archived: readonly (({} & {
7799
+ readonly [key: string]: unknown;
7800
+ }))[];
7801
+ decayed: readonly (({} & {
7802
+ readonly [key: string]: unknown;
7803
+ }))[];
7804
+ proposed: readonly ({
7805
+ kind: "contradiction" | "cross-scope-duplicate" | "stale-delete";
7806
+ ids: readonly string[];
7807
+ route: string;
7808
+ reason: string;
7809
+ })[];
7810
+ usageSignalAvailable: boolean;
7811
+ note: string;
7812
+ })[];
7813
+ pendingProposals: readonly ({
7814
+ kind: "contradiction" | "cross-scope-duplicate" | "stale-delete";
7815
+ ids: readonly string[];
7816
+ route: string;
7817
+ reason: string;
7818
+ })[];
7819
+ };
7527
7820
  "memory.embeddings.default.set": {
7528
7821
  vector: ({
7529
7822
  backend: "sqlite-vec";
@@ -7804,6 +8097,46 @@ export interface OperatorMethodOutputMap {
7804
8097
  "permissions.rules.delete": {
7805
8098
  deleted: boolean;
7806
8099
  };
8100
+ "power.keepAwake.set": {
8101
+ platform: string;
8102
+ work: {
8103
+ held: boolean;
8104
+ grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
8105
+ deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
8106
+ reasons: readonly string[];
8107
+ heldSince: null | number;
8108
+ capMinutes: number;
8109
+ capExpiresAt: null | number;
8110
+ capExpired: boolean;
8111
+ };
8112
+ keepAwake: {
8113
+ enabled: boolean;
8114
+ held: boolean;
8115
+ grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
8116
+ deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
8117
+ note: null | string;
8118
+ };
8119
+ };
8120
+ "power.status.get": {
8121
+ platform: string;
8122
+ work: {
8123
+ held: boolean;
8124
+ grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
8125
+ deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
8126
+ reasons: readonly string[];
8127
+ heldSince: null | number;
8128
+ capMinutes: number;
8129
+ capExpiresAt: null | number;
8130
+ capExpired: boolean;
8131
+ };
8132
+ keepAwake: {
8133
+ enabled: boolean;
8134
+ held: boolean;
8135
+ grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
8136
+ deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
8137
+ note: null | string;
8138
+ };
8139
+ };
7807
8140
  "principals.create": {
7808
8141
  principal: {
7809
8142
  id: string;
@@ -9275,15 +9608,15 @@ export interface OperatorMethodOutputMap {
9275
9608
  schedule: {
9276
9609
  kind: "at";
9277
9610
  at: number;
9611
+ } | {
9612
+ kind: "every";
9613
+ intervalMs: number;
9614
+ anchorAt?: number;
9278
9615
  } | {
9279
9616
  kind: "cron";
9280
9617
  expression: string;
9281
9618
  timezone?: string;
9282
9619
  staggerMs?: number;
9283
- } | {
9284
- kind: "every";
9285
- intervalMs: number;
9286
- anchorAt?: number;
9287
9620
  };
9288
9621
  execution: {
9289
9622
  prompt?: string;
@@ -9294,7 +9627,7 @@ export interface OperatorMethodOutputMap {
9294
9627
  routeId?: string;
9295
9628
  threadId?: string;
9296
9629
  channelId?: string;
9297
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9630
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9298
9631
  pinnedSessionId?: string;
9299
9632
  preserveThread?: boolean;
9300
9633
  createIfMissing?: boolean;
@@ -9327,7 +9660,7 @@ export interface OperatorMethodOutputMap {
9327
9660
  id?: string;
9328
9661
  url?: string;
9329
9662
  routeId?: string;
9330
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9663
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9331
9664
  metadata?: ({} & {
9332
9665
  readonly [key: string]: ({} & {
9333
9666
  readonly [key: string]: JsonValue;
@@ -9340,14 +9673,14 @@ export interface OperatorMethodOutputMap {
9340
9673
  mode: "integration" | "link" | "none" | "surface" | "webhook";
9341
9674
  targets: readonly ({
9342
9675
  kind: "integration" | "link" | "none" | "surface" | "webhook";
9343
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9676
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9344
9677
  address?: string;
9345
9678
  routeId?: string;
9346
9679
  label?: string;
9347
9680
  })[];
9348
9681
  fallbackTargets: readonly ({
9349
9682
  kind: "integration" | "link" | "none" | "surface" | "webhook";
9350
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9683
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9351
9684
  address?: string;
9352
9685
  routeId?: string;
9353
9686
  label?: string;
@@ -9376,7 +9709,7 @@ export interface OperatorMethodOutputMap {
9376
9709
  id: string;
9377
9710
  kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
9378
9711
  label: string;
9379
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9712
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9380
9713
  routeId?: string;
9381
9714
  enabled: boolean;
9382
9715
  createdAt: number;
@@ -9413,13 +9746,13 @@ export interface OperatorMethodOutputMap {
9413
9746
  labels: readonly string[];
9414
9747
  createdAt: number;
9415
9748
  updatedAt: number;
9416
- status: "cancelled" | "completed" | "failed" | "queued" | "running";
9749
+ status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
9417
9750
  agentId?: string;
9418
9751
  triggeredBy: ({
9419
9752
  id: string;
9420
9753
  kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
9421
9754
  label: string;
9422
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9755
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9423
9756
  routeId?: string;
9424
9757
  enabled: boolean;
9425
9758
  createdAt: number;
@@ -9439,7 +9772,7 @@ export interface OperatorMethodOutputMap {
9439
9772
  routeId?: string;
9440
9773
  threadId?: string;
9441
9774
  channelId?: string;
9442
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9775
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9443
9776
  pinnedSessionId?: string;
9444
9777
  preserveThread?: boolean;
9445
9778
  createIfMissing?: boolean;
@@ -9453,7 +9786,7 @@ export interface OperatorMethodOutputMap {
9453
9786
  routeId?: string;
9454
9787
  threadId?: string;
9455
9788
  channelId?: string;
9456
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9789
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9457
9790
  pinnedSessionId?: string;
9458
9791
  preserveThread?: boolean;
9459
9792
  createIfMissing?: boolean;
@@ -9486,7 +9819,7 @@ export interface OperatorMethodOutputMap {
9486
9819
  id?: string;
9487
9820
  url?: string;
9488
9821
  routeId?: string;
9489
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9822
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9490
9823
  metadata?: ({} & {
9491
9824
  readonly [key: string]: ({} & {
9492
9825
  readonly [key: string]: JsonValue;
@@ -9508,7 +9841,7 @@ export interface OperatorMethodOutputMap {
9508
9841
  route?: ({
9509
9842
  id: string;
9510
9843
  kind: "channel" | "message" | "session" | "thread";
9511
- surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9844
+ surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9512
9845
  surfaceId: string;
9513
9846
  externalId: string;
9514
9847
  sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
@@ -9543,7 +9876,7 @@ export interface OperatorMethodOutputMap {
9543
9876
  jobId: string;
9544
9877
  target: {
9545
9878
  kind: "integration" | "link" | "none" | "surface" | "webhook";
9546
- surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
9879
+ surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
9547
9880
  address?: string;
9548
9881
  routeId?: string;
9549
9882
  label?: string;
@@ -10115,6 +10448,24 @@ export interface OperatorMethodOutputMap {
10115
10448
  mode: "accept-edits" | "auto" | "custom" | "normal" | "plan";
10116
10449
  previousMode: "accept-edits" | "auto" | "custom" | "normal" | "plan";
10117
10450
  };
10451
+ "sessions.queuedMessages.delete": {
10452
+ sessionId: string;
10453
+ id: string;
10454
+ deleted: boolean;
10455
+ };
10456
+ "sessions.queuedMessages.edit": {
10457
+ sessionId: string;
10458
+ id: string;
10459
+ text: string;
10460
+ };
10461
+ "sessions.queuedMessages.list": {
10462
+ sessionId: string;
10463
+ messages: readonly ({
10464
+ id: string;
10465
+ queuedAt: number;
10466
+ text: string;
10467
+ })[];
10468
+ };
10118
10469
  "sessions.followUp": {
10119
10470
  session: null | {
10120
10471
  id: string;
@@ -10776,6 +11127,11 @@ export interface OperatorMethodOutputMap {
10776
11127
  operationalNotes: readonly string[];
10777
11128
  })[];
10778
11129
  };
11130
+ "sessions.toolCalls.cancel": {
11131
+ sessionId: string;
11132
+ callId: string;
11133
+ cancelled: boolean;
11134
+ };
10779
11135
  "settings.snapshot": {
10780
11136
  available: boolean;
10781
11137
  liveKeyCount: number;
@@ -12018,6 +12374,183 @@ export interface OperatorMethodOutputMap {
12018
12374
  updatedAt: number;
12019
12375
  })[];
12020
12376
  };
12377
+ "push.subscriptions.reconcile": {
12378
+ subscription: {
12379
+ id: string;
12380
+ principalId: string;
12381
+ deviceId?: string;
12382
+ endpointOrigin: string;
12383
+ endpointHash: string;
12384
+ createdAt: number;
12385
+ lastDeliveryAt?: number;
12386
+ lastOutcome?: string;
12387
+ consecutiveFailures?: number;
12388
+ };
12389
+ drift: string;
12390
+ };
12391
+ "pairing.tokens.list": {
12392
+ tokens: readonly ({
12393
+ id: string;
12394
+ name: string;
12395
+ createdAt: number;
12396
+ lastSeenAt?: number;
12397
+ })[];
12398
+ legacySharedRevoked: boolean;
12399
+ };
12400
+ "pairing.tokens.create": {
12401
+ token: {
12402
+ id: string;
12403
+ name: string;
12404
+ token: string;
12405
+ createdAt: number;
12406
+ };
12407
+ };
12408
+ "pairing.tokens.migrate": {
12409
+ token: {
12410
+ id: string;
12411
+ name: string;
12412
+ token: string;
12413
+ createdAt: number;
12414
+ };
12415
+ };
12416
+ "pairing.tokens.rename": {
12417
+ id: string;
12418
+ renamed: boolean;
12419
+ };
12420
+ "pairing.tokens.delete": {
12421
+ id: string;
12422
+ revoked: boolean;
12423
+ };
12424
+ "pairing.tokens.revokeShared": {
12425
+ legacySharedRevoked: boolean;
12426
+ };
12427
+ "pairing.handoff.create": {
12428
+ token: {
12429
+ id: string;
12430
+ name: string;
12431
+ token: string;
12432
+ createdAt: number;
12433
+ };
12434
+ offers: readonly ({
12435
+ kind: string;
12436
+ available: boolean;
12437
+ vapidPublicKey?: string;
12438
+ })[];
12439
+ fragment: string;
12440
+ deepLink?: string;
12441
+ posture?: {
12442
+ origin: string;
12443
+ scheme: string;
12444
+ privateNetwork: boolean;
12445
+ secureContext: boolean;
12446
+ notice?: string;
12447
+ capabilities: readonly ({
12448
+ capability: string;
12449
+ available: boolean;
12450
+ reason?: string;
12451
+ })[];
12452
+ };
12453
+ };
12454
+ "pairing.handoff.complete": {
12455
+ results: readonly ({
12456
+ kind: string;
12457
+ status: string;
12458
+ detail?: string;
12459
+ })[];
12460
+ };
12461
+ "pairing.posture.get": {
12462
+ posture: {
12463
+ origin: string;
12464
+ scheme: string;
12465
+ privateNetwork: boolean;
12466
+ secureContext: boolean;
12467
+ notice?: string;
12468
+ capabilities: readonly ({
12469
+ capability: string;
12470
+ available: boolean;
12471
+ reason?: string;
12472
+ })[];
12473
+ };
12474
+ };
12475
+ "tailscale.get": {
12476
+ available: boolean;
12477
+ loggedIn: boolean;
12478
+ magicDnsName?: string;
12479
+ httpsUrl?: string;
12480
+ detail: string;
12481
+ lastServe?: {
12482
+ at: number;
12483
+ command: string;
12484
+ ok: boolean;
12485
+ url?: string;
12486
+ detail: string;
12487
+ };
12488
+ };
12489
+ "tailscale.serve.run": {
12490
+ receipt: {
12491
+ at: number;
12492
+ command: string;
12493
+ ok: boolean;
12494
+ url?: string;
12495
+ detail: string;
12496
+ };
12497
+ publicBaseUrlUpdated: boolean;
12498
+ };
12499
+ "fleet.conflicts.list": {
12500
+ conflicts: readonly ({
12501
+ workstreamId: string;
12502
+ itemId: string;
12503
+ title: string;
12504
+ worktreePath: string;
12505
+ branch?: string;
12506
+ files: readonly string[];
12507
+ resolutionSessionId?: string;
12508
+ })[];
12509
+ };
12510
+ "fleet.conflicts.resolve": {
12511
+ itemId: string;
12512
+ sessionId: string;
12513
+ worktreePath: string;
12514
+ files: readonly string[];
12515
+ };
12516
+ "worktrees.discard": {
12517
+ path: string;
12518
+ ok: boolean;
12519
+ branch?: string;
12520
+ preservedCommit?: string;
12521
+ discardedAt: number;
12522
+ detail: string;
12523
+ };
12524
+ "acp.agents.list": {
12525
+ agents: readonly ({
12526
+ id: string;
12527
+ title: string;
12528
+ binaryPath: string;
12529
+ args: readonly string[];
12530
+ })[];
12531
+ };
12532
+ "acp.sessions.create": {
12533
+ hosted: {
12534
+ id: string;
12535
+ agentId: string;
12536
+ title: string;
12537
+ binaryPath: string;
12538
+ cwd: string;
12539
+ state: string;
12540
+ startedAt: number;
12541
+ completedAt?: number;
12542
+ sessionId?: string;
12543
+ progress?: string;
12544
+ pendingPermission?: string;
12545
+ error?: {
12546
+ binary: string;
12547
+ stage: string;
12548
+ message: string;
12549
+ };
12550
+ promptCount: number;
12551
+ };
12552
+ started: boolean;
12553
+ };
12021
12554
  }
12022
12555
  export interface OperatorEventPayloadMap {
12023
12556
  "control.heartbeat": {