@pellux/goodvibes-contracts 1.7.1 → 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.
- package/artifacts/operator-contract.json +3846 -166
- package/artifacts/operator-openapi.json +1949 -18
- package/artifacts/python/homeassistant_operator_client.py +5 -3
- package/dist/core-verbs.d.ts.map +1 -1
- package/dist/core-verbs.js +33 -0
- package/dist/generated/foundation-client-types.d.ts +770 -83
- 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 +831 -20
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +3846 -166
- 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 +28 -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 +923 -27
- package/dist/zod-schemas/accounts.d.ts +7 -1
- package/dist/zod-schemas/accounts.d.ts.map +1 -1
- package/dist/zod-schemas/accounts.js +4 -1
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"openapi": "3.1.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "GoodVibes Operator API",
|
|
5
|
-
"version": "1.
|
|
6
|
-
"description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json).
|
|
5
|
+
"version": "1.9.0",
|
|
6
|
+
"description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json). 412 cataloged methods: 361 with dedicated REST bindings, 51 reachable only through the generic invoke endpoint. 97 methods lack typed SDK client IO and are marked with `x-typed-client-io: false` — they are represented honestly, never omitted. Regenerate with `bun run openapi:generate`; drift fails `contracts:check`."
|
|
7
7
|
},
|
|
8
8
|
"servers": [
|
|
9
9
|
{
|
|
@@ -162,7 +162,35 @@
|
|
|
162
162
|
"recommendedActions": {
|
|
163
163
|
"type": "array",
|
|
164
164
|
"items": {
|
|
165
|
-
"type": "
|
|
165
|
+
"type": "object",
|
|
166
|
+
"properties": {
|
|
167
|
+
"description": {
|
|
168
|
+
"type": "string"
|
|
169
|
+
},
|
|
170
|
+
"command": {
|
|
171
|
+
"type": "object",
|
|
172
|
+
"properties": {
|
|
173
|
+
"name": {
|
|
174
|
+
"type": "string"
|
|
175
|
+
},
|
|
176
|
+
"args": {
|
|
177
|
+
"type": "array",
|
|
178
|
+
"items": {
|
|
179
|
+
"type": "string"
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"required": [
|
|
184
|
+
"name",
|
|
185
|
+
"args"
|
|
186
|
+
],
|
|
187
|
+
"additionalProperties": false
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"required": [
|
|
191
|
+
"description"
|
|
192
|
+
],
|
|
193
|
+
"additionalProperties": false
|
|
166
194
|
}
|
|
167
195
|
},
|
|
168
196
|
"routeRecords": {
|
|
@@ -271,7 +299,7 @@
|
|
|
271
299
|
"post": {
|
|
272
300
|
"operationId": "approvals.approve",
|
|
273
301
|
"summary": "Approve Approval",
|
|
274
|
-
"description": "Approve a pending approval. Optionally pass selectedHunks (edit-tool approvals only): the daemon filters the approval's own edit list to those hunk indices server-side, so every surface produces identical modified-edit args. Omitting selectedHunks approves the whole request (back-compat). An out-of-range index or a non-edit approval is rejected with a 400.",
|
|
302
|
+
"description": "Approve a pending approval. Optionally pass selectedHunks (edit-tool approvals only): the daemon filters the approval's own edit list to those hunk indices server-side, so every surface produces identical modified-edit args. Omitting selectedHunks approves the whole request (back-compat). An out-of-range index or a non-edit approval is rejected with a 400. rememberTier generalizes the decision (a generalizing tier persists a durable rule and sweeps queued asks it covers); modifiedArgs carries an argument-modifying approval — e.g. the typed answer to a command's terminal prompt — to the waiting call (selectedHunks supersedes it when both are present). The response's recorded block reports what the broker actually recorded.",
|
|
275
303
|
"tags": [
|
|
276
304
|
"approvals"
|
|
277
305
|
],
|
|
@@ -503,6 +531,36 @@
|
|
|
503
531
|
"additionalProperties": false
|
|
504
532
|
}
|
|
505
533
|
]
|
|
534
|
+
},
|
|
535
|
+
"rememberOptions": {
|
|
536
|
+
"type": "array",
|
|
537
|
+
"items": {
|
|
538
|
+
"type": "object",
|
|
539
|
+
"properties": {
|
|
540
|
+
"tier": {
|
|
541
|
+
"type": "string",
|
|
542
|
+
"enum": [
|
|
543
|
+
"session",
|
|
544
|
+
"exact",
|
|
545
|
+
"command-class",
|
|
546
|
+
"path",
|
|
547
|
+
"tool"
|
|
548
|
+
]
|
|
549
|
+
},
|
|
550
|
+
"label": {
|
|
551
|
+
"type": "string"
|
|
552
|
+
},
|
|
553
|
+
"detail": {
|
|
554
|
+
"type": "string"
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
"required": [
|
|
558
|
+
"tier",
|
|
559
|
+
"label",
|
|
560
|
+
"detail"
|
|
561
|
+
],
|
|
562
|
+
"additionalProperties": false
|
|
563
|
+
}
|
|
506
564
|
}
|
|
507
565
|
},
|
|
508
566
|
"required": [
|
|
@@ -541,6 +599,19 @@
|
|
|
541
599
|
"remember": {
|
|
542
600
|
"type": "boolean"
|
|
543
601
|
},
|
|
602
|
+
"rememberTier": {
|
|
603
|
+
"type": "string",
|
|
604
|
+
"enum": [
|
|
605
|
+
"session",
|
|
606
|
+
"exact",
|
|
607
|
+
"command-class",
|
|
608
|
+
"path",
|
|
609
|
+
"tool"
|
|
610
|
+
]
|
|
611
|
+
},
|
|
612
|
+
"reason": {
|
|
613
|
+
"type": "string"
|
|
614
|
+
},
|
|
544
615
|
"modifiedArgs": {
|
|
545
616
|
"type": "object",
|
|
546
617
|
"additionalProperties": {
|
|
@@ -574,6 +645,12 @@
|
|
|
574
645
|
],
|
|
575
646
|
"additionalProperties": false
|
|
576
647
|
},
|
|
648
|
+
"fixSessionId": {
|
|
649
|
+
"type": "string"
|
|
650
|
+
},
|
|
651
|
+
"fixSessionError": {
|
|
652
|
+
"type": "string"
|
|
653
|
+
},
|
|
577
654
|
"metadata": {
|
|
578
655
|
"type": "object",
|
|
579
656
|
"additionalProperties": {
|
|
@@ -655,6 +732,44 @@
|
|
|
655
732
|
"audit"
|
|
656
733
|
],
|
|
657
734
|
"additionalProperties": false
|
|
735
|
+
},
|
|
736
|
+
"recorded": {
|
|
737
|
+
"type": "object",
|
|
738
|
+
"properties": {
|
|
739
|
+
"approved": {
|
|
740
|
+
"type": "boolean"
|
|
741
|
+
},
|
|
742
|
+
"rememberTier": {
|
|
743
|
+
"anyOf": [
|
|
744
|
+
{
|
|
745
|
+
"type": "string",
|
|
746
|
+
"enum": [
|
|
747
|
+
"session",
|
|
748
|
+
"exact",
|
|
749
|
+
"command-class",
|
|
750
|
+
"path",
|
|
751
|
+
"tool"
|
|
752
|
+
]
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"type": "null"
|
|
756
|
+
}
|
|
757
|
+
]
|
|
758
|
+
},
|
|
759
|
+
"reasonStored": {
|
|
760
|
+
"type": "boolean"
|
|
761
|
+
},
|
|
762
|
+
"modifiedArgsDelivered": {
|
|
763
|
+
"type": "boolean"
|
|
764
|
+
}
|
|
765
|
+
},
|
|
766
|
+
"required": [
|
|
767
|
+
"approved",
|
|
768
|
+
"rememberTier",
|
|
769
|
+
"reasonStored",
|
|
770
|
+
"modifiedArgsDelivered"
|
|
771
|
+
],
|
|
772
|
+
"additionalProperties": false
|
|
658
773
|
}
|
|
659
774
|
},
|
|
660
775
|
"required": [
|
|
@@ -709,6 +824,46 @@
|
|
|
709
824
|
"items": {
|
|
710
825
|
"type": "number"
|
|
711
826
|
}
|
|
827
|
+
},
|
|
828
|
+
"rememberTier": {
|
|
829
|
+
"type": "string",
|
|
830
|
+
"enum": [
|
|
831
|
+
"session",
|
|
832
|
+
"exact",
|
|
833
|
+
"command-class",
|
|
834
|
+
"path",
|
|
835
|
+
"tool"
|
|
836
|
+
]
|
|
837
|
+
},
|
|
838
|
+
"reason": {
|
|
839
|
+
"type": "string"
|
|
840
|
+
},
|
|
841
|
+
"modifiedArgs": {
|
|
842
|
+
"type": "object",
|
|
843
|
+
"additionalProperties": {
|
|
844
|
+
"anyOf": [
|
|
845
|
+
{
|
|
846
|
+
"type": "string"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"type": "number"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"type": "boolean"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"type": "null"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"type": "object",
|
|
859
|
+
"additionalProperties": {}
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"type": "array",
|
|
863
|
+
"items": {}
|
|
864
|
+
}
|
|
865
|
+
]
|
|
866
|
+
}
|
|
712
867
|
}
|
|
713
868
|
},
|
|
714
869
|
"required": [
|
|
@@ -957,6 +1112,36 @@
|
|
|
957
1112
|
"additionalProperties": false
|
|
958
1113
|
}
|
|
959
1114
|
]
|
|
1115
|
+
},
|
|
1116
|
+
"rememberOptions": {
|
|
1117
|
+
"type": "array",
|
|
1118
|
+
"items": {
|
|
1119
|
+
"type": "object",
|
|
1120
|
+
"properties": {
|
|
1121
|
+
"tier": {
|
|
1122
|
+
"type": "string",
|
|
1123
|
+
"enum": [
|
|
1124
|
+
"session",
|
|
1125
|
+
"exact",
|
|
1126
|
+
"command-class",
|
|
1127
|
+
"path",
|
|
1128
|
+
"tool"
|
|
1129
|
+
]
|
|
1130
|
+
},
|
|
1131
|
+
"label": {
|
|
1132
|
+
"type": "string"
|
|
1133
|
+
},
|
|
1134
|
+
"detail": {
|
|
1135
|
+
"type": "string"
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
"required": [
|
|
1139
|
+
"tier",
|
|
1140
|
+
"label",
|
|
1141
|
+
"detail"
|
|
1142
|
+
],
|
|
1143
|
+
"additionalProperties": false
|
|
1144
|
+
}
|
|
960
1145
|
}
|
|
961
1146
|
},
|
|
962
1147
|
"required": [
|
|
@@ -995,6 +1180,19 @@
|
|
|
995
1180
|
"remember": {
|
|
996
1181
|
"type": "boolean"
|
|
997
1182
|
},
|
|
1183
|
+
"rememberTier": {
|
|
1184
|
+
"type": "string",
|
|
1185
|
+
"enum": [
|
|
1186
|
+
"session",
|
|
1187
|
+
"exact",
|
|
1188
|
+
"command-class",
|
|
1189
|
+
"path",
|
|
1190
|
+
"tool"
|
|
1191
|
+
]
|
|
1192
|
+
},
|
|
1193
|
+
"reason": {
|
|
1194
|
+
"type": "string"
|
|
1195
|
+
},
|
|
998
1196
|
"modifiedArgs": {
|
|
999
1197
|
"type": "object",
|
|
1000
1198
|
"additionalProperties": {
|
|
@@ -1028,6 +1226,12 @@
|
|
|
1028
1226
|
],
|
|
1029
1227
|
"additionalProperties": false
|
|
1030
1228
|
},
|
|
1229
|
+
"fixSessionId": {
|
|
1230
|
+
"type": "string"
|
|
1231
|
+
},
|
|
1232
|
+
"fixSessionError": {
|
|
1233
|
+
"type": "string"
|
|
1234
|
+
},
|
|
1031
1235
|
"metadata": {
|
|
1032
1236
|
"type": "object",
|
|
1033
1237
|
"additionalProperties": {
|
|
@@ -1109,6 +1313,44 @@
|
|
|
1109
1313
|
"audit"
|
|
1110
1314
|
],
|
|
1111
1315
|
"additionalProperties": false
|
|
1316
|
+
},
|
|
1317
|
+
"recorded": {
|
|
1318
|
+
"type": "object",
|
|
1319
|
+
"properties": {
|
|
1320
|
+
"approved": {
|
|
1321
|
+
"type": "boolean"
|
|
1322
|
+
},
|
|
1323
|
+
"rememberTier": {
|
|
1324
|
+
"anyOf": [
|
|
1325
|
+
{
|
|
1326
|
+
"type": "string",
|
|
1327
|
+
"enum": [
|
|
1328
|
+
"session",
|
|
1329
|
+
"exact",
|
|
1330
|
+
"command-class",
|
|
1331
|
+
"path",
|
|
1332
|
+
"tool"
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"type": "null"
|
|
1337
|
+
}
|
|
1338
|
+
]
|
|
1339
|
+
},
|
|
1340
|
+
"reasonStored": {
|
|
1341
|
+
"type": "boolean"
|
|
1342
|
+
},
|
|
1343
|
+
"modifiedArgsDelivered": {
|
|
1344
|
+
"type": "boolean"
|
|
1345
|
+
}
|
|
1346
|
+
},
|
|
1347
|
+
"required": [
|
|
1348
|
+
"approved",
|
|
1349
|
+
"rememberTier",
|
|
1350
|
+
"reasonStored",
|
|
1351
|
+
"modifiedArgsDelivered"
|
|
1352
|
+
],
|
|
1353
|
+
"additionalProperties": false
|
|
1112
1354
|
}
|
|
1113
1355
|
},
|
|
1114
1356
|
"required": [
|
|
@@ -1405,6 +1647,36 @@
|
|
|
1405
1647
|
"additionalProperties": false
|
|
1406
1648
|
}
|
|
1407
1649
|
]
|
|
1650
|
+
},
|
|
1651
|
+
"rememberOptions": {
|
|
1652
|
+
"type": "array",
|
|
1653
|
+
"items": {
|
|
1654
|
+
"type": "object",
|
|
1655
|
+
"properties": {
|
|
1656
|
+
"tier": {
|
|
1657
|
+
"type": "string",
|
|
1658
|
+
"enum": [
|
|
1659
|
+
"session",
|
|
1660
|
+
"exact",
|
|
1661
|
+
"command-class",
|
|
1662
|
+
"path",
|
|
1663
|
+
"tool"
|
|
1664
|
+
]
|
|
1665
|
+
},
|
|
1666
|
+
"label": {
|
|
1667
|
+
"type": "string"
|
|
1668
|
+
},
|
|
1669
|
+
"detail": {
|
|
1670
|
+
"type": "string"
|
|
1671
|
+
}
|
|
1672
|
+
},
|
|
1673
|
+
"required": [
|
|
1674
|
+
"tier",
|
|
1675
|
+
"label",
|
|
1676
|
+
"detail"
|
|
1677
|
+
],
|
|
1678
|
+
"additionalProperties": false
|
|
1679
|
+
}
|
|
1408
1680
|
}
|
|
1409
1681
|
},
|
|
1410
1682
|
"required": [
|
|
@@ -1443,6 +1715,19 @@
|
|
|
1443
1715
|
"remember": {
|
|
1444
1716
|
"type": "boolean"
|
|
1445
1717
|
},
|
|
1718
|
+
"rememberTier": {
|
|
1719
|
+
"type": "string",
|
|
1720
|
+
"enum": [
|
|
1721
|
+
"session",
|
|
1722
|
+
"exact",
|
|
1723
|
+
"command-class",
|
|
1724
|
+
"path",
|
|
1725
|
+
"tool"
|
|
1726
|
+
]
|
|
1727
|
+
},
|
|
1728
|
+
"reason": {
|
|
1729
|
+
"type": "string"
|
|
1730
|
+
},
|
|
1446
1731
|
"modifiedArgs": {
|
|
1447
1732
|
"type": "object",
|
|
1448
1733
|
"additionalProperties": {
|
|
@@ -1476,6 +1761,12 @@
|
|
|
1476
1761
|
],
|
|
1477
1762
|
"additionalProperties": false
|
|
1478
1763
|
},
|
|
1764
|
+
"fixSessionId": {
|
|
1765
|
+
"type": "string"
|
|
1766
|
+
},
|
|
1767
|
+
"fixSessionError": {
|
|
1768
|
+
"type": "string"
|
|
1769
|
+
},
|
|
1479
1770
|
"metadata": {
|
|
1480
1771
|
"type": "object",
|
|
1481
1772
|
"additionalProperties": {
|
|
@@ -1557,6 +1848,44 @@
|
|
|
1557
1848
|
"audit"
|
|
1558
1849
|
],
|
|
1559
1850
|
"additionalProperties": false
|
|
1851
|
+
},
|
|
1852
|
+
"recorded": {
|
|
1853
|
+
"type": "object",
|
|
1854
|
+
"properties": {
|
|
1855
|
+
"approved": {
|
|
1856
|
+
"type": "boolean"
|
|
1857
|
+
},
|
|
1858
|
+
"rememberTier": {
|
|
1859
|
+
"anyOf": [
|
|
1860
|
+
{
|
|
1861
|
+
"type": "string",
|
|
1862
|
+
"enum": [
|
|
1863
|
+
"session",
|
|
1864
|
+
"exact",
|
|
1865
|
+
"command-class",
|
|
1866
|
+
"path",
|
|
1867
|
+
"tool"
|
|
1868
|
+
]
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
"type": "null"
|
|
1872
|
+
}
|
|
1873
|
+
]
|
|
1874
|
+
},
|
|
1875
|
+
"reasonStored": {
|
|
1876
|
+
"type": "boolean"
|
|
1877
|
+
},
|
|
1878
|
+
"modifiedArgsDelivered": {
|
|
1879
|
+
"type": "boolean"
|
|
1880
|
+
}
|
|
1881
|
+
},
|
|
1882
|
+
"required": [
|
|
1883
|
+
"approved",
|
|
1884
|
+
"rememberTier",
|
|
1885
|
+
"reasonStored",
|
|
1886
|
+
"modifiedArgsDelivered"
|
|
1887
|
+
],
|
|
1888
|
+
"additionalProperties": false
|
|
1560
1889
|
}
|
|
1561
1890
|
},
|
|
1562
1891
|
"required": [
|
|
@@ -1615,7 +1944,7 @@
|
|
|
1615
1944
|
"post": {
|
|
1616
1945
|
"operationId": "approvals.deny",
|
|
1617
1946
|
"summary": "Deny Approval",
|
|
1618
|
-
"description": "Deny a pending approval.",
|
|
1947
|
+
"description": "Deny a pending approval. rememberTier generalizes the denial (a generalizing tier persists a durable deny rule and sweeps queued asks it covers); reason is the user's free-text feedback, which rides the structured declined result so the model adapts instead of guessing. The response's recorded block reports what the broker actually recorded.",
|
|
1619
1948
|
"tags": [
|
|
1620
1949
|
"approvals"
|
|
1621
1950
|
],
|
|
@@ -1847,6 +2176,36 @@
|
|
|
1847
2176
|
"additionalProperties": false
|
|
1848
2177
|
}
|
|
1849
2178
|
]
|
|
2179
|
+
},
|
|
2180
|
+
"rememberOptions": {
|
|
2181
|
+
"type": "array",
|
|
2182
|
+
"items": {
|
|
2183
|
+
"type": "object",
|
|
2184
|
+
"properties": {
|
|
2185
|
+
"tier": {
|
|
2186
|
+
"type": "string",
|
|
2187
|
+
"enum": [
|
|
2188
|
+
"session",
|
|
2189
|
+
"exact",
|
|
2190
|
+
"command-class",
|
|
2191
|
+
"path",
|
|
2192
|
+
"tool"
|
|
2193
|
+
]
|
|
2194
|
+
},
|
|
2195
|
+
"label": {
|
|
2196
|
+
"type": "string"
|
|
2197
|
+
},
|
|
2198
|
+
"detail": {
|
|
2199
|
+
"type": "string"
|
|
2200
|
+
}
|
|
2201
|
+
},
|
|
2202
|
+
"required": [
|
|
2203
|
+
"tier",
|
|
2204
|
+
"label",
|
|
2205
|
+
"detail"
|
|
2206
|
+
],
|
|
2207
|
+
"additionalProperties": false
|
|
2208
|
+
}
|
|
1850
2209
|
}
|
|
1851
2210
|
},
|
|
1852
2211
|
"required": [
|
|
@@ -1885,6 +2244,19 @@
|
|
|
1885
2244
|
"remember": {
|
|
1886
2245
|
"type": "boolean"
|
|
1887
2246
|
},
|
|
2247
|
+
"rememberTier": {
|
|
2248
|
+
"type": "string",
|
|
2249
|
+
"enum": [
|
|
2250
|
+
"session",
|
|
2251
|
+
"exact",
|
|
2252
|
+
"command-class",
|
|
2253
|
+
"path",
|
|
2254
|
+
"tool"
|
|
2255
|
+
]
|
|
2256
|
+
},
|
|
2257
|
+
"reason": {
|
|
2258
|
+
"type": "string"
|
|
2259
|
+
},
|
|
1888
2260
|
"modifiedArgs": {
|
|
1889
2261
|
"type": "object",
|
|
1890
2262
|
"additionalProperties": {
|
|
@@ -1918,6 +2290,12 @@
|
|
|
1918
2290
|
],
|
|
1919
2291
|
"additionalProperties": false
|
|
1920
2292
|
},
|
|
2293
|
+
"fixSessionId": {
|
|
2294
|
+
"type": "string"
|
|
2295
|
+
},
|
|
2296
|
+
"fixSessionError": {
|
|
2297
|
+
"type": "string"
|
|
2298
|
+
},
|
|
1921
2299
|
"metadata": {
|
|
1922
2300
|
"type": "object",
|
|
1923
2301
|
"additionalProperties": {
|
|
@@ -1999,6 +2377,44 @@
|
|
|
1999
2377
|
"audit"
|
|
2000
2378
|
],
|
|
2001
2379
|
"additionalProperties": false
|
|
2380
|
+
},
|
|
2381
|
+
"recorded": {
|
|
2382
|
+
"type": "object",
|
|
2383
|
+
"properties": {
|
|
2384
|
+
"approved": {
|
|
2385
|
+
"type": "boolean"
|
|
2386
|
+
},
|
|
2387
|
+
"rememberTier": {
|
|
2388
|
+
"anyOf": [
|
|
2389
|
+
{
|
|
2390
|
+
"type": "string",
|
|
2391
|
+
"enum": [
|
|
2392
|
+
"session",
|
|
2393
|
+
"exact",
|
|
2394
|
+
"command-class",
|
|
2395
|
+
"path",
|
|
2396
|
+
"tool"
|
|
2397
|
+
]
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"type": "null"
|
|
2401
|
+
}
|
|
2402
|
+
]
|
|
2403
|
+
},
|
|
2404
|
+
"reasonStored": {
|
|
2405
|
+
"type": "boolean"
|
|
2406
|
+
},
|
|
2407
|
+
"modifiedArgsDelivered": {
|
|
2408
|
+
"type": "boolean"
|
|
2409
|
+
}
|
|
2410
|
+
},
|
|
2411
|
+
"required": [
|
|
2412
|
+
"approved",
|
|
2413
|
+
"rememberTier",
|
|
2414
|
+
"reasonStored",
|
|
2415
|
+
"modifiedArgsDelivered"
|
|
2416
|
+
],
|
|
2417
|
+
"additionalProperties": false
|
|
2002
2418
|
}
|
|
2003
2419
|
},
|
|
2004
2420
|
"required": [
|
|
@@ -2047,6 +2463,19 @@
|
|
|
2047
2463
|
},
|
|
2048
2464
|
"remember": {
|
|
2049
2465
|
"type": "boolean"
|
|
2466
|
+
},
|
|
2467
|
+
"rememberTier": {
|
|
2468
|
+
"type": "string",
|
|
2469
|
+
"enum": [
|
|
2470
|
+
"session",
|
|
2471
|
+
"exact",
|
|
2472
|
+
"command-class",
|
|
2473
|
+
"path",
|
|
2474
|
+
"tool"
|
|
2475
|
+
]
|
|
2476
|
+
},
|
|
2477
|
+
"reason": {
|
|
2478
|
+
"type": "string"
|
|
2050
2479
|
}
|
|
2051
2480
|
},
|
|
2052
2481
|
"required": [
|
|
@@ -2140,6 +2569,8 @@
|
|
|
2140
2569
|
"session_cached_approval",
|
|
2141
2570
|
"session_cached_denial",
|
|
2142
2571
|
"safety_guardrail",
|
|
2572
|
+
"user_rule_allow",
|
|
2573
|
+
"user_rule_deny",
|
|
2143
2574
|
"user_approved",
|
|
2144
2575
|
"user_denied"
|
|
2145
2576
|
]
|
|
@@ -2152,6 +2583,7 @@
|
|
|
2152
2583
|
"runtime_mode",
|
|
2153
2584
|
"session_override",
|
|
2154
2585
|
"safety_check",
|
|
2586
|
+
"user_rule",
|
|
2155
2587
|
"user_prompt"
|
|
2156
2588
|
]
|
|
2157
2589
|
},
|
|
@@ -2424,6 +2856,36 @@
|
|
|
2424
2856
|
"additionalProperties": false
|
|
2425
2857
|
}
|
|
2426
2858
|
]
|
|
2859
|
+
},
|
|
2860
|
+
"rememberOptions": {
|
|
2861
|
+
"type": "array",
|
|
2862
|
+
"items": {
|
|
2863
|
+
"type": "object",
|
|
2864
|
+
"properties": {
|
|
2865
|
+
"tier": {
|
|
2866
|
+
"type": "string",
|
|
2867
|
+
"enum": [
|
|
2868
|
+
"session",
|
|
2869
|
+
"exact",
|
|
2870
|
+
"command-class",
|
|
2871
|
+
"path",
|
|
2872
|
+
"tool"
|
|
2873
|
+
]
|
|
2874
|
+
},
|
|
2875
|
+
"label": {
|
|
2876
|
+
"type": "string"
|
|
2877
|
+
},
|
|
2878
|
+
"detail": {
|
|
2879
|
+
"type": "string"
|
|
2880
|
+
}
|
|
2881
|
+
},
|
|
2882
|
+
"required": [
|
|
2883
|
+
"tier",
|
|
2884
|
+
"label",
|
|
2885
|
+
"detail"
|
|
2886
|
+
],
|
|
2887
|
+
"additionalProperties": false
|
|
2888
|
+
}
|
|
2427
2889
|
}
|
|
2428
2890
|
},
|
|
2429
2891
|
"required": [
|
|
@@ -2462,6 +2924,19 @@
|
|
|
2462
2924
|
"remember": {
|
|
2463
2925
|
"type": "boolean"
|
|
2464
2926
|
},
|
|
2927
|
+
"rememberTier": {
|
|
2928
|
+
"type": "string",
|
|
2929
|
+
"enum": [
|
|
2930
|
+
"session",
|
|
2931
|
+
"exact",
|
|
2932
|
+
"command-class",
|
|
2933
|
+
"path",
|
|
2934
|
+
"tool"
|
|
2935
|
+
]
|
|
2936
|
+
},
|
|
2937
|
+
"reason": {
|
|
2938
|
+
"type": "string"
|
|
2939
|
+
},
|
|
2465
2940
|
"modifiedArgs": {
|
|
2466
2941
|
"type": "object",
|
|
2467
2942
|
"additionalProperties": {
|
|
@@ -2495,6 +2970,12 @@
|
|
|
2495
2970
|
],
|
|
2496
2971
|
"additionalProperties": false
|
|
2497
2972
|
},
|
|
2973
|
+
"fixSessionId": {
|
|
2974
|
+
"type": "string"
|
|
2975
|
+
},
|
|
2976
|
+
"fixSessionError": {
|
|
2977
|
+
"type": "string"
|
|
2978
|
+
},
|
|
2498
2979
|
"metadata": {
|
|
2499
2980
|
"type": "object",
|
|
2500
2981
|
"additionalProperties": {
|
|
@@ -3638,7 +4119,8 @@
|
|
|
3638
4119
|
"running",
|
|
3639
4120
|
"completed",
|
|
3640
4121
|
"failed",
|
|
3641
|
-
"cancelled"
|
|
4122
|
+
"cancelled",
|
|
4123
|
+
"missed"
|
|
3642
4124
|
]
|
|
3643
4125
|
},
|
|
3644
4126
|
"agentId": {
|
|
@@ -6947,6 +7429,22 @@
|
|
|
6947
7429
|
],
|
|
6948
7430
|
"additionalProperties": true
|
|
6949
7431
|
}
|
|
7432
|
+
},
|
|
7433
|
+
"emptyState": {
|
|
7434
|
+
"type": "object",
|
|
7435
|
+
"properties": {
|
|
7436
|
+
"title": {
|
|
7437
|
+
"type": "string"
|
|
7438
|
+
},
|
|
7439
|
+
"body": {
|
|
7440
|
+
"type": "string"
|
|
7441
|
+
}
|
|
7442
|
+
},
|
|
7443
|
+
"required": [
|
|
7444
|
+
"title",
|
|
7445
|
+
"body"
|
|
7446
|
+
],
|
|
7447
|
+
"additionalProperties": false
|
|
6950
7448
|
}
|
|
6951
7449
|
},
|
|
6952
7450
|
"required": [
|
|
@@ -8632,7 +9130,8 @@
|
|
|
8632
9130
|
"running",
|
|
8633
9131
|
"completed",
|
|
8634
9132
|
"failed",
|
|
8635
|
-
"cancelled"
|
|
9133
|
+
"cancelled",
|
|
9134
|
+
"missed"
|
|
8636
9135
|
]
|
|
8637
9136
|
},
|
|
8638
9137
|
"agentId": {
|
|
@@ -9650,7 +10149,8 @@
|
|
|
9650
10149
|
"running",
|
|
9651
10150
|
"completed",
|
|
9652
10151
|
"failed",
|
|
9653
|
-
"cancelled"
|
|
10152
|
+
"cancelled",
|
|
10153
|
+
"missed"
|
|
9654
10154
|
]
|
|
9655
10155
|
},
|
|
9656
10156
|
"agentId": {
|
|
@@ -10708,7 +11208,7 @@
|
|
|
10708
11208
|
"get": {
|
|
10709
11209
|
"operationId": "automation.runs.list",
|
|
10710
11210
|
"summary": "List Automation Runs",
|
|
10711
|
-
"description": "Return automation run history. Without ?limit/?cursor returns { runs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400.",
|
|
11211
|
+
"description": "Return automation run history. Without ?limit/?cursor returns { runs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400. Optional ?since=<epoch-ms> returns only runs active on or after that time (by queuedAt, or endedAt when set) — the host-side source an away-digest reads to report the failed, missed, completed, and delivered runs since the operator was last present.",
|
|
10712
11212
|
"tags": [
|
|
10713
11213
|
"automation"
|
|
10714
11214
|
],
|
|
@@ -10750,7 +11250,8 @@
|
|
|
10750
11250
|
"running",
|
|
10751
11251
|
"completed",
|
|
10752
11252
|
"failed",
|
|
10753
|
-
"cancelled"
|
|
11253
|
+
"cancelled",
|
|
11254
|
+
"missed"
|
|
10754
11255
|
]
|
|
10755
11256
|
},
|
|
10756
11257
|
"agentId": {
|
|
@@ -11710,6 +12211,14 @@
|
|
|
11710
12211
|
"schema": {
|
|
11711
12212
|
"type": "string"
|
|
11712
12213
|
}
|
|
12214
|
+
},
|
|
12215
|
+
{
|
|
12216
|
+
"name": "since",
|
|
12217
|
+
"in": "query",
|
|
12218
|
+
"required": false,
|
|
12219
|
+
"schema": {
|
|
12220
|
+
"type": "number"
|
|
12221
|
+
}
|
|
11713
12222
|
}
|
|
11714
12223
|
]
|
|
11715
12224
|
}
|
|
@@ -11758,7 +12267,8 @@
|
|
|
11758
12267
|
"running",
|
|
11759
12268
|
"completed",
|
|
11760
12269
|
"failed",
|
|
11761
|
-
"cancelled"
|
|
12270
|
+
"cancelled",
|
|
12271
|
+
"missed"
|
|
11762
12272
|
]
|
|
11763
12273
|
},
|
|
11764
12274
|
"agentId": {
|
|
@@ -14743,7 +15253,8 @@
|
|
|
14743
15253
|
"running",
|
|
14744
15254
|
"completed",
|
|
14745
15255
|
"failed",
|
|
14746
|
-
"cancelled"
|
|
15256
|
+
"cancelled",
|
|
15257
|
+
"missed"
|
|
14747
15258
|
]
|
|
14748
15259
|
},
|
|
14749
15260
|
"agentId": {
|
|
@@ -24020,6 +24531,15 @@
|
|
|
24020
24531
|
},
|
|
24021
24532
|
"fixSessionId": {
|
|
24022
24533
|
"type": "string"
|
|
24534
|
+
},
|
|
24535
|
+
"fixSessionError": {
|
|
24536
|
+
"type": "string"
|
|
24537
|
+
},
|
|
24538
|
+
"fixSessionOffered": {
|
|
24539
|
+
"type": "boolean"
|
|
24540
|
+
},
|
|
24541
|
+
"retired": {
|
|
24542
|
+
"type": "boolean"
|
|
24023
24543
|
}
|
|
24024
24544
|
},
|
|
24025
24545
|
"required": [
|
|
@@ -28620,7 +29140,7 @@
|
|
|
28620
29140
|
"get": {
|
|
28621
29141
|
"operationId": "control.status",
|
|
28622
29142
|
"summary": "Daemon Status",
|
|
28623
|
-
"description": "Return daemon status and version.",
|
|
29143
|
+
"description": "Return daemon status and version. Pass receipts=consume to also receive undelivered daemon receipts (update/crash/migration notices) and mark them delivered — exactly once across all consuming readers. Without the flag no receipts are returned or consumed, so identity probes and keepalives never eat them.",
|
|
28624
29144
|
"tags": [
|
|
28625
29145
|
"control-plane"
|
|
28626
29146
|
],
|
|
@@ -28637,6 +29157,29 @@
|
|
|
28637
29157
|
},
|
|
28638
29158
|
"version": {
|
|
28639
29159
|
"type": "string"
|
|
29160
|
+
},
|
|
29161
|
+
"receipts": {
|
|
29162
|
+
"type": "array",
|
|
29163
|
+
"items": {
|
|
29164
|
+
"type": "object",
|
|
29165
|
+
"properties": {
|
|
29166
|
+
"id": {
|
|
29167
|
+
"type": "string"
|
|
29168
|
+
},
|
|
29169
|
+
"text": {
|
|
29170
|
+
"type": "string"
|
|
29171
|
+
},
|
|
29172
|
+
"at": {
|
|
29173
|
+
"type": "number"
|
|
29174
|
+
}
|
|
29175
|
+
},
|
|
29176
|
+
"required": [
|
|
29177
|
+
"id",
|
|
29178
|
+
"text",
|
|
29179
|
+
"at"
|
|
29180
|
+
],
|
|
29181
|
+
"additionalProperties": false
|
|
29182
|
+
}
|
|
28640
29183
|
}
|
|
28641
29184
|
},
|
|
28642
29185
|
"required": [
|
|
@@ -28660,6 +29203,20 @@
|
|
|
28660
29203
|
],
|
|
28661
29204
|
"x-scopes": [
|
|
28662
29205
|
"read:control-plane"
|
|
29206
|
+
],
|
|
29207
|
+
"parameters": [
|
|
29208
|
+
{
|
|
29209
|
+
"name": "receipts",
|
|
29210
|
+
"in": "query",
|
|
29211
|
+
"required": false,
|
|
29212
|
+
"schema": {
|
|
29213
|
+
"type": "string",
|
|
29214
|
+
"enum": [
|
|
29215
|
+
"consume"
|
|
29216
|
+
],
|
|
29217
|
+
"description": "Set to \"consume\" to receive undelivered daemon receipts and mark them delivered. Omit for a read that never consumes receipts."
|
|
29218
|
+
}
|
|
29219
|
+
}
|
|
28663
29220
|
]
|
|
28664
29221
|
}
|
|
28665
29222
|
},
|
|
@@ -29388,6 +29945,177 @@
|
|
|
29388
29945
|
}
|
|
29389
29946
|
}
|
|
29390
29947
|
},
|
|
29948
|
+
"/api/fleet/workstreams/{workstreamId}/graph": {
|
|
29949
|
+
"get": {
|
|
29950
|
+
"operationId": "fleet.graph.get",
|
|
29951
|
+
"summary": "Get Workstream Task Graph",
|
|
29952
|
+
"description": "The dependency-graph view of one workstream: nodes (id, title, state, cluster, files, merge state, blocked reason, orphaned flag, deepest-remaining-path depth, stalled tell, agent), edges (from depends on to), and the elastic-pool state (ready/running counts, at-cap, cap key + size, any spawn refusal). Surfaces render the task graph under the chain from this — the fleet/observability idiom. 404 when the workstream is unknown to this daemon.",
|
|
29953
|
+
"tags": [
|
|
29954
|
+
"fleet"
|
|
29955
|
+
],
|
|
29956
|
+
"responses": {
|
|
29957
|
+
"200": {
|
|
29958
|
+
"description": "Success",
|
|
29959
|
+
"content": {
|
|
29960
|
+
"application/json": {
|
|
29961
|
+
"schema": {
|
|
29962
|
+
"type": "object",
|
|
29963
|
+
"properties": {
|
|
29964
|
+
"workstreamId": {
|
|
29965
|
+
"type": "string"
|
|
29966
|
+
},
|
|
29967
|
+
"title": {
|
|
29968
|
+
"type": "string"
|
|
29969
|
+
},
|
|
29970
|
+
"nodes": {
|
|
29971
|
+
"type": "array",
|
|
29972
|
+
"items": {
|
|
29973
|
+
"type": "object",
|
|
29974
|
+
"properties": {
|
|
29975
|
+
"id": {
|
|
29976
|
+
"type": "string"
|
|
29977
|
+
},
|
|
29978
|
+
"title": {
|
|
29979
|
+
"type": "string"
|
|
29980
|
+
},
|
|
29981
|
+
"state": {
|
|
29982
|
+
"type": "string"
|
|
29983
|
+
},
|
|
29984
|
+
"cluster": {
|
|
29985
|
+
"type": "string"
|
|
29986
|
+
},
|
|
29987
|
+
"files": {
|
|
29988
|
+
"type": "array",
|
|
29989
|
+
"items": {
|
|
29990
|
+
"type": "string"
|
|
29991
|
+
}
|
|
29992
|
+
},
|
|
29993
|
+
"mergeState": {
|
|
29994
|
+
"type": "string"
|
|
29995
|
+
},
|
|
29996
|
+
"blockedReason": {
|
|
29997
|
+
"type": "string"
|
|
29998
|
+
},
|
|
29999
|
+
"orphaned": {
|
|
30000
|
+
"type": "boolean"
|
|
30001
|
+
},
|
|
30002
|
+
"remainingDepth": {
|
|
30003
|
+
"type": "number"
|
|
30004
|
+
},
|
|
30005
|
+
"stalled": {
|
|
30006
|
+
"type": "boolean"
|
|
30007
|
+
},
|
|
30008
|
+
"agentId": {
|
|
30009
|
+
"type": "string"
|
|
30010
|
+
}
|
|
30011
|
+
},
|
|
30012
|
+
"required": [
|
|
30013
|
+
"id",
|
|
30014
|
+
"title",
|
|
30015
|
+
"state",
|
|
30016
|
+
"files",
|
|
30017
|
+
"orphaned",
|
|
30018
|
+
"remainingDepth",
|
|
30019
|
+
"stalled"
|
|
30020
|
+
],
|
|
30021
|
+
"additionalProperties": false
|
|
30022
|
+
}
|
|
30023
|
+
},
|
|
30024
|
+
"edges": {
|
|
30025
|
+
"type": "array",
|
|
30026
|
+
"items": {
|
|
30027
|
+
"type": "object",
|
|
30028
|
+
"properties": {
|
|
30029
|
+
"from": {
|
|
30030
|
+
"type": "string"
|
|
30031
|
+
},
|
|
30032
|
+
"to": {
|
|
30033
|
+
"type": "string"
|
|
30034
|
+
}
|
|
30035
|
+
},
|
|
30036
|
+
"required": [
|
|
30037
|
+
"from",
|
|
30038
|
+
"to"
|
|
30039
|
+
],
|
|
30040
|
+
"additionalProperties": false
|
|
30041
|
+
}
|
|
30042
|
+
},
|
|
30043
|
+
"pool": {
|
|
30044
|
+
"anyOf": [
|
|
30045
|
+
{
|
|
30046
|
+
"type": "object",
|
|
30047
|
+
"properties": {
|
|
30048
|
+
"ready": {
|
|
30049
|
+
"type": "number"
|
|
30050
|
+
},
|
|
30051
|
+
"running": {
|
|
30052
|
+
"type": "number"
|
|
30053
|
+
},
|
|
30054
|
+
"atCap": {
|
|
30055
|
+
"type": "boolean"
|
|
30056
|
+
},
|
|
30057
|
+
"capKey": {
|
|
30058
|
+
"type": "string"
|
|
30059
|
+
},
|
|
30060
|
+
"maxSize": {
|
|
30061
|
+
"type": "number"
|
|
30062
|
+
},
|
|
30063
|
+
"refusal": {
|
|
30064
|
+
"type": "string"
|
|
30065
|
+
}
|
|
30066
|
+
},
|
|
30067
|
+
"required": [
|
|
30068
|
+
"ready",
|
|
30069
|
+
"running",
|
|
30070
|
+
"atCap",
|
|
30071
|
+
"capKey",
|
|
30072
|
+
"maxSize"
|
|
30073
|
+
],
|
|
30074
|
+
"additionalProperties": false
|
|
30075
|
+
},
|
|
30076
|
+
{
|
|
30077
|
+
"type": "null"
|
|
30078
|
+
}
|
|
30079
|
+
]
|
|
30080
|
+
}
|
|
30081
|
+
},
|
|
30082
|
+
"required": [
|
|
30083
|
+
"workstreamId",
|
|
30084
|
+
"title",
|
|
30085
|
+
"nodes",
|
|
30086
|
+
"edges",
|
|
30087
|
+
"pool"
|
|
30088
|
+
],
|
|
30089
|
+
"additionalProperties": false
|
|
30090
|
+
}
|
|
30091
|
+
}
|
|
30092
|
+
}
|
|
30093
|
+
},
|
|
30094
|
+
"default": {
|
|
30095
|
+
"$ref": "#/components/responses/Error"
|
|
30096
|
+
}
|
|
30097
|
+
},
|
|
30098
|
+
"x-typed-client-io": true,
|
|
30099
|
+
"x-access": "authenticated",
|
|
30100
|
+
"x-transport": [
|
|
30101
|
+
"http",
|
|
30102
|
+
"ws"
|
|
30103
|
+
],
|
|
30104
|
+
"x-scopes": [
|
|
30105
|
+
"read:fleet"
|
|
30106
|
+
],
|
|
30107
|
+
"parameters": [
|
|
30108
|
+
{
|
|
30109
|
+
"name": "workstreamId",
|
|
30110
|
+
"in": "path",
|
|
30111
|
+
"required": true,
|
|
30112
|
+
"schema": {
|
|
30113
|
+
"type": "string"
|
|
30114
|
+
}
|
|
30115
|
+
}
|
|
30116
|
+
]
|
|
30117
|
+
}
|
|
30118
|
+
},
|
|
29391
30119
|
"/api/health": {
|
|
29392
30120
|
"get": {
|
|
29393
30121
|
"operationId": "health.snapshot",
|
|
@@ -29705,6 +30433,363 @@
|
|
|
29705
30433
|
]
|
|
29706
30434
|
}
|
|
29707
30435
|
},
|
|
30436
|
+
"/api/power/keep-awake": {
|
|
30437
|
+
"post": {
|
|
30438
|
+
"operationId": "power.keepAwake.set",
|
|
30439
|
+
"summary": "Set the Owner Keep-Awake Toggle",
|
|
30440
|
+
"description": "Turn the owner keep-awake toggle on or off: a daemon-held sleep inhibitor INDEPENDENT of work state, surviving surface closes, persisted as power.keepAwake. Covers idle + sleep + lid-switch classes where grantable; the returned state names any refused class honestly. No timers, no AC-only sub-options — the always-visible chip is the safety mechanism. Emits runtime.ops OPS_POWER_STATE_CHANGED so every attached surface updates its chip.",
|
|
30441
|
+
"tags": [
|
|
30442
|
+
"health"
|
|
30443
|
+
],
|
|
30444
|
+
"responses": {
|
|
30445
|
+
"200": {
|
|
30446
|
+
"description": "Success",
|
|
30447
|
+
"content": {
|
|
30448
|
+
"application/json": {
|
|
30449
|
+
"schema": {
|
|
30450
|
+
"type": "object",
|
|
30451
|
+
"properties": {
|
|
30452
|
+
"platform": {
|
|
30453
|
+
"type": "string"
|
|
30454
|
+
},
|
|
30455
|
+
"work": {
|
|
30456
|
+
"type": "object",
|
|
30457
|
+
"properties": {
|
|
30458
|
+
"held": {
|
|
30459
|
+
"type": "boolean"
|
|
30460
|
+
},
|
|
30461
|
+
"grantedClasses": {
|
|
30462
|
+
"type": "array",
|
|
30463
|
+
"items": {
|
|
30464
|
+
"type": "string",
|
|
30465
|
+
"enum": [
|
|
30466
|
+
"handle-lid-switch",
|
|
30467
|
+
"idle",
|
|
30468
|
+
"sleep"
|
|
30469
|
+
]
|
|
30470
|
+
}
|
|
30471
|
+
},
|
|
30472
|
+
"deniedClasses": {
|
|
30473
|
+
"type": "array",
|
|
30474
|
+
"items": {
|
|
30475
|
+
"type": "string",
|
|
30476
|
+
"enum": [
|
|
30477
|
+
"handle-lid-switch",
|
|
30478
|
+
"idle",
|
|
30479
|
+
"sleep"
|
|
30480
|
+
]
|
|
30481
|
+
}
|
|
30482
|
+
},
|
|
30483
|
+
"reasons": {
|
|
30484
|
+
"type": "array",
|
|
30485
|
+
"items": {
|
|
30486
|
+
"type": "string"
|
|
30487
|
+
}
|
|
30488
|
+
},
|
|
30489
|
+
"heldSince": {
|
|
30490
|
+
"anyOf": [
|
|
30491
|
+
{
|
|
30492
|
+
"type": "number"
|
|
30493
|
+
},
|
|
30494
|
+
{
|
|
30495
|
+
"type": "null"
|
|
30496
|
+
}
|
|
30497
|
+
]
|
|
30498
|
+
},
|
|
30499
|
+
"capMinutes": {
|
|
30500
|
+
"type": "number"
|
|
30501
|
+
},
|
|
30502
|
+
"capExpiresAt": {
|
|
30503
|
+
"anyOf": [
|
|
30504
|
+
{
|
|
30505
|
+
"type": "number"
|
|
30506
|
+
},
|
|
30507
|
+
{
|
|
30508
|
+
"type": "null"
|
|
30509
|
+
}
|
|
30510
|
+
]
|
|
30511
|
+
},
|
|
30512
|
+
"capExpired": {
|
|
30513
|
+
"type": "boolean"
|
|
30514
|
+
}
|
|
30515
|
+
},
|
|
30516
|
+
"required": [
|
|
30517
|
+
"held",
|
|
30518
|
+
"grantedClasses",
|
|
30519
|
+
"deniedClasses",
|
|
30520
|
+
"reasons",
|
|
30521
|
+
"heldSince",
|
|
30522
|
+
"capMinutes",
|
|
30523
|
+
"capExpiresAt",
|
|
30524
|
+
"capExpired"
|
|
30525
|
+
],
|
|
30526
|
+
"additionalProperties": false
|
|
30527
|
+
},
|
|
30528
|
+
"keepAwake": {
|
|
30529
|
+
"type": "object",
|
|
30530
|
+
"properties": {
|
|
30531
|
+
"enabled": {
|
|
30532
|
+
"type": "boolean"
|
|
30533
|
+
},
|
|
30534
|
+
"held": {
|
|
30535
|
+
"type": "boolean"
|
|
30536
|
+
},
|
|
30537
|
+
"grantedClasses": {
|
|
30538
|
+
"type": "array",
|
|
30539
|
+
"items": {
|
|
30540
|
+
"type": "string",
|
|
30541
|
+
"enum": [
|
|
30542
|
+
"handle-lid-switch",
|
|
30543
|
+
"idle",
|
|
30544
|
+
"sleep"
|
|
30545
|
+
]
|
|
30546
|
+
}
|
|
30547
|
+
},
|
|
30548
|
+
"deniedClasses": {
|
|
30549
|
+
"type": "array",
|
|
30550
|
+
"items": {
|
|
30551
|
+
"type": "string",
|
|
30552
|
+
"enum": [
|
|
30553
|
+
"handle-lid-switch",
|
|
30554
|
+
"idle",
|
|
30555
|
+
"sleep"
|
|
30556
|
+
]
|
|
30557
|
+
}
|
|
30558
|
+
},
|
|
30559
|
+
"note": {
|
|
30560
|
+
"anyOf": [
|
|
30561
|
+
{
|
|
30562
|
+
"type": "string"
|
|
30563
|
+
},
|
|
30564
|
+
{
|
|
30565
|
+
"type": "null"
|
|
30566
|
+
}
|
|
30567
|
+
]
|
|
30568
|
+
}
|
|
30569
|
+
},
|
|
30570
|
+
"required": [
|
|
30571
|
+
"enabled",
|
|
30572
|
+
"held",
|
|
30573
|
+
"grantedClasses",
|
|
30574
|
+
"deniedClasses",
|
|
30575
|
+
"note"
|
|
30576
|
+
],
|
|
30577
|
+
"additionalProperties": false
|
|
30578
|
+
}
|
|
30579
|
+
},
|
|
30580
|
+
"required": [
|
|
30581
|
+
"platform",
|
|
30582
|
+
"work",
|
|
30583
|
+
"keepAwake"
|
|
30584
|
+
],
|
|
30585
|
+
"additionalProperties": false
|
|
30586
|
+
}
|
|
30587
|
+
}
|
|
30588
|
+
}
|
|
30589
|
+
},
|
|
30590
|
+
"default": {
|
|
30591
|
+
"$ref": "#/components/responses/Error"
|
|
30592
|
+
}
|
|
30593
|
+
},
|
|
30594
|
+
"x-typed-client-io": true,
|
|
30595
|
+
"x-access": "authenticated",
|
|
30596
|
+
"x-transport": [
|
|
30597
|
+
"http",
|
|
30598
|
+
"ws"
|
|
30599
|
+
],
|
|
30600
|
+
"x-scopes": [
|
|
30601
|
+
"write:config"
|
|
30602
|
+
],
|
|
30603
|
+
"requestBody": {
|
|
30604
|
+
"required": true,
|
|
30605
|
+
"content": {
|
|
30606
|
+
"application/json": {
|
|
30607
|
+
"schema": {
|
|
30608
|
+
"type": "object",
|
|
30609
|
+
"properties": {
|
|
30610
|
+
"enabled": {
|
|
30611
|
+
"type": "boolean"
|
|
30612
|
+
}
|
|
30613
|
+
},
|
|
30614
|
+
"required": [
|
|
30615
|
+
"enabled"
|
|
30616
|
+
],
|
|
30617
|
+
"additionalProperties": false
|
|
30618
|
+
}
|
|
30619
|
+
}
|
|
30620
|
+
}
|
|
30621
|
+
}
|
|
30622
|
+
}
|
|
30623
|
+
},
|
|
30624
|
+
"/api/power/status": {
|
|
30625
|
+
"get": {
|
|
30626
|
+
"operationId": "power.status.get",
|
|
30627
|
+
"summary": "Get Sleep-Ownership State",
|
|
30628
|
+
"description": "The host sleep-ownership state: whether the automatic work inhibitor is held (and the live \"held because X\" reasons, cap, and expiry), and the owner keep-awake toggle with the classes the OS actually granted vs refused — a refused lid-switch block is stated honestly (\"idle sleep blocked; lid-close suspend is controlled by your OS here\"), never papered over. Surfaces render the always-visible \"sleep disabled\" chip from this state and the runtime.ops OPS_POWER_STATE_CHANGED event.",
|
|
30629
|
+
"tags": [
|
|
30630
|
+
"health"
|
|
30631
|
+
],
|
|
30632
|
+
"responses": {
|
|
30633
|
+
"200": {
|
|
30634
|
+
"description": "Success",
|
|
30635
|
+
"content": {
|
|
30636
|
+
"application/json": {
|
|
30637
|
+
"schema": {
|
|
30638
|
+
"type": "object",
|
|
30639
|
+
"properties": {
|
|
30640
|
+
"platform": {
|
|
30641
|
+
"type": "string"
|
|
30642
|
+
},
|
|
30643
|
+
"work": {
|
|
30644
|
+
"type": "object",
|
|
30645
|
+
"properties": {
|
|
30646
|
+
"held": {
|
|
30647
|
+
"type": "boolean"
|
|
30648
|
+
},
|
|
30649
|
+
"grantedClasses": {
|
|
30650
|
+
"type": "array",
|
|
30651
|
+
"items": {
|
|
30652
|
+
"type": "string",
|
|
30653
|
+
"enum": [
|
|
30654
|
+
"handle-lid-switch",
|
|
30655
|
+
"idle",
|
|
30656
|
+
"sleep"
|
|
30657
|
+
]
|
|
30658
|
+
}
|
|
30659
|
+
},
|
|
30660
|
+
"deniedClasses": {
|
|
30661
|
+
"type": "array",
|
|
30662
|
+
"items": {
|
|
30663
|
+
"type": "string",
|
|
30664
|
+
"enum": [
|
|
30665
|
+
"handle-lid-switch",
|
|
30666
|
+
"idle",
|
|
30667
|
+
"sleep"
|
|
30668
|
+
]
|
|
30669
|
+
}
|
|
30670
|
+
},
|
|
30671
|
+
"reasons": {
|
|
30672
|
+
"type": "array",
|
|
30673
|
+
"items": {
|
|
30674
|
+
"type": "string"
|
|
30675
|
+
}
|
|
30676
|
+
},
|
|
30677
|
+
"heldSince": {
|
|
30678
|
+
"anyOf": [
|
|
30679
|
+
{
|
|
30680
|
+
"type": "number"
|
|
30681
|
+
},
|
|
30682
|
+
{
|
|
30683
|
+
"type": "null"
|
|
30684
|
+
}
|
|
30685
|
+
]
|
|
30686
|
+
},
|
|
30687
|
+
"capMinutes": {
|
|
30688
|
+
"type": "number"
|
|
30689
|
+
},
|
|
30690
|
+
"capExpiresAt": {
|
|
30691
|
+
"anyOf": [
|
|
30692
|
+
{
|
|
30693
|
+
"type": "number"
|
|
30694
|
+
},
|
|
30695
|
+
{
|
|
30696
|
+
"type": "null"
|
|
30697
|
+
}
|
|
30698
|
+
]
|
|
30699
|
+
},
|
|
30700
|
+
"capExpired": {
|
|
30701
|
+
"type": "boolean"
|
|
30702
|
+
}
|
|
30703
|
+
},
|
|
30704
|
+
"required": [
|
|
30705
|
+
"held",
|
|
30706
|
+
"grantedClasses",
|
|
30707
|
+
"deniedClasses",
|
|
30708
|
+
"reasons",
|
|
30709
|
+
"heldSince",
|
|
30710
|
+
"capMinutes",
|
|
30711
|
+
"capExpiresAt",
|
|
30712
|
+
"capExpired"
|
|
30713
|
+
],
|
|
30714
|
+
"additionalProperties": false
|
|
30715
|
+
},
|
|
30716
|
+
"keepAwake": {
|
|
30717
|
+
"type": "object",
|
|
30718
|
+
"properties": {
|
|
30719
|
+
"enabled": {
|
|
30720
|
+
"type": "boolean"
|
|
30721
|
+
},
|
|
30722
|
+
"held": {
|
|
30723
|
+
"type": "boolean"
|
|
30724
|
+
},
|
|
30725
|
+
"grantedClasses": {
|
|
30726
|
+
"type": "array",
|
|
30727
|
+
"items": {
|
|
30728
|
+
"type": "string",
|
|
30729
|
+
"enum": [
|
|
30730
|
+
"handle-lid-switch",
|
|
30731
|
+
"idle",
|
|
30732
|
+
"sleep"
|
|
30733
|
+
]
|
|
30734
|
+
}
|
|
30735
|
+
},
|
|
30736
|
+
"deniedClasses": {
|
|
30737
|
+
"type": "array",
|
|
30738
|
+
"items": {
|
|
30739
|
+
"type": "string",
|
|
30740
|
+
"enum": [
|
|
30741
|
+
"handle-lid-switch",
|
|
30742
|
+
"idle",
|
|
30743
|
+
"sleep"
|
|
30744
|
+
]
|
|
30745
|
+
}
|
|
30746
|
+
},
|
|
30747
|
+
"note": {
|
|
30748
|
+
"anyOf": [
|
|
30749
|
+
{
|
|
30750
|
+
"type": "string"
|
|
30751
|
+
},
|
|
30752
|
+
{
|
|
30753
|
+
"type": "null"
|
|
30754
|
+
}
|
|
30755
|
+
]
|
|
30756
|
+
}
|
|
30757
|
+
},
|
|
30758
|
+
"required": [
|
|
30759
|
+
"enabled",
|
|
30760
|
+
"held",
|
|
30761
|
+
"grantedClasses",
|
|
30762
|
+
"deniedClasses",
|
|
30763
|
+
"note"
|
|
30764
|
+
],
|
|
30765
|
+
"additionalProperties": false
|
|
30766
|
+
}
|
|
30767
|
+
},
|
|
30768
|
+
"required": [
|
|
30769
|
+
"platform",
|
|
30770
|
+
"work",
|
|
30771
|
+
"keepAwake"
|
|
30772
|
+
],
|
|
30773
|
+
"additionalProperties": false
|
|
30774
|
+
}
|
|
30775
|
+
}
|
|
30776
|
+
}
|
|
30777
|
+
},
|
|
30778
|
+
"default": {
|
|
30779
|
+
"$ref": "#/components/responses/Error"
|
|
30780
|
+
}
|
|
30781
|
+
},
|
|
30782
|
+
"x-typed-client-io": true,
|
|
30783
|
+
"x-access": "authenticated",
|
|
30784
|
+
"x-transport": [
|
|
30785
|
+
"http",
|
|
30786
|
+
"ws"
|
|
30787
|
+
],
|
|
30788
|
+
"x-scopes": [
|
|
30789
|
+
"read:health"
|
|
30790
|
+
]
|
|
30791
|
+
}
|
|
30792
|
+
},
|
|
29708
30793
|
"/api/intelligence": {
|
|
29709
30794
|
"get": {
|
|
29710
30795
|
"operationId": "intelligence.snapshot",
|
|
@@ -61593,6 +62678,184 @@
|
|
|
61593
62678
|
}
|
|
61594
62679
|
}
|
|
61595
62680
|
},
|
|
62681
|
+
"/api/memory/consolidation/receipts": {
|
|
62682
|
+
"get": {
|
|
62683
|
+
"operationId": "memory.consolidation.receipts",
|
|
62684
|
+
"summary": "Memory Consolidation Receipts",
|
|
62685
|
+
"description": "Return the retained memory-consolidation run receipts (what each idle/scheduled pass scanned, merged, archived, decayed) and the pending judgment PROPOSALS they carry (contradictions, cross-scope duplicates) — the records a proposal references are already marked into the review queue, and a human resolves them through the confirmation-gated review route. A runtime without the consolidation scheduler answers an honest 501.",
|
|
62686
|
+
"tags": [
|
|
62687
|
+
"memory"
|
|
62688
|
+
],
|
|
62689
|
+
"responses": {
|
|
62690
|
+
"200": {
|
|
62691
|
+
"description": "Success",
|
|
62692
|
+
"content": {
|
|
62693
|
+
"application/json": {
|
|
62694
|
+
"schema": {
|
|
62695
|
+
"type": "object",
|
|
62696
|
+
"properties": {
|
|
62697
|
+
"receipts": {
|
|
62698
|
+
"type": "array",
|
|
62699
|
+
"items": {
|
|
62700
|
+
"type": "object",
|
|
62701
|
+
"properties": {
|
|
62702
|
+
"runId": {
|
|
62703
|
+
"type": "string"
|
|
62704
|
+
},
|
|
62705
|
+
"ranAt": {
|
|
62706
|
+
"type": "string"
|
|
62707
|
+
},
|
|
62708
|
+
"trigger": {
|
|
62709
|
+
"type": "string"
|
|
62710
|
+
},
|
|
62711
|
+
"idle": {
|
|
62712
|
+
"type": "boolean"
|
|
62713
|
+
},
|
|
62714
|
+
"scanned": {
|
|
62715
|
+
"type": "number"
|
|
62716
|
+
},
|
|
62717
|
+
"merged": {
|
|
62718
|
+
"type": "array",
|
|
62719
|
+
"items": {
|
|
62720
|
+
"type": "object",
|
|
62721
|
+
"properties": {},
|
|
62722
|
+
"additionalProperties": true
|
|
62723
|
+
}
|
|
62724
|
+
},
|
|
62725
|
+
"archived": {
|
|
62726
|
+
"type": "array",
|
|
62727
|
+
"items": {
|
|
62728
|
+
"type": "object",
|
|
62729
|
+
"properties": {},
|
|
62730
|
+
"additionalProperties": true
|
|
62731
|
+
}
|
|
62732
|
+
},
|
|
62733
|
+
"decayed": {
|
|
62734
|
+
"type": "array",
|
|
62735
|
+
"items": {
|
|
62736
|
+
"type": "object",
|
|
62737
|
+
"properties": {},
|
|
62738
|
+
"additionalProperties": true
|
|
62739
|
+
}
|
|
62740
|
+
},
|
|
62741
|
+
"proposed": {
|
|
62742
|
+
"type": "array",
|
|
62743
|
+
"items": {
|
|
62744
|
+
"type": "object",
|
|
62745
|
+
"properties": {
|
|
62746
|
+
"kind": {
|
|
62747
|
+
"type": "string",
|
|
62748
|
+
"enum": [
|
|
62749
|
+
"contradiction",
|
|
62750
|
+
"cross-scope-duplicate",
|
|
62751
|
+
"stale-delete"
|
|
62752
|
+
]
|
|
62753
|
+
},
|
|
62754
|
+
"ids": {
|
|
62755
|
+
"type": "array",
|
|
62756
|
+
"items": {
|
|
62757
|
+
"type": "string"
|
|
62758
|
+
}
|
|
62759
|
+
},
|
|
62760
|
+
"route": {
|
|
62761
|
+
"type": "string"
|
|
62762
|
+
},
|
|
62763
|
+
"reason": {
|
|
62764
|
+
"type": "string"
|
|
62765
|
+
}
|
|
62766
|
+
},
|
|
62767
|
+
"required": [
|
|
62768
|
+
"kind",
|
|
62769
|
+
"ids",
|
|
62770
|
+
"route",
|
|
62771
|
+
"reason"
|
|
62772
|
+
],
|
|
62773
|
+
"additionalProperties": false
|
|
62774
|
+
}
|
|
62775
|
+
},
|
|
62776
|
+
"usageSignalAvailable": {
|
|
62777
|
+
"type": "boolean"
|
|
62778
|
+
},
|
|
62779
|
+
"note": {
|
|
62780
|
+
"type": "string"
|
|
62781
|
+
}
|
|
62782
|
+
},
|
|
62783
|
+
"required": [
|
|
62784
|
+
"runId",
|
|
62785
|
+
"ranAt",
|
|
62786
|
+
"trigger",
|
|
62787
|
+
"idle",
|
|
62788
|
+
"scanned",
|
|
62789
|
+
"merged",
|
|
62790
|
+
"archived",
|
|
62791
|
+
"decayed",
|
|
62792
|
+
"proposed",
|
|
62793
|
+
"usageSignalAvailable",
|
|
62794
|
+
"note"
|
|
62795
|
+
],
|
|
62796
|
+
"additionalProperties": false
|
|
62797
|
+
}
|
|
62798
|
+
},
|
|
62799
|
+
"pendingProposals": {
|
|
62800
|
+
"type": "array",
|
|
62801
|
+
"items": {
|
|
62802
|
+
"type": "object",
|
|
62803
|
+
"properties": {
|
|
62804
|
+
"kind": {
|
|
62805
|
+
"type": "string",
|
|
62806
|
+
"enum": [
|
|
62807
|
+
"contradiction",
|
|
62808
|
+
"cross-scope-duplicate",
|
|
62809
|
+
"stale-delete"
|
|
62810
|
+
]
|
|
62811
|
+
},
|
|
62812
|
+
"ids": {
|
|
62813
|
+
"type": "array",
|
|
62814
|
+
"items": {
|
|
62815
|
+
"type": "string"
|
|
62816
|
+
}
|
|
62817
|
+
},
|
|
62818
|
+
"route": {
|
|
62819
|
+
"type": "string"
|
|
62820
|
+
},
|
|
62821
|
+
"reason": {
|
|
62822
|
+
"type": "string"
|
|
62823
|
+
}
|
|
62824
|
+
},
|
|
62825
|
+
"required": [
|
|
62826
|
+
"kind",
|
|
62827
|
+
"ids",
|
|
62828
|
+
"route",
|
|
62829
|
+
"reason"
|
|
62830
|
+
],
|
|
62831
|
+
"additionalProperties": false
|
|
62832
|
+
}
|
|
62833
|
+
}
|
|
62834
|
+
},
|
|
62835
|
+
"required": [
|
|
62836
|
+
"receipts",
|
|
62837
|
+
"pendingProposals"
|
|
62838
|
+
],
|
|
62839
|
+
"additionalProperties": false
|
|
62840
|
+
}
|
|
62841
|
+
}
|
|
62842
|
+
}
|
|
62843
|
+
},
|
|
62844
|
+
"default": {
|
|
62845
|
+
"$ref": "#/components/responses/Error"
|
|
62846
|
+
}
|
|
62847
|
+
},
|
|
62848
|
+
"x-typed-client-io": true,
|
|
62849
|
+
"x-access": "authenticated",
|
|
62850
|
+
"x-transport": [
|
|
62851
|
+
"http",
|
|
62852
|
+
"ws"
|
|
62853
|
+
],
|
|
62854
|
+
"x-scopes": [
|
|
62855
|
+
"read:memory"
|
|
62856
|
+
]
|
|
62857
|
+
}
|
|
62858
|
+
},
|
|
61596
62859
|
"/api/memory/doctor": {
|
|
61597
62860
|
"get": {
|
|
61598
62861
|
"operationId": "memory.doctor",
|
|
@@ -66251,12 +67514,24 @@
|
|
|
66251
67514
|
"enum": [
|
|
66252
67515
|
"USD"
|
|
66253
67516
|
]
|
|
67517
|
+
},
|
|
67518
|
+
"source": {
|
|
67519
|
+
"type": "string",
|
|
67520
|
+
"enum": [
|
|
67521
|
+
"user",
|
|
67522
|
+
"provider",
|
|
67523
|
+
"catalog"
|
|
67524
|
+
]
|
|
67525
|
+
},
|
|
67526
|
+
"asOf": {
|
|
67527
|
+
"type": "string"
|
|
66254
67528
|
}
|
|
66255
67529
|
},
|
|
66256
67530
|
"required": [
|
|
66257
67531
|
"inputPerMillionTokens",
|
|
66258
67532
|
"outputPerMillionTokens",
|
|
66259
|
-
"currency"
|
|
67533
|
+
"currency",
|
|
67534
|
+
"source"
|
|
66260
67535
|
],
|
|
66261
67536
|
"additionalProperties": false
|
|
66262
67537
|
}
|
|
@@ -66605,12 +67880,24 @@
|
|
|
66605
67880
|
"enum": [
|
|
66606
67881
|
"USD"
|
|
66607
67882
|
]
|
|
67883
|
+
},
|
|
67884
|
+
"source": {
|
|
67885
|
+
"type": "string",
|
|
67886
|
+
"enum": [
|
|
67887
|
+
"user",
|
|
67888
|
+
"provider",
|
|
67889
|
+
"catalog"
|
|
67890
|
+
]
|
|
67891
|
+
},
|
|
67892
|
+
"asOf": {
|
|
67893
|
+
"type": "string"
|
|
66608
67894
|
}
|
|
66609
67895
|
},
|
|
66610
67896
|
"required": [
|
|
66611
67897
|
"inputPerMillionTokens",
|
|
66612
67898
|
"outputPerMillionTokens",
|
|
66613
|
-
"currency"
|
|
67899
|
+
"currency",
|
|
67900
|
+
"source"
|
|
66614
67901
|
],
|
|
66615
67902
|
"additionalProperties": false
|
|
66616
67903
|
}
|
|
@@ -66688,11 +67975,16 @@
|
|
|
66688
67975
|
"pricingSource": {
|
|
66689
67976
|
"type": "string",
|
|
66690
67977
|
"enum": [
|
|
67978
|
+
"user",
|
|
66691
67979
|
"catalog",
|
|
66692
67980
|
"provider",
|
|
67981
|
+
"mixed",
|
|
66693
67982
|
"none"
|
|
66694
67983
|
]
|
|
66695
67984
|
},
|
|
67985
|
+
"pricingAsOf": {
|
|
67986
|
+
"type": "string"
|
|
67987
|
+
},
|
|
66696
67988
|
"models": {
|
|
66697
67989
|
"type": "array",
|
|
66698
67990
|
"items": {
|
|
@@ -66730,12 +68022,24 @@
|
|
|
66730
68022
|
"enum": [
|
|
66731
68023
|
"USD"
|
|
66732
68024
|
]
|
|
68025
|
+
},
|
|
68026
|
+
"source": {
|
|
68027
|
+
"type": "string",
|
|
68028
|
+
"enum": [
|
|
68029
|
+
"user",
|
|
68030
|
+
"provider",
|
|
68031
|
+
"catalog"
|
|
68032
|
+
]
|
|
68033
|
+
},
|
|
68034
|
+
"asOf": {
|
|
68035
|
+
"type": "string"
|
|
66733
68036
|
}
|
|
66734
68037
|
},
|
|
66735
68038
|
"required": [
|
|
66736
68039
|
"inputPerMillionTokens",
|
|
66737
68040
|
"outputPerMillionTokens",
|
|
66738
|
-
"currency"
|
|
68041
|
+
"currency",
|
|
68042
|
+
"source"
|
|
66739
68043
|
],
|
|
66740
68044
|
"additionalProperties": false
|
|
66741
68045
|
}
|
|
@@ -78350,6 +79654,246 @@
|
|
|
78350
79654
|
}
|
|
78351
79655
|
}
|
|
78352
79656
|
},
|
|
79657
|
+
"/api/sessions/{sessionId}/queued-messages/{messageId}": {
|
|
79658
|
+
"delete": {
|
|
79659
|
+
"operationId": "sessions.queuedMessages.delete",
|
|
79660
|
+
"summary": "Delete a Queued Mid-Turn Message",
|
|
79661
|
+
"description": "Remove a message still waiting in the mid-turn queue so it is never delivered. A message already delivered to the model cannot be removed — deleting it is a 404 MESSAGE_NOT_QUEUED. Only the daemon's live local runtime session is controllable; any other session id is a 404 SESSION_NOT_LOCAL.",
|
|
79662
|
+
"tags": [
|
|
79663
|
+
"sessions"
|
|
79664
|
+
],
|
|
79665
|
+
"responses": {
|
|
79666
|
+
"200": {
|
|
79667
|
+
"description": "Success",
|
|
79668
|
+
"content": {
|
|
79669
|
+
"application/json": {
|
|
79670
|
+
"schema": {
|
|
79671
|
+
"type": "object",
|
|
79672
|
+
"properties": {
|
|
79673
|
+
"sessionId": {
|
|
79674
|
+
"type": "string"
|
|
79675
|
+
},
|
|
79676
|
+
"id": {
|
|
79677
|
+
"type": "string"
|
|
79678
|
+
},
|
|
79679
|
+
"deleted": {
|
|
79680
|
+
"type": "boolean"
|
|
79681
|
+
}
|
|
79682
|
+
},
|
|
79683
|
+
"required": [
|
|
79684
|
+
"sessionId",
|
|
79685
|
+
"id",
|
|
79686
|
+
"deleted"
|
|
79687
|
+
],
|
|
79688
|
+
"additionalProperties": false
|
|
79689
|
+
}
|
|
79690
|
+
}
|
|
79691
|
+
}
|
|
79692
|
+
},
|
|
79693
|
+
"default": {
|
|
79694
|
+
"$ref": "#/components/responses/Error"
|
|
79695
|
+
}
|
|
79696
|
+
},
|
|
79697
|
+
"x-typed-client-io": true,
|
|
79698
|
+
"x-access": "authenticated",
|
|
79699
|
+
"x-transport": [
|
|
79700
|
+
"http",
|
|
79701
|
+
"ws"
|
|
79702
|
+
],
|
|
79703
|
+
"x-scopes": [
|
|
79704
|
+
"write:sessions"
|
|
79705
|
+
],
|
|
79706
|
+
"parameters": [
|
|
79707
|
+
{
|
|
79708
|
+
"name": "sessionId",
|
|
79709
|
+
"in": "path",
|
|
79710
|
+
"required": true,
|
|
79711
|
+
"schema": {
|
|
79712
|
+
"type": "string"
|
|
79713
|
+
}
|
|
79714
|
+
},
|
|
79715
|
+
{
|
|
79716
|
+
"name": "messageId",
|
|
79717
|
+
"in": "path",
|
|
79718
|
+
"required": true,
|
|
79719
|
+
"schema": {
|
|
79720
|
+
"type": "string"
|
|
79721
|
+
}
|
|
79722
|
+
}
|
|
79723
|
+
]
|
|
79724
|
+
},
|
|
79725
|
+
"post": {
|
|
79726
|
+
"operationId": "sessions.queuedMessages.edit",
|
|
79727
|
+
"summary": "Edit a Queued Mid-Turn Message",
|
|
79728
|
+
"description": "Replace the text of a message still waiting in the mid-turn queue. A message already delivered to the model is immutable — editing it is a 404 MESSAGE_NOT_QUEUED. Editing replaces any multimodal content with the new plain text. Only the daemon's live local runtime session is controllable; any other session id is a 404 SESSION_NOT_LOCAL.",
|
|
79729
|
+
"tags": [
|
|
79730
|
+
"sessions"
|
|
79731
|
+
],
|
|
79732
|
+
"responses": {
|
|
79733
|
+
"200": {
|
|
79734
|
+
"description": "Success",
|
|
79735
|
+
"content": {
|
|
79736
|
+
"application/json": {
|
|
79737
|
+
"schema": {
|
|
79738
|
+
"type": "object",
|
|
79739
|
+
"properties": {
|
|
79740
|
+
"sessionId": {
|
|
79741
|
+
"type": "string"
|
|
79742
|
+
},
|
|
79743
|
+
"id": {
|
|
79744
|
+
"type": "string"
|
|
79745
|
+
},
|
|
79746
|
+
"text": {
|
|
79747
|
+
"type": "string"
|
|
79748
|
+
}
|
|
79749
|
+
},
|
|
79750
|
+
"required": [
|
|
79751
|
+
"sessionId",
|
|
79752
|
+
"id",
|
|
79753
|
+
"text"
|
|
79754
|
+
],
|
|
79755
|
+
"additionalProperties": false
|
|
79756
|
+
}
|
|
79757
|
+
}
|
|
79758
|
+
}
|
|
79759
|
+
},
|
|
79760
|
+
"default": {
|
|
79761
|
+
"$ref": "#/components/responses/Error"
|
|
79762
|
+
}
|
|
79763
|
+
},
|
|
79764
|
+
"x-typed-client-io": true,
|
|
79765
|
+
"x-access": "authenticated",
|
|
79766
|
+
"x-transport": [
|
|
79767
|
+
"http",
|
|
79768
|
+
"ws"
|
|
79769
|
+
],
|
|
79770
|
+
"x-scopes": [
|
|
79771
|
+
"write:sessions"
|
|
79772
|
+
],
|
|
79773
|
+
"parameters": [
|
|
79774
|
+
{
|
|
79775
|
+
"name": "sessionId",
|
|
79776
|
+
"in": "path",
|
|
79777
|
+
"required": true,
|
|
79778
|
+
"schema": {
|
|
79779
|
+
"type": "string"
|
|
79780
|
+
}
|
|
79781
|
+
},
|
|
79782
|
+
{
|
|
79783
|
+
"name": "messageId",
|
|
79784
|
+
"in": "path",
|
|
79785
|
+
"required": true,
|
|
79786
|
+
"schema": {
|
|
79787
|
+
"type": "string"
|
|
79788
|
+
}
|
|
79789
|
+
}
|
|
79790
|
+
],
|
|
79791
|
+
"requestBody": {
|
|
79792
|
+
"required": true,
|
|
79793
|
+
"content": {
|
|
79794
|
+
"application/json": {
|
|
79795
|
+
"schema": {
|
|
79796
|
+
"type": "object",
|
|
79797
|
+
"properties": {
|
|
79798
|
+
"sessionId": {
|
|
79799
|
+
"type": "string"
|
|
79800
|
+
},
|
|
79801
|
+
"messageId": {
|
|
79802
|
+
"type": "string"
|
|
79803
|
+
},
|
|
79804
|
+
"text": {
|
|
79805
|
+
"type": "string"
|
|
79806
|
+
}
|
|
79807
|
+
},
|
|
79808
|
+
"required": [
|
|
79809
|
+
"sessionId",
|
|
79810
|
+
"messageId",
|
|
79811
|
+
"text"
|
|
79812
|
+
],
|
|
79813
|
+
"additionalProperties": false
|
|
79814
|
+
}
|
|
79815
|
+
}
|
|
79816
|
+
}
|
|
79817
|
+
}
|
|
79818
|
+
}
|
|
79819
|
+
},
|
|
79820
|
+
"/api/sessions/{sessionId}/queued-messages": {
|
|
79821
|
+
"get": {
|
|
79822
|
+
"operationId": "sessions.queuedMessages.list",
|
|
79823
|
+
"summary": "List Queued Mid-Turn Messages",
|
|
79824
|
+
"description": "List the messages queued behind the current turn (submitted while the model was thinking), in delivery order. Queued messages remain editable and deletable until they are delivered; a delivered message no longer appears here. Only the daemon's live local runtime session is resolvable; any other session id is a 404 SESSION_NOT_LOCAL.",
|
|
79825
|
+
"tags": [
|
|
79826
|
+
"sessions"
|
|
79827
|
+
],
|
|
79828
|
+
"responses": {
|
|
79829
|
+
"200": {
|
|
79830
|
+
"description": "Success",
|
|
79831
|
+
"content": {
|
|
79832
|
+
"application/json": {
|
|
79833
|
+
"schema": {
|
|
79834
|
+
"type": "object",
|
|
79835
|
+
"properties": {
|
|
79836
|
+
"sessionId": {
|
|
79837
|
+
"type": "string"
|
|
79838
|
+
},
|
|
79839
|
+
"messages": {
|
|
79840
|
+
"type": "array",
|
|
79841
|
+
"items": {
|
|
79842
|
+
"type": "object",
|
|
79843
|
+
"properties": {
|
|
79844
|
+
"id": {
|
|
79845
|
+
"type": "string"
|
|
79846
|
+
},
|
|
79847
|
+
"queuedAt": {
|
|
79848
|
+
"type": "number"
|
|
79849
|
+
},
|
|
79850
|
+
"text": {
|
|
79851
|
+
"type": "string"
|
|
79852
|
+
}
|
|
79853
|
+
},
|
|
79854
|
+
"required": [
|
|
79855
|
+
"id",
|
|
79856
|
+
"queuedAt",
|
|
79857
|
+
"text"
|
|
79858
|
+
],
|
|
79859
|
+
"additionalProperties": false
|
|
79860
|
+
}
|
|
79861
|
+
}
|
|
79862
|
+
},
|
|
79863
|
+
"required": [
|
|
79864
|
+
"sessionId",
|
|
79865
|
+
"messages"
|
|
79866
|
+
],
|
|
79867
|
+
"additionalProperties": false
|
|
79868
|
+
}
|
|
79869
|
+
}
|
|
79870
|
+
}
|
|
79871
|
+
},
|
|
79872
|
+
"default": {
|
|
79873
|
+
"$ref": "#/components/responses/Error"
|
|
79874
|
+
}
|
|
79875
|
+
},
|
|
79876
|
+
"x-typed-client-io": true,
|
|
79877
|
+
"x-access": "authenticated",
|
|
79878
|
+
"x-transport": [
|
|
79879
|
+
"http",
|
|
79880
|
+
"ws"
|
|
79881
|
+
],
|
|
79882
|
+
"x-scopes": [
|
|
79883
|
+
"read:sessions"
|
|
79884
|
+
],
|
|
79885
|
+
"parameters": [
|
|
79886
|
+
{
|
|
79887
|
+
"name": "sessionId",
|
|
79888
|
+
"in": "path",
|
|
79889
|
+
"required": true,
|
|
79890
|
+
"schema": {
|
|
79891
|
+
"type": "string"
|
|
79892
|
+
}
|
|
79893
|
+
}
|
|
79894
|
+
]
|
|
79895
|
+
}
|
|
79896
|
+
},
|
|
78353
79897
|
"/api/sessions/register": {
|
|
78354
79898
|
"post": {
|
|
78355
79899
|
"operationId": "sessions.register",
|
|
@@ -78572,7 +80116,8 @@
|
|
|
78572
80116
|
"webui",
|
|
78573
80117
|
"companion-task",
|
|
78574
80118
|
"companion-chat",
|
|
78575
|
-
"automation"
|
|
80119
|
+
"automation",
|
|
80120
|
+
"acp"
|
|
78576
80121
|
]
|
|
78577
80122
|
},
|
|
78578
80123
|
"project": {
|
|
@@ -79489,6 +81034,98 @@
|
|
|
79489
81034
|
}
|
|
79490
81035
|
}
|
|
79491
81036
|
},
|
|
81037
|
+
"/api/sessions/{sessionId}/tool-calls/{callId}/cancel": {
|
|
81038
|
+
"post": {
|
|
81039
|
+
"operationId": "sessions.toolCalls.cancel",
|
|
81040
|
+
"summary": "Cancel One In-Flight Tool Call",
|
|
81041
|
+
"description": "Cancel a single running tool call by its callId, leaving the turn and any other running calls untouched. The cancelled call settles as a structured \"cancelled by user\" tool result the model adapts to in the same turn — distinct from a whole-turn interrupt. Only the daemon's live local runtime session is controllable; any other session id is a 404 SESSION_NOT_LOCAL, and an unknown or already-settled callId is a 404 TOOL_CALL_NOT_RUNNING.",
|
|
81042
|
+
"tags": [
|
|
81043
|
+
"sessions"
|
|
81044
|
+
],
|
|
81045
|
+
"responses": {
|
|
81046
|
+
"200": {
|
|
81047
|
+
"description": "Success",
|
|
81048
|
+
"content": {
|
|
81049
|
+
"application/json": {
|
|
81050
|
+
"schema": {
|
|
81051
|
+
"type": "object",
|
|
81052
|
+
"properties": {
|
|
81053
|
+
"sessionId": {
|
|
81054
|
+
"type": "string"
|
|
81055
|
+
},
|
|
81056
|
+
"callId": {
|
|
81057
|
+
"type": "string"
|
|
81058
|
+
},
|
|
81059
|
+
"cancelled": {
|
|
81060
|
+
"type": "boolean"
|
|
81061
|
+
}
|
|
81062
|
+
},
|
|
81063
|
+
"required": [
|
|
81064
|
+
"sessionId",
|
|
81065
|
+
"callId",
|
|
81066
|
+
"cancelled"
|
|
81067
|
+
],
|
|
81068
|
+
"additionalProperties": false
|
|
81069
|
+
}
|
|
81070
|
+
}
|
|
81071
|
+
}
|
|
81072
|
+
},
|
|
81073
|
+
"default": {
|
|
81074
|
+
"$ref": "#/components/responses/Error"
|
|
81075
|
+
}
|
|
81076
|
+
},
|
|
81077
|
+
"x-typed-client-io": true,
|
|
81078
|
+
"x-access": "authenticated",
|
|
81079
|
+
"x-transport": [
|
|
81080
|
+
"http",
|
|
81081
|
+
"ws"
|
|
81082
|
+
],
|
|
81083
|
+
"x-scopes": [
|
|
81084
|
+
"write:sessions"
|
|
81085
|
+
],
|
|
81086
|
+
"parameters": [
|
|
81087
|
+
{
|
|
81088
|
+
"name": "sessionId",
|
|
81089
|
+
"in": "path",
|
|
81090
|
+
"required": true,
|
|
81091
|
+
"schema": {
|
|
81092
|
+
"type": "string"
|
|
81093
|
+
}
|
|
81094
|
+
},
|
|
81095
|
+
{
|
|
81096
|
+
"name": "callId",
|
|
81097
|
+
"in": "path",
|
|
81098
|
+
"required": true,
|
|
81099
|
+
"schema": {
|
|
81100
|
+
"type": "string"
|
|
81101
|
+
}
|
|
81102
|
+
}
|
|
81103
|
+
],
|
|
81104
|
+
"requestBody": {
|
|
81105
|
+
"required": true,
|
|
81106
|
+
"content": {
|
|
81107
|
+
"application/json": {
|
|
81108
|
+
"schema": {
|
|
81109
|
+
"type": "object",
|
|
81110
|
+
"properties": {
|
|
81111
|
+
"sessionId": {
|
|
81112
|
+
"type": "string"
|
|
81113
|
+
},
|
|
81114
|
+
"callId": {
|
|
81115
|
+
"type": "string"
|
|
81116
|
+
}
|
|
81117
|
+
},
|
|
81118
|
+
"required": [
|
|
81119
|
+
"sessionId",
|
|
81120
|
+
"callId"
|
|
81121
|
+
],
|
|
81122
|
+
"additionalProperties": false
|
|
81123
|
+
}
|
|
81124
|
+
}
|
|
81125
|
+
}
|
|
81126
|
+
}
|
|
81127
|
+
}
|
|
81128
|
+
},
|
|
79492
81129
|
"/api/security-settings": {
|
|
79493
81130
|
"get": {
|
|
79494
81131
|
"operationId": "security.settings",
|
|
@@ -79516,10 +81153,13 @@
|
|
|
79516
81153
|
"type": {
|
|
79517
81154
|
"type": "string",
|
|
79518
81155
|
"enum": [
|
|
79519
|
-
"
|
|
81156
|
+
"setting",
|
|
79520
81157
|
"configuration"
|
|
79521
81158
|
]
|
|
79522
81159
|
},
|
|
81160
|
+
"featureId": {
|
|
81161
|
+
"type": "string"
|
|
81162
|
+
},
|
|
79523
81163
|
"defaultState": {
|
|
79524
81164
|
"type": "string"
|
|
79525
81165
|
},
|
|
@@ -79554,6 +81194,7 @@
|
|
|
79554
81194
|
"required": [
|
|
79555
81195
|
"key",
|
|
79556
81196
|
"type",
|
|
81197
|
+
"featureId",
|
|
79557
81198
|
"defaultState",
|
|
79558
81199
|
"currentState",
|
|
79559
81200
|
"securityRelevant",
|
|
@@ -87935,6 +89576,12 @@
|
|
|
87935
89576
|
},
|
|
87936
89577
|
"label": {
|
|
87937
89578
|
"type": "string"
|
|
89579
|
+
},
|
|
89580
|
+
"origin": {
|
|
89581
|
+
"type": "string"
|
|
89582
|
+
},
|
|
89583
|
+
"checkpointEligible": {
|
|
89584
|
+
"type": "boolean"
|
|
87938
89585
|
}
|
|
87939
89586
|
},
|
|
87940
89587
|
"required": [
|
|
@@ -87981,6 +89628,12 @@
|
|
|
87981
89628
|
},
|
|
87982
89629
|
"label": {
|
|
87983
89630
|
"type": "string"
|
|
89631
|
+
},
|
|
89632
|
+
"origin": {
|
|
89633
|
+
"type": "string"
|
|
89634
|
+
},
|
|
89635
|
+
"checkpointEligible": {
|
|
89636
|
+
"type": "boolean"
|
|
87984
89637
|
}
|
|
87985
89638
|
},
|
|
87986
89639
|
"required": [
|
|
@@ -88020,6 +89673,12 @@
|
|
|
88020
89673
|
},
|
|
88021
89674
|
"label": {
|
|
88022
89675
|
"type": "string"
|
|
89676
|
+
},
|
|
89677
|
+
"origin": {
|
|
89678
|
+
"type": "string"
|
|
89679
|
+
},
|
|
89680
|
+
"checkpointEligible": {
|
|
89681
|
+
"type": "boolean"
|
|
88023
89682
|
}
|
|
88024
89683
|
},
|
|
88025
89684
|
"required": [
|
|
@@ -88479,6 +90138,8 @@
|
|
|
88479
90138
|
}
|
|
88480
90139
|
},
|
|
88481
90140
|
"x-invoke-only-methods": [
|
|
90141
|
+
"acp.agents.list",
|
|
90142
|
+
"acp.sessions.create",
|
|
88482
90143
|
"channels.test.send",
|
|
88483
90144
|
"checkpoints.create",
|
|
88484
90145
|
"checkpoints.diff",
|
|
@@ -88495,12 +90156,27 @@
|
|
|
88495
90156
|
"fleet.attempts.judge",
|
|
88496
90157
|
"fleet.attempts.list",
|
|
88497
90158
|
"fleet.attempts.pick",
|
|
90159
|
+
"fleet.conflicts.list",
|
|
90160
|
+
"fleet.conflicts.resolve",
|
|
88498
90161
|
"fleet.list",
|
|
90162
|
+
"fleet.observed.steer",
|
|
88499
90163
|
"fleet.snapshot",
|
|
88500
90164
|
"fleet.unarchive",
|
|
90165
|
+
"pairing.handoff.complete",
|
|
90166
|
+
"pairing.handoff.create",
|
|
90167
|
+
"pairing.posture.get",
|
|
90168
|
+
"pairing.tokens.create",
|
|
90169
|
+
"pairing.tokens.delete",
|
|
90170
|
+
"pairing.tokens.list",
|
|
90171
|
+
"pairing.tokens.migrate",
|
|
90172
|
+
"pairing.tokens.rename",
|
|
90173
|
+
"pairing.tokens.revokeShared",
|
|
90174
|
+
"permissions.rules.delete",
|
|
90175
|
+
"permissions.rules.list",
|
|
88501
90176
|
"push.subscriptions.create",
|
|
88502
90177
|
"push.subscriptions.delete",
|
|
88503
90178
|
"push.subscriptions.list",
|
|
90179
|
+
"push.subscriptions.reconcile",
|
|
88504
90180
|
"push.subscriptions.verify",
|
|
88505
90181
|
"push.vapid.get",
|
|
88506
90182
|
"quota.fanout.get",
|
|
@@ -88509,6 +90185,9 @@
|
|
|
88509
90185
|
"rewind.plan",
|
|
88510
90186
|
"sessions.changes.get",
|
|
88511
90187
|
"sessions.search",
|
|
90188
|
+
"tailscale.get",
|
|
90189
|
+
"tailscale.serve.run",
|
|
90190
|
+
"worktrees.discard",
|
|
88512
90191
|
"worktrees.setup.run"
|
|
88513
90192
|
]
|
|
88514
90193
|
}
|
|
@@ -88718,6 +90397,24 @@
|
|
|
88718
90397
|
"inputSchemaCoverage": "typed",
|
|
88719
90398
|
"outputSchemaCoverage": "typed"
|
|
88720
90399
|
},
|
|
90400
|
+
{
|
|
90401
|
+
"id": "acp.agents.list",
|
|
90402
|
+
"category": "acp",
|
|
90403
|
+
"access": "authenticated",
|
|
90404
|
+
"rest": null,
|
|
90405
|
+
"typedClientIo": true,
|
|
90406
|
+
"inputSchemaCoverage": "schema-less",
|
|
90407
|
+
"outputSchemaCoverage": "typed"
|
|
90408
|
+
},
|
|
90409
|
+
{
|
|
90410
|
+
"id": "acp.sessions.create",
|
|
90411
|
+
"category": "acp",
|
|
90412
|
+
"access": "authenticated",
|
|
90413
|
+
"rest": null,
|
|
90414
|
+
"typedClientIo": true,
|
|
90415
|
+
"inputSchemaCoverage": "typed",
|
|
90416
|
+
"outputSchemaCoverage": "typed"
|
|
90417
|
+
},
|
|
88721
90418
|
{
|
|
88722
90419
|
"id": "approvals.approve",
|
|
88723
90420
|
"category": "approvals",
|
|
@@ -89978,6 +91675,33 @@
|
|
|
89978
91675
|
"inputSchemaCoverage": "typed",
|
|
89979
91676
|
"outputSchemaCoverage": "typed"
|
|
89980
91677
|
},
|
|
91678
|
+
{
|
|
91679
|
+
"id": "fleet.conflicts.list",
|
|
91680
|
+
"category": "fleet",
|
|
91681
|
+
"access": "authenticated",
|
|
91682
|
+
"rest": null,
|
|
91683
|
+
"typedClientIo": true,
|
|
91684
|
+
"inputSchemaCoverage": "typed",
|
|
91685
|
+
"outputSchemaCoverage": "typed"
|
|
91686
|
+
},
|
|
91687
|
+
{
|
|
91688
|
+
"id": "fleet.conflicts.resolve",
|
|
91689
|
+
"category": "fleet",
|
|
91690
|
+
"access": "authenticated",
|
|
91691
|
+
"rest": null,
|
|
91692
|
+
"typedClientIo": true,
|
|
91693
|
+
"inputSchemaCoverage": "typed",
|
|
91694
|
+
"outputSchemaCoverage": "typed"
|
|
91695
|
+
},
|
|
91696
|
+
{
|
|
91697
|
+
"id": "fleet.graph.get",
|
|
91698
|
+
"category": "fleet",
|
|
91699
|
+
"access": "authenticated",
|
|
91700
|
+
"rest": "GET /api/fleet/workstreams/{workstreamId}/graph",
|
|
91701
|
+
"typedClientIo": true,
|
|
91702
|
+
"inputSchemaCoverage": "typed",
|
|
91703
|
+
"outputSchemaCoverage": "typed"
|
|
91704
|
+
},
|
|
89981
91705
|
{
|
|
89982
91706
|
"id": "fleet.list",
|
|
89983
91707
|
"category": "fleet",
|
|
@@ -89987,6 +91711,15 @@
|
|
|
89987
91711
|
"inputSchemaCoverage": "typed",
|
|
89988
91712
|
"outputSchemaCoverage": "typed"
|
|
89989
91713
|
},
|
|
91714
|
+
{
|
|
91715
|
+
"id": "fleet.observed.steer",
|
|
91716
|
+
"category": "fleet",
|
|
91717
|
+
"access": "authenticated",
|
|
91718
|
+
"rest": null,
|
|
91719
|
+
"typedClientIo": true,
|
|
91720
|
+
"inputSchemaCoverage": "typed",
|
|
91721
|
+
"outputSchemaCoverage": "typed"
|
|
91722
|
+
},
|
|
89990
91723
|
{
|
|
89991
91724
|
"id": "fleet.snapshot",
|
|
89992
91725
|
"category": "fleet",
|
|
@@ -90014,6 +91747,24 @@
|
|
|
90014
91747
|
"inputSchemaCoverage": "typed",
|
|
90015
91748
|
"outputSchemaCoverage": "typed"
|
|
90016
91749
|
},
|
|
91750
|
+
{
|
|
91751
|
+
"id": "power.keepAwake.set",
|
|
91752
|
+
"category": "health",
|
|
91753
|
+
"access": "authenticated",
|
|
91754
|
+
"rest": "POST /api/power/keep-awake",
|
|
91755
|
+
"typedClientIo": true,
|
|
91756
|
+
"inputSchemaCoverage": "typed",
|
|
91757
|
+
"outputSchemaCoverage": "typed"
|
|
91758
|
+
},
|
|
91759
|
+
{
|
|
91760
|
+
"id": "power.status.get",
|
|
91761
|
+
"category": "health",
|
|
91762
|
+
"access": "authenticated",
|
|
91763
|
+
"rest": "GET /api/power/status",
|
|
91764
|
+
"typedClientIo": true,
|
|
91765
|
+
"inputSchemaCoverage": "typed",
|
|
91766
|
+
"outputSchemaCoverage": "typed"
|
|
91767
|
+
},
|
|
90017
91768
|
{
|
|
90018
91769
|
"id": "intelligence.snapshot",
|
|
90019
91770
|
"category": "intelligence",
|
|
@@ -90968,6 +92719,15 @@
|
|
|
90968
92719
|
"inputSchemaCoverage": "typed",
|
|
90969
92720
|
"outputSchemaCoverage": "typed"
|
|
90970
92721
|
},
|
|
92722
|
+
{
|
|
92723
|
+
"id": "memory.consolidation.receipts",
|
|
92724
|
+
"category": "memory",
|
|
92725
|
+
"access": "authenticated",
|
|
92726
|
+
"rest": "GET /api/memory/consolidation/receipts",
|
|
92727
|
+
"typedClientIo": true,
|
|
92728
|
+
"inputSchemaCoverage": "typed",
|
|
92729
|
+
"outputSchemaCoverage": "typed"
|
|
92730
|
+
},
|
|
90971
92731
|
{
|
|
90972
92732
|
"id": "memory.doctor",
|
|
90973
92733
|
"category": "memory",
|
|
@@ -91139,6 +92899,87 @@
|
|
|
91139
92899
|
"inputSchemaCoverage": "typed",
|
|
91140
92900
|
"outputSchemaCoverage": "typed"
|
|
91141
92901
|
},
|
|
92902
|
+
{
|
|
92903
|
+
"id": "pairing.handoff.complete",
|
|
92904
|
+
"category": "pairing",
|
|
92905
|
+
"access": "authenticated",
|
|
92906
|
+
"rest": null,
|
|
92907
|
+
"typedClientIo": true,
|
|
92908
|
+
"inputSchemaCoverage": "typed",
|
|
92909
|
+
"outputSchemaCoverage": "typed"
|
|
92910
|
+
},
|
|
92911
|
+
{
|
|
92912
|
+
"id": "pairing.handoff.create",
|
|
92913
|
+
"category": "pairing",
|
|
92914
|
+
"access": "authenticated",
|
|
92915
|
+
"rest": null,
|
|
92916
|
+
"typedClientIo": true,
|
|
92917
|
+
"inputSchemaCoverage": "typed",
|
|
92918
|
+
"outputSchemaCoverage": "typed"
|
|
92919
|
+
},
|
|
92920
|
+
{
|
|
92921
|
+
"id": "pairing.posture.get",
|
|
92922
|
+
"category": "pairing",
|
|
92923
|
+
"access": "authenticated",
|
|
92924
|
+
"rest": null,
|
|
92925
|
+
"typedClientIo": true,
|
|
92926
|
+
"inputSchemaCoverage": "typed",
|
|
92927
|
+
"outputSchemaCoverage": "typed"
|
|
92928
|
+
},
|
|
92929
|
+
{
|
|
92930
|
+
"id": "pairing.tokens.create",
|
|
92931
|
+
"category": "pairing",
|
|
92932
|
+
"access": "authenticated",
|
|
92933
|
+
"rest": null,
|
|
92934
|
+
"typedClientIo": true,
|
|
92935
|
+
"inputSchemaCoverage": "typed",
|
|
92936
|
+
"outputSchemaCoverage": "typed"
|
|
92937
|
+
},
|
|
92938
|
+
{
|
|
92939
|
+
"id": "pairing.tokens.delete",
|
|
92940
|
+
"category": "pairing",
|
|
92941
|
+
"access": "authenticated",
|
|
92942
|
+
"rest": null,
|
|
92943
|
+
"typedClientIo": true,
|
|
92944
|
+
"inputSchemaCoverage": "typed",
|
|
92945
|
+
"outputSchemaCoverage": "typed"
|
|
92946
|
+
},
|
|
92947
|
+
{
|
|
92948
|
+
"id": "pairing.tokens.list",
|
|
92949
|
+
"category": "pairing",
|
|
92950
|
+
"access": "authenticated",
|
|
92951
|
+
"rest": null,
|
|
92952
|
+
"typedClientIo": true,
|
|
92953
|
+
"inputSchemaCoverage": "schema-less",
|
|
92954
|
+
"outputSchemaCoverage": "typed"
|
|
92955
|
+
},
|
|
92956
|
+
{
|
|
92957
|
+
"id": "pairing.tokens.migrate",
|
|
92958
|
+
"category": "pairing",
|
|
92959
|
+
"access": "authenticated",
|
|
92960
|
+
"rest": null,
|
|
92961
|
+
"typedClientIo": true,
|
|
92962
|
+
"inputSchemaCoverage": "typed",
|
|
92963
|
+
"outputSchemaCoverage": "typed"
|
|
92964
|
+
},
|
|
92965
|
+
{
|
|
92966
|
+
"id": "pairing.tokens.rename",
|
|
92967
|
+
"category": "pairing",
|
|
92968
|
+
"access": "authenticated",
|
|
92969
|
+
"rest": null,
|
|
92970
|
+
"typedClientIo": true,
|
|
92971
|
+
"inputSchemaCoverage": "typed",
|
|
92972
|
+
"outputSchemaCoverage": "typed"
|
|
92973
|
+
},
|
|
92974
|
+
{
|
|
92975
|
+
"id": "pairing.tokens.revokeShared",
|
|
92976
|
+
"category": "pairing",
|
|
92977
|
+
"access": "authenticated",
|
|
92978
|
+
"rest": null,
|
|
92979
|
+
"typedClientIo": true,
|
|
92980
|
+
"inputSchemaCoverage": "schema-less",
|
|
92981
|
+
"outputSchemaCoverage": "typed"
|
|
92982
|
+
},
|
|
91142
92983
|
{
|
|
91143
92984
|
"id": "panels.list",
|
|
91144
92985
|
"category": "panels",
|
|
@@ -91157,6 +92998,24 @@
|
|
|
91157
92998
|
"inputSchemaCoverage": "typed",
|
|
91158
92999
|
"outputSchemaCoverage": "typed"
|
|
91159
93000
|
},
|
|
93001
|
+
{
|
|
93002
|
+
"id": "permissions.rules.delete",
|
|
93003
|
+
"category": "permissions",
|
|
93004
|
+
"access": "authenticated",
|
|
93005
|
+
"rest": null,
|
|
93006
|
+
"typedClientIo": true,
|
|
93007
|
+
"inputSchemaCoverage": "typed",
|
|
93008
|
+
"outputSchemaCoverage": "typed"
|
|
93009
|
+
},
|
|
93010
|
+
{
|
|
93011
|
+
"id": "permissions.rules.list",
|
|
93012
|
+
"category": "permissions",
|
|
93013
|
+
"access": "authenticated",
|
|
93014
|
+
"rest": null,
|
|
93015
|
+
"typedClientIo": true,
|
|
93016
|
+
"inputSchemaCoverage": "typed",
|
|
93017
|
+
"outputSchemaCoverage": "typed"
|
|
93018
|
+
},
|
|
91160
93019
|
{
|
|
91161
93020
|
"id": "principals.create",
|
|
91162
93021
|
"category": "principals",
|
|
@@ -91265,6 +93124,15 @@
|
|
|
91265
93124
|
"inputSchemaCoverage": "schema-less",
|
|
91266
93125
|
"outputSchemaCoverage": "typed"
|
|
91267
93126
|
},
|
|
93127
|
+
{
|
|
93128
|
+
"id": "push.subscriptions.reconcile",
|
|
93129
|
+
"category": "push",
|
|
93130
|
+
"access": "authenticated",
|
|
93131
|
+
"rest": null,
|
|
93132
|
+
"typedClientIo": true,
|
|
93133
|
+
"inputSchemaCoverage": "typed",
|
|
93134
|
+
"outputSchemaCoverage": "typed"
|
|
93135
|
+
},
|
|
91268
93136
|
{
|
|
91269
93137
|
"id": "push.subscriptions.verify",
|
|
91270
93138
|
"category": "push",
|
|
@@ -91427,6 +93295,24 @@
|
|
|
91427
93295
|
"inputSchemaCoverage": "typed",
|
|
91428
93296
|
"outputSchemaCoverage": "typed"
|
|
91429
93297
|
},
|
|
93298
|
+
{
|
|
93299
|
+
"id": "tailscale.get",
|
|
93300
|
+
"category": "remote-access",
|
|
93301
|
+
"access": "authenticated",
|
|
93302
|
+
"rest": null,
|
|
93303
|
+
"typedClientIo": true,
|
|
93304
|
+
"inputSchemaCoverage": "schema-less",
|
|
93305
|
+
"outputSchemaCoverage": "typed"
|
|
93306
|
+
},
|
|
93307
|
+
{
|
|
93308
|
+
"id": "tailscale.serve.run",
|
|
93309
|
+
"category": "remote-access",
|
|
93310
|
+
"access": "authenticated",
|
|
93311
|
+
"rest": null,
|
|
93312
|
+
"typedClientIo": true,
|
|
93313
|
+
"inputSchemaCoverage": "schema-less",
|
|
93314
|
+
"outputSchemaCoverage": "typed"
|
|
93315
|
+
},
|
|
91430
93316
|
{
|
|
91431
93317
|
"id": "review.snapshot",
|
|
91432
93318
|
"category": "review",
|
|
@@ -91733,6 +93619,33 @@
|
|
|
91733
93619
|
"inputSchemaCoverage": "typed",
|
|
91734
93620
|
"outputSchemaCoverage": "typed"
|
|
91735
93621
|
},
|
|
93622
|
+
{
|
|
93623
|
+
"id": "sessions.queuedMessages.delete",
|
|
93624
|
+
"category": "sessions",
|
|
93625
|
+
"access": "authenticated",
|
|
93626
|
+
"rest": "DELETE /api/sessions/{sessionId}/queued-messages/{messageId}",
|
|
93627
|
+
"typedClientIo": true,
|
|
93628
|
+
"inputSchemaCoverage": "typed",
|
|
93629
|
+
"outputSchemaCoverage": "typed"
|
|
93630
|
+
},
|
|
93631
|
+
{
|
|
93632
|
+
"id": "sessions.queuedMessages.edit",
|
|
93633
|
+
"category": "sessions",
|
|
93634
|
+
"access": "authenticated",
|
|
93635
|
+
"rest": "POST /api/sessions/{sessionId}/queued-messages/{messageId}",
|
|
93636
|
+
"typedClientIo": true,
|
|
93637
|
+
"inputSchemaCoverage": "typed",
|
|
93638
|
+
"outputSchemaCoverage": "typed"
|
|
93639
|
+
},
|
|
93640
|
+
{
|
|
93641
|
+
"id": "sessions.queuedMessages.list",
|
|
93642
|
+
"category": "sessions",
|
|
93643
|
+
"access": "authenticated",
|
|
93644
|
+
"rest": "GET /api/sessions/{sessionId}/queued-messages",
|
|
93645
|
+
"typedClientIo": true,
|
|
93646
|
+
"inputSchemaCoverage": "typed",
|
|
93647
|
+
"outputSchemaCoverage": "typed"
|
|
93648
|
+
},
|
|
91736
93649
|
{
|
|
91737
93650
|
"id": "sessions.register",
|
|
91738
93651
|
"category": "sessions",
|
|
@@ -91769,6 +93682,15 @@
|
|
|
91769
93682
|
"inputSchemaCoverage": "typed",
|
|
91770
93683
|
"outputSchemaCoverage": "typed"
|
|
91771
93684
|
},
|
|
93685
|
+
{
|
|
93686
|
+
"id": "sessions.toolCalls.cancel",
|
|
93687
|
+
"category": "sessions",
|
|
93688
|
+
"access": "authenticated",
|
|
93689
|
+
"rest": "POST /api/sessions/{sessionId}/tool-calls/{callId}/cancel",
|
|
93690
|
+
"typedClientIo": true,
|
|
93691
|
+
"inputSchemaCoverage": "typed",
|
|
93692
|
+
"outputSchemaCoverage": "typed"
|
|
93693
|
+
},
|
|
91772
93694
|
{
|
|
91773
93695
|
"id": "security.settings",
|
|
91774
93696
|
"category": "settings",
|
|
@@ -92147,6 +94069,15 @@
|
|
|
92147
94069
|
"inputSchemaCoverage": "typed",
|
|
92148
94070
|
"outputSchemaCoverage": "typed"
|
|
92149
94071
|
},
|
|
94072
|
+
{
|
|
94073
|
+
"id": "worktrees.discard",
|
|
94074
|
+
"category": "worktrees",
|
|
94075
|
+
"access": "authenticated",
|
|
94076
|
+
"rest": null,
|
|
94077
|
+
"typedClientIo": true,
|
|
94078
|
+
"inputSchemaCoverage": "typed",
|
|
94079
|
+
"outputSchemaCoverage": "typed"
|
|
94080
|
+
},
|
|
92150
94081
|
{
|
|
92151
94082
|
"id": "worktrees.setup.run",
|
|
92152
94083
|
"category": "worktrees",
|