@pellux/goodvibes-contracts 1.8.0 → 1.10.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.
- package/artifacts/operator-contract.json +3856 -467
- package/artifacts/operator-openapi.json +1897 -10
- package/artifacts/python/homeassistant_operator_client.py +2 -2
- package/dist/core-verbs.d.ts.map +1 -1
- package/dist/core-verbs.js +33 -0
- package/dist/generated/foundation-client-types.d.ts +689 -61
- package/dist/generated/foundation-client-types.d.ts.map +1 -1
- package/dist/generated/foundation-metadata.d.ts +2 -2
- package/dist/generated/foundation-metadata.js +2 -2
- package/dist/generated/mock-daemon-fixtures.d.ts.map +1 -1
- package/dist/generated/mock-daemon-fixtures.js +792 -3
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +3856 -467
- package/dist/generated/operator-method-ids.d.ts +1 -1
- package/dist/generated/operator-method-ids.d.ts.map +1 -1
- package/dist/generated/operator-method-ids.js +29 -0
- package/dist/generated/webui-facade.d.ts +2 -2
- package/dist/generated/webui-facade.d.ts.map +1 -1
- package/dist/generated/webui-facade.js +869 -6
- package/package.json +1 -1
|
@@ -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,13 @@ export interface OperatorMethodInputMap {
|
|
|
1258
1271
|
"permissions.rules.delete": {
|
|
1259
1272
|
ruleId: string;
|
|
1260
1273
|
};
|
|
1274
|
+
"ops.memory.get": {};
|
|
1275
|
+
"power.keepAwake.set": {
|
|
1276
|
+
enabled: boolean;
|
|
1277
|
+
};
|
|
1278
|
+
"power.status.get": {};
|
|
1279
|
+
"voice.local.install": {};
|
|
1280
|
+
"voice.local.status": {};
|
|
1261
1281
|
"principals.create": {
|
|
1262
1282
|
name: string;
|
|
1263
1283
|
kind: "bot" | "service" | "token" | "user";
|
|
@@ -1574,6 +1594,18 @@ export interface OperatorMethodInputMap {
|
|
|
1574
1594
|
sessionId: string;
|
|
1575
1595
|
mode: "accept-edits" | "auto" | "normal" | "plan";
|
|
1576
1596
|
};
|
|
1597
|
+
"sessions.queuedMessages.delete": {
|
|
1598
|
+
sessionId: string;
|
|
1599
|
+
messageId: string;
|
|
1600
|
+
};
|
|
1601
|
+
"sessions.queuedMessages.edit": {
|
|
1602
|
+
sessionId: string;
|
|
1603
|
+
messageId: string;
|
|
1604
|
+
text: string;
|
|
1605
|
+
};
|
|
1606
|
+
"sessions.queuedMessages.list": {
|
|
1607
|
+
sessionId: string;
|
|
1608
|
+
};
|
|
1577
1609
|
"sessions.followUp": ({
|
|
1578
1610
|
body: string;
|
|
1579
1611
|
surfaceKind?: string;
|
|
@@ -1685,6 +1717,10 @@ export interface OperatorMethodInputMap {
|
|
|
1685
1717
|
} & {
|
|
1686
1718
|
readonly [key: string]: unknown;
|
|
1687
1719
|
});
|
|
1720
|
+
"sessions.toolCalls.cancel": {
|
|
1721
|
+
sessionId: string;
|
|
1722
|
+
callId: string;
|
|
1723
|
+
};
|
|
1688
1724
|
"settings.snapshot": {};
|
|
1689
1725
|
"surfaces.list": {};
|
|
1690
1726
|
"skills.create": {
|
|
@@ -2074,6 +2110,73 @@ export interface OperatorMethodInputMap {
|
|
|
2074
2110
|
path: string;
|
|
2075
2111
|
};
|
|
2076
2112
|
"worktrees.snapshot": {};
|
|
2113
|
+
"push.subscriptions.reconcile": {
|
|
2114
|
+
deviceId: string;
|
|
2115
|
+
endpoint: string;
|
|
2116
|
+
keys: {
|
|
2117
|
+
p256dh: string;
|
|
2118
|
+
auth: string;
|
|
2119
|
+
};
|
|
2120
|
+
};
|
|
2121
|
+
"pairing.tokens.list": {};
|
|
2122
|
+
"pairing.tokens.create": {
|
|
2123
|
+
name: string;
|
|
2124
|
+
};
|
|
2125
|
+
"pairing.tokens.migrate": {
|
|
2126
|
+
name: string;
|
|
2127
|
+
};
|
|
2128
|
+
"pairing.tokens.rename": {
|
|
2129
|
+
id: string;
|
|
2130
|
+
name: string;
|
|
2131
|
+
};
|
|
2132
|
+
"pairing.tokens.delete": {
|
|
2133
|
+
id: string;
|
|
2134
|
+
};
|
|
2135
|
+
"pairing.tokens.revokeShared": {};
|
|
2136
|
+
"pairing.handoff.create": {
|
|
2137
|
+
name: string;
|
|
2138
|
+
offers?: readonly string[];
|
|
2139
|
+
};
|
|
2140
|
+
"pairing.handoff.complete": {
|
|
2141
|
+
accept?: {
|
|
2142
|
+
notifications?: {
|
|
2143
|
+
endpoint: string;
|
|
2144
|
+
keys: {
|
|
2145
|
+
p256dh: string;
|
|
2146
|
+
auth: string;
|
|
2147
|
+
};
|
|
2148
|
+
deviceId?: string;
|
|
2149
|
+
};
|
|
2150
|
+
relay?: boolean;
|
|
2151
|
+
passkey?: {
|
|
2152
|
+
rpId: string;
|
|
2153
|
+
origin: string;
|
|
2154
|
+
credentialId: string;
|
|
2155
|
+
publicKeyCose: string;
|
|
2156
|
+
};
|
|
2157
|
+
};
|
|
2158
|
+
};
|
|
2159
|
+
"pairing.posture.get": {
|
|
2160
|
+
origin?: string;
|
|
2161
|
+
};
|
|
2162
|
+
"tailscale.get": {};
|
|
2163
|
+
"tailscale.serve.run": {};
|
|
2164
|
+
"fleet.conflicts.list": {
|
|
2165
|
+
workstreamId?: string;
|
|
2166
|
+
};
|
|
2167
|
+
"fleet.conflicts.resolve": {
|
|
2168
|
+
itemId: string;
|
|
2169
|
+
};
|
|
2170
|
+
"worktrees.discard": {
|
|
2171
|
+
path: string;
|
|
2172
|
+
};
|
|
2173
|
+
"acp.agents.list": {};
|
|
2174
|
+
"acp.sessions.create": {
|
|
2175
|
+
agentId: string;
|
|
2176
|
+
cwd: string;
|
|
2177
|
+
title?: string;
|
|
2178
|
+
prompt?: string;
|
|
2179
|
+
};
|
|
2077
2180
|
}
|
|
2078
2181
|
export interface OperatorMethodOutputMap {
|
|
2079
2182
|
"accounts.snapshot": {
|
|
@@ -2595,13 +2698,13 @@ export interface OperatorMethodOutputMap {
|
|
|
2595
2698
|
labels: readonly string[];
|
|
2596
2699
|
createdAt: number;
|
|
2597
2700
|
updatedAt: number;
|
|
2598
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
2701
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
2599
2702
|
agentId?: string;
|
|
2600
2703
|
triggeredBy: ({
|
|
2601
2704
|
id: string;
|
|
2602
2705
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
2603
2706
|
label: string;
|
|
2604
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2707
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2605
2708
|
routeId?: string;
|
|
2606
2709
|
enabled: boolean;
|
|
2607
2710
|
createdAt: number;
|
|
@@ -2621,7 +2724,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2621
2724
|
routeId?: string;
|
|
2622
2725
|
threadId?: string;
|
|
2623
2726
|
channelId?: string;
|
|
2624
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2727
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2625
2728
|
pinnedSessionId?: string;
|
|
2626
2729
|
preserveThread?: boolean;
|
|
2627
2730
|
createIfMissing?: boolean;
|
|
@@ -2635,7 +2738,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2635
2738
|
routeId?: string;
|
|
2636
2739
|
threadId?: string;
|
|
2637
2740
|
channelId?: string;
|
|
2638
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2741
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2639
2742
|
pinnedSessionId?: string;
|
|
2640
2743
|
preserveThread?: boolean;
|
|
2641
2744
|
createIfMissing?: boolean;
|
|
@@ -2668,7 +2771,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2668
2771
|
id?: string;
|
|
2669
2772
|
url?: string;
|
|
2670
2773
|
routeId?: string;
|
|
2671
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2774
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2672
2775
|
metadata?: ({} & {
|
|
2673
2776
|
readonly [key: string]: ({} & {
|
|
2674
2777
|
readonly [key: string]: JsonValue;
|
|
@@ -2690,7 +2793,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2690
2793
|
route?: ({
|
|
2691
2794
|
id: string;
|
|
2692
2795
|
kind: "channel" | "message" | "session" | "thread";
|
|
2693
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2796
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2694
2797
|
surfaceId: string;
|
|
2695
2798
|
externalId: string;
|
|
2696
2799
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -2725,7 +2828,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2725
2828
|
jobId: string;
|
|
2726
2829
|
target: {
|
|
2727
2830
|
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";
|
|
2831
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2729
2832
|
address?: string;
|
|
2730
2833
|
routeId?: string;
|
|
2731
2834
|
label?: string;
|
|
@@ -3299,13 +3402,13 @@ export interface OperatorMethodOutputMap {
|
|
|
3299
3402
|
labels: readonly string[];
|
|
3300
3403
|
createdAt: number;
|
|
3301
3404
|
updatedAt: number;
|
|
3302
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
3405
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
3303
3406
|
agentId?: string;
|
|
3304
3407
|
triggeredBy: ({
|
|
3305
3408
|
id: string;
|
|
3306
3409
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
3307
3410
|
label: string;
|
|
3308
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3411
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3309
3412
|
routeId?: string;
|
|
3310
3413
|
enabled: boolean;
|
|
3311
3414
|
createdAt: number;
|
|
@@ -3325,7 +3428,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3325
3428
|
routeId?: string;
|
|
3326
3429
|
threadId?: string;
|
|
3327
3430
|
channelId?: string;
|
|
3328
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3431
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3329
3432
|
pinnedSessionId?: string;
|
|
3330
3433
|
preserveThread?: boolean;
|
|
3331
3434
|
createIfMissing?: boolean;
|
|
@@ -3339,7 +3442,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3339
3442
|
routeId?: string;
|
|
3340
3443
|
threadId?: string;
|
|
3341
3444
|
channelId?: string;
|
|
3342
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3445
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3343
3446
|
pinnedSessionId?: string;
|
|
3344
3447
|
preserveThread?: boolean;
|
|
3345
3448
|
createIfMissing?: boolean;
|
|
@@ -3372,7 +3475,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3372
3475
|
id?: string;
|
|
3373
3476
|
url?: string;
|
|
3374
3477
|
routeId?: string;
|
|
3375
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3478
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3376
3479
|
metadata?: ({} & {
|
|
3377
3480
|
readonly [key: string]: ({} & {
|
|
3378
3481
|
readonly [key: string]: JsonValue;
|
|
@@ -3394,7 +3497,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3394
3497
|
route?: ({
|
|
3395
3498
|
id: string;
|
|
3396
3499
|
kind: "channel" | "message" | "session" | "thread";
|
|
3397
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3500
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3398
3501
|
surfaceId: string;
|
|
3399
3502
|
externalId: string;
|
|
3400
3503
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -3429,7 +3532,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3429
3532
|
jobId: string;
|
|
3430
3533
|
target: {
|
|
3431
3534
|
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";
|
|
3535
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3433
3536
|
address?: string;
|
|
3434
3537
|
routeId?: string;
|
|
3435
3538
|
label?: string;
|
|
@@ -3483,13 +3586,13 @@ export interface OperatorMethodOutputMap {
|
|
|
3483
3586
|
labels: readonly string[];
|
|
3484
3587
|
createdAt: number;
|
|
3485
3588
|
updatedAt: number;
|
|
3486
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
3589
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
3487
3590
|
agentId?: string;
|
|
3488
3591
|
triggeredBy: ({
|
|
3489
3592
|
id: string;
|
|
3490
3593
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
3491
3594
|
label: string;
|
|
3492
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3595
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3493
3596
|
routeId?: string;
|
|
3494
3597
|
enabled: boolean;
|
|
3495
3598
|
createdAt: number;
|
|
@@ -3509,7 +3612,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3509
3612
|
routeId?: string;
|
|
3510
3613
|
threadId?: string;
|
|
3511
3614
|
channelId?: string;
|
|
3512
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3615
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3513
3616
|
pinnedSessionId?: string;
|
|
3514
3617
|
preserveThread?: boolean;
|
|
3515
3618
|
createIfMissing?: boolean;
|
|
@@ -3523,7 +3626,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3523
3626
|
routeId?: string;
|
|
3524
3627
|
threadId?: string;
|
|
3525
3628
|
channelId?: string;
|
|
3526
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3629
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3527
3630
|
pinnedSessionId?: string;
|
|
3528
3631
|
preserveThread?: boolean;
|
|
3529
3632
|
createIfMissing?: boolean;
|
|
@@ -3556,7 +3659,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3556
3659
|
id?: string;
|
|
3557
3660
|
url?: string;
|
|
3558
3661
|
routeId?: string;
|
|
3559
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3662
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3560
3663
|
metadata?: ({} & {
|
|
3561
3664
|
readonly [key: string]: ({} & {
|
|
3562
3665
|
readonly [key: string]: JsonValue;
|
|
@@ -3578,7 +3681,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3578
3681
|
route?: ({
|
|
3579
3682
|
id: string;
|
|
3580
3683
|
kind: "channel" | "message" | "session" | "thread";
|
|
3581
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3684
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3582
3685
|
surfaceId: string;
|
|
3583
3686
|
externalId: string;
|
|
3584
3687
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -3613,7 +3716,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3613
3716
|
jobId: string;
|
|
3614
3717
|
target: {
|
|
3615
3718
|
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";
|
|
3719
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3617
3720
|
address?: string;
|
|
3618
3721
|
routeId?: string;
|
|
3619
3722
|
label?: string;
|
|
@@ -3665,7 +3768,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3665
3768
|
jobId: string;
|
|
3666
3769
|
target: {
|
|
3667
3770
|
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";
|
|
3771
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3669
3772
|
address?: string;
|
|
3670
3773
|
routeId?: string;
|
|
3671
3774
|
label?: string;
|
|
@@ -3686,13 +3789,13 @@ export interface OperatorMethodOutputMap {
|
|
|
3686
3789
|
labels: readonly string[];
|
|
3687
3790
|
createdAt: number;
|
|
3688
3791
|
updatedAt: number;
|
|
3689
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
3792
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
3690
3793
|
agentId?: string;
|
|
3691
3794
|
triggeredBy: ({
|
|
3692
3795
|
id: string;
|
|
3693
3796
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
3694
3797
|
label: string;
|
|
3695
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3798
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3696
3799
|
routeId?: string;
|
|
3697
3800
|
enabled: boolean;
|
|
3698
3801
|
createdAt: number;
|
|
@@ -3712,7 +3815,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3712
3815
|
routeId?: string;
|
|
3713
3816
|
threadId?: string;
|
|
3714
3817
|
channelId?: string;
|
|
3715
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3818
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3716
3819
|
pinnedSessionId?: string;
|
|
3717
3820
|
preserveThread?: boolean;
|
|
3718
3821
|
createIfMissing?: boolean;
|
|
@@ -3726,7 +3829,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3726
3829
|
routeId?: string;
|
|
3727
3830
|
threadId?: string;
|
|
3728
3831
|
channelId?: string;
|
|
3729
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3832
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3730
3833
|
pinnedSessionId?: string;
|
|
3731
3834
|
preserveThread?: boolean;
|
|
3732
3835
|
createIfMissing?: boolean;
|
|
@@ -3759,7 +3862,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3759
3862
|
id?: string;
|
|
3760
3863
|
url?: string;
|
|
3761
3864
|
routeId?: string;
|
|
3762
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3865
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3763
3866
|
metadata?: ({} & {
|
|
3764
3867
|
readonly [key: string]: ({} & {
|
|
3765
3868
|
readonly [key: string]: JsonValue;
|
|
@@ -3781,7 +3884,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3781
3884
|
route?: ({
|
|
3782
3885
|
id: string;
|
|
3783
3886
|
kind: "channel" | "message" | "session" | "thread";
|
|
3784
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3887
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3785
3888
|
surfaceId: string;
|
|
3786
3889
|
externalId: string;
|
|
3787
3890
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -3816,7 +3919,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3816
3919
|
jobId: string;
|
|
3817
3920
|
target: {
|
|
3818
3921
|
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";
|
|
3922
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3820
3923
|
address?: string;
|
|
3821
3924
|
routeId?: string;
|
|
3822
3925
|
label?: string;
|
|
@@ -3870,13 +3973,13 @@ export interface OperatorMethodOutputMap {
|
|
|
3870
3973
|
labels: readonly string[];
|
|
3871
3974
|
createdAt: number;
|
|
3872
3975
|
updatedAt: number;
|
|
3873
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
3976
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
3874
3977
|
agentId?: string;
|
|
3875
3978
|
triggeredBy: ({
|
|
3876
3979
|
id: string;
|
|
3877
3980
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
3878
3981
|
label: string;
|
|
3879
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3982
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3880
3983
|
routeId?: string;
|
|
3881
3984
|
enabled: boolean;
|
|
3882
3985
|
createdAt: number;
|
|
@@ -3896,7 +3999,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3896
3999
|
routeId?: string;
|
|
3897
4000
|
threadId?: string;
|
|
3898
4001
|
channelId?: string;
|
|
3899
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4002
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3900
4003
|
pinnedSessionId?: string;
|
|
3901
4004
|
preserveThread?: boolean;
|
|
3902
4005
|
createIfMissing?: boolean;
|
|
@@ -3910,7 +4013,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3910
4013
|
routeId?: string;
|
|
3911
4014
|
threadId?: string;
|
|
3912
4015
|
channelId?: string;
|
|
3913
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4016
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3914
4017
|
pinnedSessionId?: string;
|
|
3915
4018
|
preserveThread?: boolean;
|
|
3916
4019
|
createIfMissing?: boolean;
|
|
@@ -3943,7 +4046,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3943
4046
|
id?: string;
|
|
3944
4047
|
url?: string;
|
|
3945
4048
|
routeId?: string;
|
|
3946
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4049
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3947
4050
|
metadata?: ({} & {
|
|
3948
4051
|
readonly [key: string]: ({} & {
|
|
3949
4052
|
readonly [key: string]: JsonValue;
|
|
@@ -3965,7 +4068,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3965
4068
|
route?: ({
|
|
3966
4069
|
id: string;
|
|
3967
4070
|
kind: "channel" | "message" | "session" | "thread";
|
|
3968
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4071
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3969
4072
|
surfaceId: string;
|
|
3970
4073
|
externalId: string;
|
|
3971
4074
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -4000,7 +4103,7 @@ export interface OperatorMethodOutputMap {
|
|
|
4000
4103
|
jobId: string;
|
|
4001
4104
|
target: {
|
|
4002
4105
|
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";
|
|
4106
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4004
4107
|
address?: string;
|
|
4005
4108
|
routeId?: string;
|
|
4006
4109
|
label?: string;
|
|
@@ -5752,7 +5855,7 @@ export interface OperatorMethodOutputMap {
|
|
|
5752
5855
|
capturedAt: number;
|
|
5753
5856
|
nodes: readonly (({
|
|
5754
5857
|
id: string;
|
|
5755
|
-
kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
5858
|
+
kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
5756
5859
|
parentId?: string;
|
|
5757
5860
|
label: string;
|
|
5758
5861
|
task?: string;
|
|
@@ -5790,13 +5893,41 @@ export interface OperatorMethodOutputMap {
|
|
|
5790
5893
|
steerable: boolean;
|
|
5791
5894
|
};
|
|
5792
5895
|
needsAttention?: {
|
|
5793
|
-
reason: "approval" | "input";
|
|
5896
|
+
reason: "approval" | "conflict" | "input" | "pick";
|
|
5794
5897
|
detail?: string;
|
|
5795
5898
|
};
|
|
5796
5899
|
sessionRef?: {
|
|
5797
5900
|
sessionId?: string;
|
|
5798
5901
|
agentId?: string;
|
|
5799
5902
|
};
|
|
5903
|
+
review?: {
|
|
5904
|
+
score: number;
|
|
5905
|
+
passed: boolean;
|
|
5906
|
+
cycles: number;
|
|
5907
|
+
checklist: readonly ({
|
|
5908
|
+
item: string;
|
|
5909
|
+
verified: boolean;
|
|
5910
|
+
evidence: string;
|
|
5911
|
+
howExercised?: string;
|
|
5912
|
+
})[];
|
|
5913
|
+
};
|
|
5914
|
+
observed?: {
|
|
5915
|
+
externalKind: "claude-code" | "codex" | "opencode" | "unknown";
|
|
5916
|
+
pid: number;
|
|
5917
|
+
cwd?: string;
|
|
5918
|
+
liveness: {
|
|
5919
|
+
state: "active" | "quiet";
|
|
5920
|
+
cpuSeconds: number;
|
|
5921
|
+
detail: string;
|
|
5922
|
+
};
|
|
5923
|
+
steer: {
|
|
5924
|
+
kind: "none" | "tmux";
|
|
5925
|
+
paneId?: string;
|
|
5926
|
+
tty?: string;
|
|
5927
|
+
reason?: string;
|
|
5928
|
+
};
|
|
5929
|
+
steerDrillInOnly: boolean;
|
|
5930
|
+
};
|
|
5800
5931
|
} & {
|
|
5801
5932
|
readonly [key: string]: unknown;
|
|
5802
5933
|
}))[];
|
|
@@ -5851,15 +5982,87 @@ export interface OperatorMethodOutputMap {
|
|
|
5851
5982
|
})[];
|
|
5852
5983
|
};
|
|
5853
5984
|
"fleet.attempts.pick": {
|
|
5985
|
+
applied: boolean;
|
|
5854
5986
|
groupId: string;
|
|
5855
5987
|
winnerItemId: string;
|
|
5856
|
-
loserItemIds
|
|
5857
|
-
auto
|
|
5988
|
+
loserItemIds?: readonly string[];
|
|
5989
|
+
auto?: boolean;
|
|
5990
|
+
requiresConfirm?: boolean;
|
|
5991
|
+
group?: {
|
|
5992
|
+
groupId: string;
|
|
5993
|
+
workstreamId: string;
|
|
5994
|
+
sourceTitle: string;
|
|
5995
|
+
ready: boolean;
|
|
5996
|
+
candidates: readonly ({
|
|
5997
|
+
itemId: string;
|
|
5998
|
+
attemptIndex: number;
|
|
5999
|
+
state: "failed" | "held-merge";
|
|
6000
|
+
title: string;
|
|
6001
|
+
worktreePath: null | string;
|
|
6002
|
+
branch: null | string;
|
|
6003
|
+
usage: {
|
|
6004
|
+
inputTokens: number;
|
|
6005
|
+
outputTokens: number;
|
|
6006
|
+
cacheReadTokens: number;
|
|
6007
|
+
cacheWriteTokens: number;
|
|
6008
|
+
reasoningTokens?: number;
|
|
6009
|
+
llmCallCount: number;
|
|
6010
|
+
turnCount: number;
|
|
6011
|
+
toolCallCount: number;
|
|
6012
|
+
costUsd: null | number;
|
|
6013
|
+
costState: "estimated" | "priced" | "unpriced";
|
|
6014
|
+
costSource?: "catalog" | "mixed" | "provider" | "user";
|
|
6015
|
+
pricingAsOf?: string;
|
|
6016
|
+
};
|
|
6017
|
+
failureReason: null | string;
|
|
6018
|
+
diff: null | {
|
|
6019
|
+
files: readonly string[];
|
|
6020
|
+
unifiedDiff: string;
|
|
6021
|
+
stat: string;
|
|
6022
|
+
};
|
|
6023
|
+
})[];
|
|
6024
|
+
autoAccept: boolean;
|
|
6025
|
+
judgment: null | {
|
|
6026
|
+
proposedWinnerItemId: null | string;
|
|
6027
|
+
reasons: readonly string[];
|
|
6028
|
+
model: null | string;
|
|
6029
|
+
scoredBy: "model";
|
|
6030
|
+
};
|
|
6031
|
+
};
|
|
6032
|
+
};
|
|
6033
|
+
"fleet.graph.get": {
|
|
6034
|
+
workstreamId: string;
|
|
6035
|
+
title: string;
|
|
6036
|
+
nodes: readonly ({
|
|
6037
|
+
id: string;
|
|
6038
|
+
title: string;
|
|
6039
|
+
state: string;
|
|
6040
|
+
cluster?: string;
|
|
6041
|
+
files: readonly string[];
|
|
6042
|
+
mergeState?: string;
|
|
6043
|
+
blockedReason?: string;
|
|
6044
|
+
orphaned: boolean;
|
|
6045
|
+
remainingDepth: number;
|
|
6046
|
+
stalled: boolean;
|
|
6047
|
+
agentId?: string;
|
|
6048
|
+
})[];
|
|
6049
|
+
edges: readonly ({
|
|
6050
|
+
from: string;
|
|
6051
|
+
to: string;
|
|
6052
|
+
})[];
|
|
6053
|
+
pool: null | {
|
|
6054
|
+
ready: number;
|
|
6055
|
+
running: number;
|
|
6056
|
+
atCap: boolean;
|
|
6057
|
+
capKey: string;
|
|
6058
|
+
maxSize: number;
|
|
6059
|
+
refusal?: string;
|
|
6060
|
+
};
|
|
5858
6061
|
};
|
|
5859
6062
|
"fleet.list": {
|
|
5860
6063
|
items: readonly (({
|
|
5861
6064
|
id: string;
|
|
5862
|
-
kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
6065
|
+
kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
5863
6066
|
parentId?: string;
|
|
5864
6067
|
label: string;
|
|
5865
6068
|
task?: string;
|
|
@@ -5897,13 +6100,41 @@ export interface OperatorMethodOutputMap {
|
|
|
5897
6100
|
steerable: boolean;
|
|
5898
6101
|
};
|
|
5899
6102
|
needsAttention?: {
|
|
5900
|
-
reason: "approval" | "input";
|
|
6103
|
+
reason: "approval" | "conflict" | "input" | "pick";
|
|
5901
6104
|
detail?: string;
|
|
5902
6105
|
};
|
|
5903
6106
|
sessionRef?: {
|
|
5904
6107
|
sessionId?: string;
|
|
5905
6108
|
agentId?: string;
|
|
5906
6109
|
};
|
|
6110
|
+
review?: {
|
|
6111
|
+
score: number;
|
|
6112
|
+
passed: boolean;
|
|
6113
|
+
cycles: number;
|
|
6114
|
+
checklist: readonly ({
|
|
6115
|
+
item: string;
|
|
6116
|
+
verified: boolean;
|
|
6117
|
+
evidence: string;
|
|
6118
|
+
howExercised?: string;
|
|
6119
|
+
})[];
|
|
6120
|
+
};
|
|
6121
|
+
observed?: {
|
|
6122
|
+
externalKind: "claude-code" | "codex" | "opencode" | "unknown";
|
|
6123
|
+
pid: number;
|
|
6124
|
+
cwd?: string;
|
|
6125
|
+
liveness: {
|
|
6126
|
+
state: "active" | "quiet";
|
|
6127
|
+
cpuSeconds: number;
|
|
6128
|
+
detail: string;
|
|
6129
|
+
};
|
|
6130
|
+
steer: {
|
|
6131
|
+
kind: "none" | "tmux";
|
|
6132
|
+
paneId?: string;
|
|
6133
|
+
tty?: string;
|
|
6134
|
+
reason?: string;
|
|
6135
|
+
};
|
|
6136
|
+
steerDrillInOnly: boolean;
|
|
6137
|
+
};
|
|
5907
6138
|
} & {
|
|
5908
6139
|
readonly [key: string]: unknown;
|
|
5909
6140
|
}))[];
|
|
@@ -5911,11 +6142,16 @@ export interface OperatorMethodOutputMap {
|
|
|
5911
6142
|
hasMore: boolean;
|
|
5912
6143
|
capturedAt: number;
|
|
5913
6144
|
};
|
|
6145
|
+
"fleet.observed.steer": {
|
|
6146
|
+
queued: boolean;
|
|
6147
|
+
messageId?: string;
|
|
6148
|
+
reason?: string;
|
|
6149
|
+
};
|
|
5914
6150
|
"fleet.snapshot": {
|
|
5915
6151
|
capturedAt: number;
|
|
5916
6152
|
nodes: readonly (({
|
|
5917
6153
|
id: string;
|
|
5918
|
-
kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
6154
|
+
kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
5919
6155
|
parentId?: string;
|
|
5920
6156
|
label: string;
|
|
5921
6157
|
task?: string;
|
|
@@ -5953,13 +6189,41 @@ export interface OperatorMethodOutputMap {
|
|
|
5953
6189
|
steerable: boolean;
|
|
5954
6190
|
};
|
|
5955
6191
|
needsAttention?: {
|
|
5956
|
-
reason: "approval" | "input";
|
|
6192
|
+
reason: "approval" | "conflict" | "input" | "pick";
|
|
5957
6193
|
detail?: string;
|
|
5958
6194
|
};
|
|
5959
6195
|
sessionRef?: {
|
|
5960
6196
|
sessionId?: string;
|
|
5961
6197
|
agentId?: string;
|
|
5962
6198
|
};
|
|
6199
|
+
review?: {
|
|
6200
|
+
score: number;
|
|
6201
|
+
passed: boolean;
|
|
6202
|
+
cycles: number;
|
|
6203
|
+
checklist: readonly ({
|
|
6204
|
+
item: string;
|
|
6205
|
+
verified: boolean;
|
|
6206
|
+
evidence: string;
|
|
6207
|
+
howExercised?: string;
|
|
6208
|
+
})[];
|
|
6209
|
+
};
|
|
6210
|
+
observed?: {
|
|
6211
|
+
externalKind: "claude-code" | "codex" | "opencode" | "unknown";
|
|
6212
|
+
pid: number;
|
|
6213
|
+
cwd?: string;
|
|
6214
|
+
liveness: {
|
|
6215
|
+
state: "active" | "quiet";
|
|
6216
|
+
cpuSeconds: number;
|
|
6217
|
+
detail: string;
|
|
6218
|
+
};
|
|
6219
|
+
steer: {
|
|
6220
|
+
kind: "none" | "tmux";
|
|
6221
|
+
paneId?: string;
|
|
6222
|
+
tty?: string;
|
|
6223
|
+
reason?: string;
|
|
6224
|
+
};
|
|
6225
|
+
steerDrillInOnly: boolean;
|
|
6226
|
+
};
|
|
5963
6227
|
} & {
|
|
5964
6228
|
readonly [key: string]: unknown;
|
|
5965
6229
|
}))[];
|
|
@@ -7524,6 +7788,38 @@ export interface OperatorMethodOutputMap {
|
|
|
7524
7788
|
};
|
|
7525
7789
|
checkedAt: number;
|
|
7526
7790
|
};
|
|
7791
|
+
"memory.consolidation.receipts": {
|
|
7792
|
+
receipts: readonly ({
|
|
7793
|
+
runId: string;
|
|
7794
|
+
ranAt: string;
|
|
7795
|
+
trigger: string;
|
|
7796
|
+
idle: boolean;
|
|
7797
|
+
scanned: number;
|
|
7798
|
+
merged: readonly (({} & {
|
|
7799
|
+
readonly [key: string]: unknown;
|
|
7800
|
+
}))[];
|
|
7801
|
+
archived: readonly (({} & {
|
|
7802
|
+
readonly [key: string]: unknown;
|
|
7803
|
+
}))[];
|
|
7804
|
+
decayed: readonly (({} & {
|
|
7805
|
+
readonly [key: string]: unknown;
|
|
7806
|
+
}))[];
|
|
7807
|
+
proposed: readonly ({
|
|
7808
|
+
kind: "contradiction" | "cross-scope-duplicate" | "stale-delete";
|
|
7809
|
+
ids: readonly string[];
|
|
7810
|
+
route: string;
|
|
7811
|
+
reason: string;
|
|
7812
|
+
})[];
|
|
7813
|
+
usageSignalAvailable: boolean;
|
|
7814
|
+
note: string;
|
|
7815
|
+
})[];
|
|
7816
|
+
pendingProposals: readonly ({
|
|
7817
|
+
kind: "contradiction" | "cross-scope-duplicate" | "stale-delete";
|
|
7818
|
+
ids: readonly string[];
|
|
7819
|
+
route: string;
|
|
7820
|
+
reason: string;
|
|
7821
|
+
})[];
|
|
7822
|
+
};
|
|
7527
7823
|
"memory.embeddings.default.set": {
|
|
7528
7824
|
vector: ({
|
|
7529
7825
|
backend: "sqlite-vec";
|
|
@@ -7804,6 +8100,138 @@ export interface OperatorMethodOutputMap {
|
|
|
7804
8100
|
"permissions.rules.delete": {
|
|
7805
8101
|
deleted: boolean;
|
|
7806
8102
|
};
|
|
8103
|
+
"ops.memory.get": {
|
|
8104
|
+
tier: "critical" | "elevated" | "high" | "normal";
|
|
8105
|
+
budgetMb: number;
|
|
8106
|
+
rssMb: number;
|
|
8107
|
+
heapUsedMb: number;
|
|
8108
|
+
heapTotalMb?: number;
|
|
8109
|
+
usedPct: number;
|
|
8110
|
+
refusingExpensiveWork: boolean;
|
|
8111
|
+
caches: readonly ({
|
|
8112
|
+
id: string;
|
|
8113
|
+
name: string;
|
|
8114
|
+
entries: number;
|
|
8115
|
+
estimatedBytes?: number;
|
|
8116
|
+
})[];
|
|
8117
|
+
pausedJobs: readonly string[];
|
|
8118
|
+
tripwire: {
|
|
8119
|
+
armed: boolean;
|
|
8120
|
+
sustainedSec: number;
|
|
8121
|
+
rateMbPerSec: number;
|
|
8122
|
+
};
|
|
8123
|
+
thresholds: {
|
|
8124
|
+
elevatedPct: number;
|
|
8125
|
+
highPct: number;
|
|
8126
|
+
criticalPct: number;
|
|
8127
|
+
};
|
|
8128
|
+
};
|
|
8129
|
+
"voice.local.install": {
|
|
8130
|
+
provisioned: boolean;
|
|
8131
|
+
platform: null | string;
|
|
8132
|
+
tts: {
|
|
8133
|
+
engine: string;
|
|
8134
|
+
state: "checksum-mismatch" | "download-failed" | "provisioned" | "unsupported-platform";
|
|
8135
|
+
binaryPath?: string;
|
|
8136
|
+
modelPath?: string;
|
|
8137
|
+
reason?: string;
|
|
8138
|
+
};
|
|
8139
|
+
stt: {
|
|
8140
|
+
engine: string;
|
|
8141
|
+
state: "bundle-unavailable" | "checksum-mismatch" | "download-failed" | "provisioned" | "sideload-mismatch" | "unsupported-platform";
|
|
8142
|
+
binaryPath?: string;
|
|
8143
|
+
modelPath?: string;
|
|
8144
|
+
reason?: string;
|
|
8145
|
+
};
|
|
8146
|
+
components: readonly ({
|
|
8147
|
+
id: string;
|
|
8148
|
+
state: "failed" | "installed" | "skipped";
|
|
8149
|
+
bytes?: number;
|
|
8150
|
+
error?: string;
|
|
8151
|
+
})[];
|
|
8152
|
+
configured: {
|
|
8153
|
+
set: readonly ({
|
|
8154
|
+
key: string;
|
|
8155
|
+
value: string;
|
|
8156
|
+
})[];
|
|
8157
|
+
skipped: readonly ({
|
|
8158
|
+
key: string;
|
|
8159
|
+
reason: string;
|
|
8160
|
+
})[];
|
|
8161
|
+
};
|
|
8162
|
+
};
|
|
8163
|
+
"voice.local.status": {
|
|
8164
|
+
platform: null | string;
|
|
8165
|
+
state: "not-provisioned" | "partial" | "provisioned" | "unsupported-platform";
|
|
8166
|
+
tts: {
|
|
8167
|
+
engine: string;
|
|
8168
|
+
binaryPresent: boolean;
|
|
8169
|
+
voicePresent: boolean;
|
|
8170
|
+
binaryPath: string;
|
|
8171
|
+
modelPath: string;
|
|
8172
|
+
};
|
|
8173
|
+
stt: {
|
|
8174
|
+
engine: string;
|
|
8175
|
+
supported: boolean;
|
|
8176
|
+
state: "not-provisioned" | "partial" | "provisioned" | "unsupported-platform";
|
|
8177
|
+
binaryPresent: boolean;
|
|
8178
|
+
modelPresent: boolean;
|
|
8179
|
+
binaryPath: string;
|
|
8180
|
+
modelPath: string;
|
|
8181
|
+
reason?: string;
|
|
8182
|
+
};
|
|
8183
|
+
offerBytes: null | number;
|
|
8184
|
+
installInProgress?: {
|
|
8185
|
+
startedAt: number;
|
|
8186
|
+
components: readonly ({
|
|
8187
|
+
component: string;
|
|
8188
|
+
phase: "done" | "download" | "error" | "extract" | "skip" | "verify";
|
|
8189
|
+
message?: string;
|
|
8190
|
+
bytesTotal?: number;
|
|
8191
|
+
bytesDone?: number;
|
|
8192
|
+
})[];
|
|
8193
|
+
};
|
|
8194
|
+
};
|
|
8195
|
+
"power.keepAwake.set": {
|
|
8196
|
+
platform: string;
|
|
8197
|
+
work: {
|
|
8198
|
+
held: boolean;
|
|
8199
|
+
grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8200
|
+
deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8201
|
+
reasons: readonly string[];
|
|
8202
|
+
heldSince: null | number;
|
|
8203
|
+
capMinutes: number;
|
|
8204
|
+
capExpiresAt: null | number;
|
|
8205
|
+
capExpired: boolean;
|
|
8206
|
+
};
|
|
8207
|
+
keepAwake: {
|
|
8208
|
+
enabled: boolean;
|
|
8209
|
+
held: boolean;
|
|
8210
|
+
grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8211
|
+
deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8212
|
+
note: null | string;
|
|
8213
|
+
};
|
|
8214
|
+
};
|
|
8215
|
+
"power.status.get": {
|
|
8216
|
+
platform: string;
|
|
8217
|
+
work: {
|
|
8218
|
+
held: boolean;
|
|
8219
|
+
grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8220
|
+
deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8221
|
+
reasons: readonly string[];
|
|
8222
|
+
heldSince: null | number;
|
|
8223
|
+
capMinutes: number;
|
|
8224
|
+
capExpiresAt: null | number;
|
|
8225
|
+
capExpired: boolean;
|
|
8226
|
+
};
|
|
8227
|
+
keepAwake: {
|
|
8228
|
+
enabled: boolean;
|
|
8229
|
+
held: boolean;
|
|
8230
|
+
grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8231
|
+
deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8232
|
+
note: null | string;
|
|
8233
|
+
};
|
|
8234
|
+
};
|
|
7807
8235
|
"principals.create": {
|
|
7808
8236
|
principal: {
|
|
7809
8237
|
id: string;
|
|
@@ -9275,15 +9703,15 @@ export interface OperatorMethodOutputMap {
|
|
|
9275
9703
|
schedule: {
|
|
9276
9704
|
kind: "at";
|
|
9277
9705
|
at: number;
|
|
9706
|
+
} | {
|
|
9707
|
+
kind: "every";
|
|
9708
|
+
intervalMs: number;
|
|
9709
|
+
anchorAt?: number;
|
|
9278
9710
|
} | {
|
|
9279
9711
|
kind: "cron";
|
|
9280
9712
|
expression: string;
|
|
9281
9713
|
timezone?: string;
|
|
9282
9714
|
staggerMs?: number;
|
|
9283
|
-
} | {
|
|
9284
|
-
kind: "every";
|
|
9285
|
-
intervalMs: number;
|
|
9286
|
-
anchorAt?: number;
|
|
9287
9715
|
};
|
|
9288
9716
|
execution: {
|
|
9289
9717
|
prompt?: string;
|
|
@@ -9294,7 +9722,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9294
9722
|
routeId?: string;
|
|
9295
9723
|
threadId?: string;
|
|
9296
9724
|
channelId?: string;
|
|
9297
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9725
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9298
9726
|
pinnedSessionId?: string;
|
|
9299
9727
|
preserveThread?: boolean;
|
|
9300
9728
|
createIfMissing?: boolean;
|
|
@@ -9327,7 +9755,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9327
9755
|
id?: string;
|
|
9328
9756
|
url?: string;
|
|
9329
9757
|
routeId?: string;
|
|
9330
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9758
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9331
9759
|
metadata?: ({} & {
|
|
9332
9760
|
readonly [key: string]: ({} & {
|
|
9333
9761
|
readonly [key: string]: JsonValue;
|
|
@@ -9340,14 +9768,14 @@ export interface OperatorMethodOutputMap {
|
|
|
9340
9768
|
mode: "integration" | "link" | "none" | "surface" | "webhook";
|
|
9341
9769
|
targets: readonly ({
|
|
9342
9770
|
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";
|
|
9771
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9344
9772
|
address?: string;
|
|
9345
9773
|
routeId?: string;
|
|
9346
9774
|
label?: string;
|
|
9347
9775
|
})[];
|
|
9348
9776
|
fallbackTargets: readonly ({
|
|
9349
9777
|
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";
|
|
9778
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9351
9779
|
address?: string;
|
|
9352
9780
|
routeId?: string;
|
|
9353
9781
|
label?: string;
|
|
@@ -9376,7 +9804,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9376
9804
|
id: string;
|
|
9377
9805
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
9378
9806
|
label: string;
|
|
9379
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9807
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9380
9808
|
routeId?: string;
|
|
9381
9809
|
enabled: boolean;
|
|
9382
9810
|
createdAt: number;
|
|
@@ -9413,13 +9841,13 @@ export interface OperatorMethodOutputMap {
|
|
|
9413
9841
|
labels: readonly string[];
|
|
9414
9842
|
createdAt: number;
|
|
9415
9843
|
updatedAt: number;
|
|
9416
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
9844
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
9417
9845
|
agentId?: string;
|
|
9418
9846
|
triggeredBy: ({
|
|
9419
9847
|
id: string;
|
|
9420
9848
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
9421
9849
|
label: string;
|
|
9422
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9850
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9423
9851
|
routeId?: string;
|
|
9424
9852
|
enabled: boolean;
|
|
9425
9853
|
createdAt: number;
|
|
@@ -9439,7 +9867,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9439
9867
|
routeId?: string;
|
|
9440
9868
|
threadId?: string;
|
|
9441
9869
|
channelId?: string;
|
|
9442
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9870
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9443
9871
|
pinnedSessionId?: string;
|
|
9444
9872
|
preserveThread?: boolean;
|
|
9445
9873
|
createIfMissing?: boolean;
|
|
@@ -9453,7 +9881,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9453
9881
|
routeId?: string;
|
|
9454
9882
|
threadId?: string;
|
|
9455
9883
|
channelId?: string;
|
|
9456
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9884
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9457
9885
|
pinnedSessionId?: string;
|
|
9458
9886
|
preserveThread?: boolean;
|
|
9459
9887
|
createIfMissing?: boolean;
|
|
@@ -9486,7 +9914,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9486
9914
|
id?: string;
|
|
9487
9915
|
url?: string;
|
|
9488
9916
|
routeId?: string;
|
|
9489
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9917
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9490
9918
|
metadata?: ({} & {
|
|
9491
9919
|
readonly [key: string]: ({} & {
|
|
9492
9920
|
readonly [key: string]: JsonValue;
|
|
@@ -9508,7 +9936,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9508
9936
|
route?: ({
|
|
9509
9937
|
id: string;
|
|
9510
9938
|
kind: "channel" | "message" | "session" | "thread";
|
|
9511
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9939
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9512
9940
|
surfaceId: string;
|
|
9513
9941
|
externalId: string;
|
|
9514
9942
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -9543,7 +9971,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9543
9971
|
jobId: string;
|
|
9544
9972
|
target: {
|
|
9545
9973
|
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";
|
|
9974
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9547
9975
|
address?: string;
|
|
9548
9976
|
routeId?: string;
|
|
9549
9977
|
label?: string;
|
|
@@ -10115,6 +10543,24 @@ export interface OperatorMethodOutputMap {
|
|
|
10115
10543
|
mode: "accept-edits" | "auto" | "custom" | "normal" | "plan";
|
|
10116
10544
|
previousMode: "accept-edits" | "auto" | "custom" | "normal" | "plan";
|
|
10117
10545
|
};
|
|
10546
|
+
"sessions.queuedMessages.delete": {
|
|
10547
|
+
sessionId: string;
|
|
10548
|
+
id: string;
|
|
10549
|
+
deleted: boolean;
|
|
10550
|
+
};
|
|
10551
|
+
"sessions.queuedMessages.edit": {
|
|
10552
|
+
sessionId: string;
|
|
10553
|
+
id: string;
|
|
10554
|
+
text: string;
|
|
10555
|
+
};
|
|
10556
|
+
"sessions.queuedMessages.list": {
|
|
10557
|
+
sessionId: string;
|
|
10558
|
+
messages: readonly ({
|
|
10559
|
+
id: string;
|
|
10560
|
+
queuedAt: number;
|
|
10561
|
+
text: string;
|
|
10562
|
+
})[];
|
|
10563
|
+
};
|
|
10118
10564
|
"sessions.followUp": {
|
|
10119
10565
|
session: null | {
|
|
10120
10566
|
id: string;
|
|
@@ -10776,6 +11222,11 @@ export interface OperatorMethodOutputMap {
|
|
|
10776
11222
|
operationalNotes: readonly string[];
|
|
10777
11223
|
})[];
|
|
10778
11224
|
};
|
|
11225
|
+
"sessions.toolCalls.cancel": {
|
|
11226
|
+
sessionId: string;
|
|
11227
|
+
callId: string;
|
|
11228
|
+
cancelled: boolean;
|
|
11229
|
+
};
|
|
10779
11230
|
"settings.snapshot": {
|
|
10780
11231
|
available: boolean;
|
|
10781
11232
|
liveKeyCount: number;
|
|
@@ -12018,6 +12469,183 @@ export interface OperatorMethodOutputMap {
|
|
|
12018
12469
|
updatedAt: number;
|
|
12019
12470
|
})[];
|
|
12020
12471
|
};
|
|
12472
|
+
"push.subscriptions.reconcile": {
|
|
12473
|
+
subscription: {
|
|
12474
|
+
id: string;
|
|
12475
|
+
principalId: string;
|
|
12476
|
+
deviceId?: string;
|
|
12477
|
+
endpointOrigin: string;
|
|
12478
|
+
endpointHash: string;
|
|
12479
|
+
createdAt: number;
|
|
12480
|
+
lastDeliveryAt?: number;
|
|
12481
|
+
lastOutcome?: string;
|
|
12482
|
+
consecutiveFailures?: number;
|
|
12483
|
+
};
|
|
12484
|
+
drift: string;
|
|
12485
|
+
};
|
|
12486
|
+
"pairing.tokens.list": {
|
|
12487
|
+
tokens: readonly ({
|
|
12488
|
+
id: string;
|
|
12489
|
+
name: string;
|
|
12490
|
+
createdAt: number;
|
|
12491
|
+
lastSeenAt?: number;
|
|
12492
|
+
})[];
|
|
12493
|
+
legacySharedRevoked: boolean;
|
|
12494
|
+
};
|
|
12495
|
+
"pairing.tokens.create": {
|
|
12496
|
+
token: {
|
|
12497
|
+
id: string;
|
|
12498
|
+
name: string;
|
|
12499
|
+
token: string;
|
|
12500
|
+
createdAt: number;
|
|
12501
|
+
};
|
|
12502
|
+
};
|
|
12503
|
+
"pairing.tokens.migrate": {
|
|
12504
|
+
token: {
|
|
12505
|
+
id: string;
|
|
12506
|
+
name: string;
|
|
12507
|
+
token: string;
|
|
12508
|
+
createdAt: number;
|
|
12509
|
+
};
|
|
12510
|
+
};
|
|
12511
|
+
"pairing.tokens.rename": {
|
|
12512
|
+
id: string;
|
|
12513
|
+
renamed: boolean;
|
|
12514
|
+
};
|
|
12515
|
+
"pairing.tokens.delete": {
|
|
12516
|
+
id: string;
|
|
12517
|
+
revoked: boolean;
|
|
12518
|
+
};
|
|
12519
|
+
"pairing.tokens.revokeShared": {
|
|
12520
|
+
legacySharedRevoked: boolean;
|
|
12521
|
+
};
|
|
12522
|
+
"pairing.handoff.create": {
|
|
12523
|
+
token: {
|
|
12524
|
+
id: string;
|
|
12525
|
+
name: string;
|
|
12526
|
+
token: string;
|
|
12527
|
+
createdAt: number;
|
|
12528
|
+
};
|
|
12529
|
+
offers: readonly ({
|
|
12530
|
+
kind: string;
|
|
12531
|
+
available: boolean;
|
|
12532
|
+
vapidPublicKey?: string;
|
|
12533
|
+
})[];
|
|
12534
|
+
fragment: string;
|
|
12535
|
+
deepLink?: string;
|
|
12536
|
+
posture?: {
|
|
12537
|
+
origin: string;
|
|
12538
|
+
scheme: string;
|
|
12539
|
+
privateNetwork: boolean;
|
|
12540
|
+
secureContext: boolean;
|
|
12541
|
+
notice?: string;
|
|
12542
|
+
capabilities: readonly ({
|
|
12543
|
+
capability: string;
|
|
12544
|
+
available: boolean;
|
|
12545
|
+
reason?: string;
|
|
12546
|
+
})[];
|
|
12547
|
+
};
|
|
12548
|
+
};
|
|
12549
|
+
"pairing.handoff.complete": {
|
|
12550
|
+
results: readonly ({
|
|
12551
|
+
kind: string;
|
|
12552
|
+
status: string;
|
|
12553
|
+
detail?: string;
|
|
12554
|
+
})[];
|
|
12555
|
+
};
|
|
12556
|
+
"pairing.posture.get": {
|
|
12557
|
+
posture: {
|
|
12558
|
+
origin: string;
|
|
12559
|
+
scheme: string;
|
|
12560
|
+
privateNetwork: boolean;
|
|
12561
|
+
secureContext: boolean;
|
|
12562
|
+
notice?: string;
|
|
12563
|
+
capabilities: readonly ({
|
|
12564
|
+
capability: string;
|
|
12565
|
+
available: boolean;
|
|
12566
|
+
reason?: string;
|
|
12567
|
+
})[];
|
|
12568
|
+
};
|
|
12569
|
+
};
|
|
12570
|
+
"tailscale.get": {
|
|
12571
|
+
available: boolean;
|
|
12572
|
+
loggedIn: boolean;
|
|
12573
|
+
magicDnsName?: string;
|
|
12574
|
+
httpsUrl?: string;
|
|
12575
|
+
detail: string;
|
|
12576
|
+
lastServe?: {
|
|
12577
|
+
at: number;
|
|
12578
|
+
command: string;
|
|
12579
|
+
ok: boolean;
|
|
12580
|
+
url?: string;
|
|
12581
|
+
detail: string;
|
|
12582
|
+
};
|
|
12583
|
+
};
|
|
12584
|
+
"tailscale.serve.run": {
|
|
12585
|
+
receipt: {
|
|
12586
|
+
at: number;
|
|
12587
|
+
command: string;
|
|
12588
|
+
ok: boolean;
|
|
12589
|
+
url?: string;
|
|
12590
|
+
detail: string;
|
|
12591
|
+
};
|
|
12592
|
+
publicBaseUrlUpdated: boolean;
|
|
12593
|
+
};
|
|
12594
|
+
"fleet.conflicts.list": {
|
|
12595
|
+
conflicts: readonly ({
|
|
12596
|
+
workstreamId: string;
|
|
12597
|
+
itemId: string;
|
|
12598
|
+
title: string;
|
|
12599
|
+
worktreePath: string;
|
|
12600
|
+
branch?: string;
|
|
12601
|
+
files: readonly string[];
|
|
12602
|
+
resolutionSessionId?: string;
|
|
12603
|
+
})[];
|
|
12604
|
+
};
|
|
12605
|
+
"fleet.conflicts.resolve": {
|
|
12606
|
+
itemId: string;
|
|
12607
|
+
sessionId: string;
|
|
12608
|
+
worktreePath: string;
|
|
12609
|
+
files: readonly string[];
|
|
12610
|
+
};
|
|
12611
|
+
"worktrees.discard": {
|
|
12612
|
+
path: string;
|
|
12613
|
+
ok: boolean;
|
|
12614
|
+
branch?: string;
|
|
12615
|
+
preservedCommit?: string;
|
|
12616
|
+
discardedAt: number;
|
|
12617
|
+
detail: string;
|
|
12618
|
+
};
|
|
12619
|
+
"acp.agents.list": {
|
|
12620
|
+
agents: readonly ({
|
|
12621
|
+
id: string;
|
|
12622
|
+
title: string;
|
|
12623
|
+
binaryPath: string;
|
|
12624
|
+
args: readonly string[];
|
|
12625
|
+
})[];
|
|
12626
|
+
};
|
|
12627
|
+
"acp.sessions.create": {
|
|
12628
|
+
hosted: {
|
|
12629
|
+
id: string;
|
|
12630
|
+
agentId: string;
|
|
12631
|
+
title: string;
|
|
12632
|
+
binaryPath: string;
|
|
12633
|
+
cwd: string;
|
|
12634
|
+
state: string;
|
|
12635
|
+
startedAt: number;
|
|
12636
|
+
completedAt?: number;
|
|
12637
|
+
sessionId?: string;
|
|
12638
|
+
progress?: string;
|
|
12639
|
+
pendingPermission?: string;
|
|
12640
|
+
error?: {
|
|
12641
|
+
binary: string;
|
|
12642
|
+
stage: string;
|
|
12643
|
+
message: string;
|
|
12644
|
+
};
|
|
12645
|
+
promptCount: number;
|
|
12646
|
+
};
|
|
12647
|
+
started: boolean;
|
|
12648
|
+
};
|
|
12021
12649
|
}
|
|
12022
12650
|
export interface OperatorEventPayloadMap {
|
|
12023
12651
|
"control.heartbeat": {
|