@pellux/goodvibes-contracts 1.8.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -504,10 +504,22 @@ export const WEBUI_METHOD_ROUTES = {
504
504
  "method": "POST",
505
505
  "path": "/api/email/send"
506
506
  },
507
+ "fleet.graph.get": {
508
+ "method": "GET",
509
+ "path": "/api/fleet/workstreams/{workstreamId}/graph"
510
+ },
507
511
  "health.snapshot": {
508
512
  "method": "GET",
509
513
  "path": "/api/health"
510
514
  },
515
+ "power.keepAwake.set": {
516
+ "method": "POST",
517
+ "path": "/api/power/keep-awake"
518
+ },
519
+ "power.status.get": {
520
+ "method": "GET",
521
+ "path": "/api/power/status"
522
+ },
511
523
  "intelligence.snapshot": {
512
524
  "method": "GET",
513
525
  "path": "/api/intelligence"
@@ -932,6 +944,10 @@ export const WEBUI_METHOD_ROUTES = {
932
944
  "method": "POST",
933
945
  "path": "/api/multimodal/writeback"
934
946
  },
947
+ "memory.consolidation.receipts": {
948
+ "method": "GET",
949
+ "path": "/api/memory/consolidation/receipts"
950
+ },
935
951
  "memory.doctor": {
936
952
  "method": "GET",
937
953
  "path": "/api/memory/doctor"
@@ -1232,6 +1248,18 @@ export const WEBUI_METHOD_ROUTES = {
1232
1248
  "method": "POST",
1233
1249
  "path": "/api/sessions/{sessionId}/permission-mode"
1234
1250
  },
1251
+ "sessions.queuedMessages.delete": {
1252
+ "method": "DELETE",
1253
+ "path": "/api/sessions/{sessionId}/queued-messages/{messageId}"
1254
+ },
1255
+ "sessions.queuedMessages.edit": {
1256
+ "method": "POST",
1257
+ "path": "/api/sessions/{sessionId}/queued-messages/{messageId}"
1258
+ },
1259
+ "sessions.queuedMessages.list": {
1260
+ "method": "GET",
1261
+ "path": "/api/sessions/{sessionId}/queued-messages"
1262
+ },
1235
1263
  "sessions.register": {
1236
1264
  "method": "POST",
1237
1265
  "path": "/api/sessions/register"
@@ -1244,6 +1272,10 @@ export const WEBUI_METHOD_ROUTES = {
1244
1272
  "method": "POST",
1245
1273
  "path": "/api/sessions/{sessionId}/steer"
1246
1274
  },
1275
+ "sessions.toolCalls.cancel": {
1276
+ "method": "POST",
1277
+ "path": "/api/sessions/{sessionId}/tool-calls/{callId}/cancel"
1278
+ },
1247
1279
  "security.settings": {
1248
1280
  "method": "GET",
1249
1281
  "path": "/api/security-settings"
@@ -1423,6 +1455,8 @@ export const WEBUI_METHOD_ROUTES = {
1423
1455
  * /api/control-plane/methods/{methodId}/invoke.
1424
1456
  */
1425
1457
  export const WEBUI_WS_INVOKE_METHOD_IDS = [
1458
+ "acp.agents.list",
1459
+ "acp.sessions.create",
1426
1460
  "channels.test.send",
1427
1461
  "checkpoints.create",
1428
1462
  "checkpoints.diff",
@@ -1439,27 +1473,45 @@ export const WEBUI_WS_INVOKE_METHOD_IDS = [
1439
1473
  "fleet.attempts.judge",
1440
1474
  "fleet.attempts.list",
1441
1475
  "fleet.attempts.pick",
1476
+ "fleet.conflicts.list",
1477
+ "fleet.conflicts.resolve",
1442
1478
  "fleet.list",
1479
+ "fleet.observed.steer",
1443
1480
  "fleet.snapshot",
1444
1481
  "fleet.unarchive",
1482
+ "pairing.handoff.complete",
1483
+ "pairing.handoff.create",
1484
+ "pairing.posture.get",
1485
+ "pairing.tokens.create",
1486
+ "pairing.tokens.delete",
1487
+ "pairing.tokens.list",
1488
+ "pairing.tokens.migrate",
1489
+ "pairing.tokens.rename",
1490
+ "pairing.tokens.revokeShared",
1445
1491
  "permissions.rules.delete",
1446
1492
  "permissions.rules.list",
1447
1493
  "push.subscriptions.create",
1448
1494
  "push.subscriptions.delete",
1449
1495
  "push.subscriptions.list",
1496
+ "push.subscriptions.reconcile",
1450
1497
  "push.subscriptions.verify",
1451
1498
  "push.vapid.get",
1452
1499
  "quota.fanout.get",
1453
1500
  "quota.snapshot.get",
1501
+ "tailscale.get",
1502
+ "tailscale.serve.run",
1454
1503
  "rewind.apply",
1455
1504
  "rewind.plan",
1456
1505
  "sessions.changes.get",
1457
1506
  "sessions.search",
1507
+ "worktrees.discard",
1458
1508
  "worktrees.setup.run"
1459
1509
  ];
1460
1510
  /** methodId -> disposition for every cataloged method. */
1461
1511
  export const WEBUI_METHOD_DISPOSITION = {
1462
1512
  "accounts.snapshot": "rest",
1513
+ "acp.agents.list": "ws-invoke",
1514
+ "acp.sessions.create": "ws-invoke",
1463
1515
  "approvals.approve": "rest",
1464
1516
  "approvals.cancel": "rest",
1465
1517
  "approvals.claim": "rest",
@@ -1600,10 +1652,16 @@ export const WEBUI_METHOD_DISPOSITION = {
1600
1652
  "fleet.attempts.judge": "ws-invoke",
1601
1653
  "fleet.attempts.list": "ws-invoke",
1602
1654
  "fleet.attempts.pick": "ws-invoke",
1655
+ "fleet.conflicts.list": "ws-invoke",
1656
+ "fleet.conflicts.resolve": "ws-invoke",
1657
+ "fleet.graph.get": "rest",
1603
1658
  "fleet.list": "ws-invoke",
1659
+ "fleet.observed.steer": "ws-invoke",
1604
1660
  "fleet.snapshot": "ws-invoke",
1605
1661
  "fleet.unarchive": "ws-invoke",
1606
1662
  "health.snapshot": "rest",
1663
+ "power.keepAwake.set": "rest",
1664
+ "power.status.get": "rest",
1607
1665
  "intelligence.snapshot": "rest",
1608
1666
  "homeassistant.homeGraph.askHomeGraph": "rest",
1609
1667
  "homeassistant.homeGraph.browse": "rest",
@@ -1710,6 +1768,7 @@ export const WEBUI_METHOD_DISPOSITION = {
1710
1768
  "multimodal.providers.list": "rest",
1711
1769
  "multimodal.status": "rest",
1712
1770
  "multimodal.writeback": "rest",
1771
+ "memory.consolidation.receipts": "rest",
1713
1772
  "memory.doctor": "rest",
1714
1773
  "memory.embeddings.default.set": "rest",
1715
1774
  "memory.projections.get": "rest",
@@ -1729,6 +1788,15 @@ export const WEBUI_METHOD_DISPOSITION = {
1729
1788
  "memory.review-queue": "rest",
1730
1789
  "memory.vector.rebuild": "rest",
1731
1790
  "memory.vector.stats": "rest",
1791
+ "pairing.handoff.complete": "ws-invoke",
1792
+ "pairing.handoff.create": "ws-invoke",
1793
+ "pairing.posture.get": "ws-invoke",
1794
+ "pairing.tokens.create": "ws-invoke",
1795
+ "pairing.tokens.delete": "ws-invoke",
1796
+ "pairing.tokens.list": "ws-invoke",
1797
+ "pairing.tokens.migrate": "ws-invoke",
1798
+ "pairing.tokens.rename": "ws-invoke",
1799
+ "pairing.tokens.revokeShared": "ws-invoke",
1732
1800
  "panels.list": "rest",
1733
1801
  "panels.open": "rest",
1734
1802
  "permissions.rules.delete": "ws-invoke",
@@ -1745,6 +1813,7 @@ export const WEBUI_METHOD_DISPOSITION = {
1745
1813
  "push.subscriptions.create": "ws-invoke",
1746
1814
  "push.subscriptions.delete": "ws-invoke",
1747
1815
  "push.subscriptions.list": "ws-invoke",
1816
+ "push.subscriptions.reconcile": "ws-invoke",
1748
1817
  "push.subscriptions.verify": "ws-invoke",
1749
1818
  "push.vapid.get": "ws-invoke",
1750
1819
  "quota.fanout.get": "ws-invoke",
@@ -1763,6 +1832,8 @@ export const WEBUI_METHOD_DISPOSITION = {
1763
1832
  "remote.snapshot": "rest",
1764
1833
  "remote.work.cancel": "rest",
1765
1834
  "remote.work.list": "rest",
1835
+ "tailscale.get": "ws-invoke",
1836
+ "tailscale.serve.run": "ws-invoke",
1766
1837
  "review.snapshot": "rest",
1767
1838
  "rewind.apply": "ws-invoke",
1768
1839
  "rewind.plan": "ws-invoke",
@@ -1797,10 +1868,14 @@ export const WEBUI_METHOD_DISPOSITION = {
1797
1868
  "sessions.messages.list": "rest",
1798
1869
  "sessions.permissionMode.get": "rest",
1799
1870
  "sessions.permissionMode.set": "rest",
1871
+ "sessions.queuedMessages.delete": "rest",
1872
+ "sessions.queuedMessages.edit": "rest",
1873
+ "sessions.queuedMessages.list": "rest",
1800
1874
  "sessions.register": "rest",
1801
1875
  "sessions.reopen": "rest",
1802
1876
  "sessions.search": "ws-invoke",
1803
1877
  "sessions.steer": "rest",
1878
+ "sessions.toolCalls.cancel": "rest",
1804
1879
  "security.settings": "rest",
1805
1880
  "settings.snapshot": "rest",
1806
1881
  "skills.create": "rest",
@@ -1843,6 +1918,7 @@ export const WEBUI_METHOD_DISPOSITION = {
1843
1918
  "workspaces.registrations.list": "rest",
1844
1919
  "workspaces.registrations.remove": "rest",
1845
1920
  "workspaces.resolve": "rest",
1921
+ "worktrees.discard": "ws-invoke",
1846
1922
  "worktrees.setup.run": "ws-invoke",
1847
1923
  "worktrees.snapshot": "rest"
1848
1924
  };
@@ -1915,6 +1991,51 @@ export const WEBUI_METHOD_SAMPLES = {
1915
1991
  "issueCount": 0
1916
1992
  }
1917
1993
  },
1994
+ "acp.agents.list": {
1995
+ "input": null,
1996
+ "output": {
1997
+ "agents": [
1998
+ {
1999
+ "id": "sample",
2000
+ "title": "sample",
2001
+ "binaryPath": "sample",
2002
+ "args": [
2003
+ "sample"
2004
+ ]
2005
+ }
2006
+ ]
2007
+ }
2008
+ },
2009
+ "acp.sessions.create": {
2010
+ "input": {
2011
+ "agentId": "sample",
2012
+ "cwd": "sample",
2013
+ "title": "sample",
2014
+ "prompt": "sample"
2015
+ },
2016
+ "output": {
2017
+ "hosted": {
2018
+ "id": "sample",
2019
+ "agentId": "sample",
2020
+ "title": "sample",
2021
+ "binaryPath": "sample",
2022
+ "cwd": "sample",
2023
+ "state": "sample",
2024
+ "startedAt": 0,
2025
+ "completedAt": 0,
2026
+ "sessionId": "sample",
2027
+ "progress": "sample",
2028
+ "pendingPermission": "sample",
2029
+ "error": {
2030
+ "binary": "sample",
2031
+ "stage": "sample",
2032
+ "message": "sample"
2033
+ },
2034
+ "promptCount": 0
2035
+ },
2036
+ "started": false
2037
+ }
2038
+ },
1918
2039
  "approvals.approve": {
1919
2040
  "input": {
1920
2041
  "approvalId": "sample",
@@ -3699,7 +3820,8 @@ export const WEBUI_METHOD_SAMPLES = {
3699
3820
  "automation.runs.list": {
3700
3821
  "input": {
3701
3822
  "limit": 0,
3702
- "cursor": "sample"
3823
+ "cursor": "sample",
3824
+ "since": 0
3703
3825
  },
3704
3826
  "output": {
3705
3827
  "runs": [
@@ -7302,6 +7424,36 @@ export const WEBUI_METHOD_SAMPLES = {
7302
7424
  "sessionRef": {
7303
7425
  "sessionId": "sample",
7304
7426
  "agentId": "sample"
7427
+ },
7428
+ "review": {
7429
+ "score": 0,
7430
+ "passed": false,
7431
+ "cycles": 0,
7432
+ "checklist": [
7433
+ {
7434
+ "item": "sample",
7435
+ "verified": false,
7436
+ "evidence": "sample",
7437
+ "howExercised": "sample"
7438
+ }
7439
+ ]
7440
+ },
7441
+ "observed": {
7442
+ "externalKind": "claude-code",
7443
+ "pid": 0,
7444
+ "cwd": "sample",
7445
+ "liveness": {
7446
+ "state": "active",
7447
+ "cpuSeconds": 0,
7448
+ "detail": "sample"
7449
+ },
7450
+ "steer": {
7451
+ "kind": "tmux",
7452
+ "paneId": "sample",
7453
+ "tty": "sample",
7454
+ "reason": "sample"
7455
+ },
7456
+ "steerDrillInOnly": false
7305
7457
  }
7306
7458
  }
7307
7459
  ]
@@ -7385,15 +7537,138 @@ export const WEBUI_METHOD_SAMPLES = {
7385
7537
  "fleet.attempts.pick": {
7386
7538
  "input": {
7387
7539
  "groupId": "sample",
7388
- "winnerItemId": "sample"
7540
+ "winnerItemId": "sample",
7541
+ "confirm": false
7389
7542
  },
7390
7543
  "output": {
7544
+ "applied": false,
7391
7545
  "groupId": "sample",
7392
7546
  "winnerItemId": "sample",
7393
7547
  "loserItemIds": [
7394
7548
  "sample"
7395
7549
  ],
7396
- "auto": false
7550
+ "auto": false,
7551
+ "requiresConfirm": false,
7552
+ "group": {
7553
+ "groupId": "sample",
7554
+ "workstreamId": "sample",
7555
+ "sourceTitle": "sample",
7556
+ "ready": false,
7557
+ "candidates": [
7558
+ {
7559
+ "itemId": "sample",
7560
+ "attemptIndex": 0,
7561
+ "state": "held-merge",
7562
+ "title": "sample",
7563
+ "worktreePath": "sample",
7564
+ "branch": "sample",
7565
+ "usage": {
7566
+ "inputTokens": 0,
7567
+ "outputTokens": 0,
7568
+ "cacheReadTokens": 0,
7569
+ "cacheWriteTokens": 0,
7570
+ "reasoningTokens": 0,
7571
+ "llmCallCount": 0,
7572
+ "turnCount": 0,
7573
+ "toolCallCount": 0,
7574
+ "costUsd": 0,
7575
+ "costState": "priced",
7576
+ "costSource": "user",
7577
+ "pricingAsOf": "sample"
7578
+ },
7579
+ "failureReason": "sample",
7580
+ "diff": {
7581
+ "files": [
7582
+ "sample"
7583
+ ],
7584
+ "unifiedDiff": "sample",
7585
+ "stat": "sample"
7586
+ }
7587
+ }
7588
+ ],
7589
+ "autoAccept": false,
7590
+ "judgment": {
7591
+ "proposedWinnerItemId": "sample",
7592
+ "reasons": [
7593
+ "sample"
7594
+ ],
7595
+ "model": "sample",
7596
+ "scoredBy": "model"
7597
+ }
7598
+ }
7599
+ }
7600
+ },
7601
+ "fleet.conflicts.list": {
7602
+ "input": {
7603
+ "workstreamId": "sample"
7604
+ },
7605
+ "output": {
7606
+ "conflicts": [
7607
+ {
7608
+ "workstreamId": "sample",
7609
+ "itemId": "sample",
7610
+ "title": "sample",
7611
+ "worktreePath": "sample",
7612
+ "branch": "sample",
7613
+ "files": [
7614
+ "sample"
7615
+ ],
7616
+ "resolutionSessionId": "sample"
7617
+ }
7618
+ ]
7619
+ }
7620
+ },
7621
+ "fleet.conflicts.resolve": {
7622
+ "input": {
7623
+ "itemId": "sample"
7624
+ },
7625
+ "output": {
7626
+ "itemId": "sample",
7627
+ "sessionId": "sample",
7628
+ "worktreePath": "sample",
7629
+ "files": [
7630
+ "sample"
7631
+ ]
7632
+ }
7633
+ },
7634
+ "fleet.graph.get": {
7635
+ "input": {
7636
+ "workstreamId": "sample"
7637
+ },
7638
+ "output": {
7639
+ "workstreamId": "sample",
7640
+ "title": "sample",
7641
+ "nodes": [
7642
+ {
7643
+ "id": "sample",
7644
+ "title": "sample",
7645
+ "state": "sample",
7646
+ "cluster": "sample",
7647
+ "files": [
7648
+ "sample"
7649
+ ],
7650
+ "mergeState": "sample",
7651
+ "blockedReason": "sample",
7652
+ "orphaned": false,
7653
+ "remainingDepth": 0,
7654
+ "stalled": false,
7655
+ "agentId": "sample"
7656
+ }
7657
+ ],
7658
+ "edges": [
7659
+ {
7660
+ "from": "sample",
7661
+ "to": "sample"
7662
+ }
7663
+ ],
7664
+ "pool": {
7665
+ "ready": 0,
7666
+ "running": 0,
7667
+ "atCap": false,
7668
+ "capKey": "sample",
7669
+ "maxSize": 0,
7670
+ "refusal": "sample"
7671
+ }
7397
7672
  }
7398
7673
  },
7399
7674
  "fleet.list": {
@@ -7455,6 +7730,36 @@ export const WEBUI_METHOD_SAMPLES = {
7455
7730
  "sessionRef": {
7456
7731
  "sessionId": "sample",
7457
7732
  "agentId": "sample"
7733
+ },
7734
+ "review": {
7735
+ "score": 0,
7736
+ "passed": false,
7737
+ "cycles": 0,
7738
+ "checklist": [
7739
+ {
7740
+ "item": "sample",
7741
+ "verified": false,
7742
+ "evidence": "sample",
7743
+ "howExercised": "sample"
7744
+ }
7745
+ ]
7746
+ },
7747
+ "observed": {
7748
+ "externalKind": "claude-code",
7749
+ "pid": 0,
7750
+ "cwd": "sample",
7751
+ "liveness": {
7752
+ "state": "active",
7753
+ "cpuSeconds": 0,
7754
+ "detail": "sample"
7755
+ },
7756
+ "steer": {
7757
+ "kind": "tmux",
7758
+ "paneId": "sample",
7759
+ "tty": "sample",
7760
+ "reason": "sample"
7761
+ },
7762
+ "steerDrillInOnly": false
7458
7763
  }
7459
7764
  }
7460
7765
  ],
@@ -7463,6 +7768,17 @@ export const WEBUI_METHOD_SAMPLES = {
7463
7768
  "capturedAt": 0
7464
7769
  }
7465
7770
  },
7771
+ "fleet.observed.steer": {
7772
+ "input": {
7773
+ "id": "sample",
7774
+ "text": "sample"
7775
+ },
7776
+ "output": {
7777
+ "queued": false,
7778
+ "messageId": "sample",
7779
+ "reason": "sample"
7780
+ }
7781
+ },
7466
7782
  "fleet.snapshot": {
7467
7783
  "input": {},
7468
7784
  "output": {
@@ -7514,6 +7830,36 @@ export const WEBUI_METHOD_SAMPLES = {
7514
7830
  "sessionRef": {
7515
7831
  "sessionId": "sample",
7516
7832
  "agentId": "sample"
7833
+ },
7834
+ "review": {
7835
+ "score": 0,
7836
+ "passed": false,
7837
+ "cycles": 0,
7838
+ "checklist": [
7839
+ {
7840
+ "item": "sample",
7841
+ "verified": false,
7842
+ "evidence": "sample",
7843
+ "howExercised": "sample"
7844
+ }
7845
+ ]
7846
+ },
7847
+ "observed": {
7848
+ "externalKind": "claude-code",
7849
+ "pid": 0,
7850
+ "cwd": "sample",
7851
+ "liveness": {
7852
+ "state": "active",
7853
+ "cpuSeconds": 0,
7854
+ "detail": "sample"
7855
+ },
7856
+ "steer": {
7857
+ "kind": "tmux",
7858
+ "paneId": "sample",
7859
+ "tty": "sample",
7860
+ "reason": "sample"
7861
+ },
7862
+ "steerDrillInOnly": false
7517
7863
  }
7518
7864
  }
7519
7865
  ],
@@ -7605,6 +7951,74 @@ export const WEBUI_METHOD_SAMPLES = {
7605
7951
  }
7606
7952
  }
7607
7953
  },
7954
+ "power.keepAwake.set": {
7955
+ "input": {
7956
+ "enabled": false
7957
+ },
7958
+ "output": {
7959
+ "platform": "sample",
7960
+ "work": {
7961
+ "held": false,
7962
+ "grantedClasses": [
7963
+ "handle-lid-switch"
7964
+ ],
7965
+ "deniedClasses": [
7966
+ "handle-lid-switch"
7967
+ ],
7968
+ "reasons": [
7969
+ "sample"
7970
+ ],
7971
+ "heldSince": 0,
7972
+ "capMinutes": 0,
7973
+ "capExpiresAt": 0,
7974
+ "capExpired": false
7975
+ },
7976
+ "keepAwake": {
7977
+ "enabled": false,
7978
+ "held": false,
7979
+ "grantedClasses": [
7980
+ "handle-lid-switch"
7981
+ ],
7982
+ "deniedClasses": [
7983
+ "handle-lid-switch"
7984
+ ],
7985
+ "note": "sample"
7986
+ }
7987
+ }
7988
+ },
7989
+ "power.status.get": {
7990
+ "input": {},
7991
+ "output": {
7992
+ "platform": "sample",
7993
+ "work": {
7994
+ "held": false,
7995
+ "grantedClasses": [
7996
+ "handle-lid-switch"
7997
+ ],
7998
+ "deniedClasses": [
7999
+ "handle-lid-switch"
8000
+ ],
8001
+ "reasons": [
8002
+ "sample"
8003
+ ],
8004
+ "heldSince": 0,
8005
+ "capMinutes": 0,
8006
+ "capExpiresAt": 0,
8007
+ "capExpired": false
8008
+ },
8009
+ "keepAwake": {
8010
+ "enabled": false,
8011
+ "held": false,
8012
+ "grantedClasses": [
8013
+ "handle-lid-switch"
8014
+ ],
8015
+ "deniedClasses": [
8016
+ "handle-lid-switch"
8017
+ ],
8018
+ "note": "sample"
8019
+ }
8020
+ }
8021
+ },
7608
8022
  "intelligence.snapshot": {
7609
8023
  "input": {},
7610
8024
  "output": {
@@ -13567,6 +13981,51 @@ export const WEBUI_METHOD_SAMPLES = {
13567
13981
  }
13568
13982
  }
13569
13983
  },
13984
+ "memory.consolidation.receipts": {
13985
+ "input": {},
13986
+ "output": {
13987
+ "receipts": [
13988
+ {
13989
+ "runId": "sample",
13990
+ "ranAt": "sample",
13991
+ "trigger": "sample",
13992
+ "idle": false,
13993
+ "scanned": 0,
13994
+ "merged": [
13995
+ {}
13996
+ ],
13997
+ "archived": [
13998
+ {}
13999
+ ],
14000
+ "decayed": [
14001
+ {}
14002
+ ],
14003
+ "proposed": [
14004
+ {
14005
+ "kind": "contradiction",
14006
+ "ids": [
14007
+ "sample"
14008
+ ],
14009
+ "route": "sample",
14010
+ "reason": "sample"
14011
+ }
14012
+ ],
14013
+ "usageSignalAvailable": false,
14014
+ "note": "sample"
14015
+ }
14016
+ ],
14017
+ "pendingProposals": [
14018
+ {
14019
+ "kind": "contradiction",
14020
+ "ids": [
14021
+ "sample"
14022
+ ],
14023
+ "route": "sample",
14024
+ "reason": "sample"
14025
+ }
14026
+ ]
14027
+ }
14028
+ },
13570
14029
  "memory.doctor": {
13571
14030
  "input": {},
13572
14031
  "output": {
@@ -14215,6 +14674,161 @@ export const WEBUI_METHOD_SAMPLES = {
14215
14674
  }
14216
14675
  }
14217
14676
  },
14677
+ "pairing.handoff.complete": {
14678
+ "input": {
14679
+ "accept": {
14680
+ "notifications": {
14681
+ "endpoint": "sample",
14682
+ "keys": {
14683
+ "p256dh": "sample",
14684
+ "auth": "sample"
14685
+ },
14686
+ "deviceId": "sample"
14687
+ },
14688
+ "relay": false,
14689
+ "passkey": {
14690
+ "rpId": "sample",
14691
+ "origin": "sample",
14692
+ "credentialId": "sample",
14693
+ "publicKeyCose": "sample"
14694
+ }
14695
+ }
14696
+ },
14697
+ "output": {
14698
+ "results": [
14699
+ {
14700
+ "kind": "sample",
14701
+ "status": "sample",
14702
+ "detail": "sample"
14703
+ }
14704
+ ]
14705
+ }
14706
+ },
14707
+ "pairing.handoff.create": {
14708
+ "input": {
14709
+ "name": "sample",
14710
+ "offers": [
14711
+ "sample"
14712
+ ]
14713
+ },
14714
+ "output": {
14715
+ "token": {
14716
+ "id": "sample",
14717
+ "name": "sample",
14718
+ "token": "sample",
14719
+ "createdAt": 0
14720
+ },
14721
+ "offers": [
14722
+ {
14723
+ "kind": "sample",
14724
+ "available": false,
14725
+ "vapidPublicKey": "sample"
14726
+ }
14727
+ ],
14728
+ "fragment": "sample",
14729
+ "deepLink": "sample",
14730
+ "posture": {
14731
+ "origin": "sample",
14732
+ "scheme": "sample",
14733
+ "privateNetwork": false,
14734
+ "secureContext": false,
14735
+ "notice": "sample",
14736
+ "capabilities": [
14737
+ {
14738
+ "capability": "sample",
14739
+ "available": false,
14740
+ "reason": "sample"
14741
+ }
14742
+ ]
14743
+ }
14744
+ }
14745
+ },
14746
+ "pairing.posture.get": {
14747
+ "input": {
14748
+ "origin": "sample"
14749
+ },
14750
+ "output": {
14751
+ "posture": {
14752
+ "origin": "sample",
14753
+ "scheme": "sample",
14754
+ "privateNetwork": false,
14755
+ "secureContext": false,
14756
+ "notice": "sample",
14757
+ "capabilities": [
14758
+ {
14759
+ "capability": "sample",
14760
+ "available": false,
14761
+ "reason": "sample"
14762
+ }
14763
+ ]
14764
+ }
14765
+ }
14766
+ },
14767
+ "pairing.tokens.create": {
14768
+ "input": {
14769
+ "name": "sample"
14770
+ },
14771
+ "output": {
14772
+ "token": {
14773
+ "id": "sample",
14774
+ "name": "sample",
14775
+ "token": "sample",
14776
+ "createdAt": 0
14777
+ }
14778
+ }
14779
+ },
14780
+ "pairing.tokens.delete": {
14781
+ "input": {
14782
+ "id": "sample"
14783
+ },
14784
+ "output": {
14785
+ "id": "sample",
14786
+ "revoked": false
14787
+ }
14788
+ },
14789
+ "pairing.tokens.list": {
14790
+ "input": null,
14791
+ "output": {
14792
+ "tokens": [
14793
+ {
14794
+ "id": "sample",
14795
+ "name": "sample",
14796
+ "createdAt": 0,
14797
+ "lastSeenAt": 0
14798
+ }
14799
+ ],
14800
+ "legacySharedRevoked": false
14801
+ }
14802
+ },
14803
+ "pairing.tokens.migrate": {
14804
+ "input": {
14805
+ "name": "sample"
14806
+ },
14807
+ "output": {
14808
+ "token": {
14809
+ "id": "sample",
14810
+ "name": "sample",
14811
+ "token": "sample",
14812
+ "createdAt": 0
14813
+ }
14814
+ }
14815
+ },
14816
+ "pairing.tokens.rename": {
14817
+ "input": {
14818
+ "id": "sample",
14819
+ "name": "sample"
14820
+ },
14821
+ "output": {
14822
+ "id": "sample",
14823
+ "renamed": false
14824
+ }
14825
+ },
14826
+ "pairing.tokens.revokeShared": {
14827
+ "input": null,
14828
+ "output": {
14829
+ "legacySharedRevoked": false
14830
+ }
14831
+ },
14218
14832
  "panels.list": {
14219
14833
  "input": {},
14220
14834
  "output": {
@@ -14661,17 +15275,20 @@ export const WEBUI_METHOD_SAMPLES = {
14661
15275
  "keys": {
14662
15276
  "p256dh": "sample",
14663
15277
  "auth": "sample"
14664
- }
15278
+ },
15279
+ "deviceId": "sample"
14665
15280
  },
14666
15281
  "output": {
14667
15282
  "subscription": {
14668
15283
  "id": "sample",
14669
15284
  "principalId": "sample",
15285
+ "deviceId": "sample",
14670
15286
  "endpointOrigin": "sample",
14671
15287
  "endpointHash": "sample",
14672
15288
  "createdAt": 0,
14673
15289
  "lastDeliveryAt": 0,
14674
- "lastOutcome": "sample"
15290
+ "lastOutcome": "sample",
15291
+ "consecutiveFailures": 0
14675
15292
  }
14676
15293
  }
14677
15294
  },
@@ -14691,15 +15308,41 @@ export const WEBUI_METHOD_SAMPLES = {
14691
15308
  {
14692
15309
  "id": "sample",
14693
15310
  "principalId": "sample",
15311
+ "deviceId": "sample",
14694
15312
  "endpointOrigin": "sample",
14695
15313
  "endpointHash": "sample",
14696
15314
  "createdAt": 0,
14697
15315
  "lastDeliveryAt": 0,
14698
- "lastOutcome": "sample"
15316
+ "lastOutcome": "sample",
15317
+ "consecutiveFailures": 0
14699
15318
  }
14700
15319
  ]
14701
15320
  }
14702
15321
  },
15322
+ "push.subscriptions.reconcile": {
15323
+ "input": {
15324
+ "deviceId": "sample",
15325
+ "endpoint": "sample",
15326
+ "keys": {
15327
+ "p256dh": "sample",
15328
+ "auth": "sample"
15329
+ }
15330
+ },
15331
+ "output": {
15332
+ "subscription": {
15333
+ "id": "sample",
15334
+ "principalId": "sample",
15335
+ "deviceId": "sample",
15336
+ "endpointOrigin": "sample",
15337
+ "endpointHash": "sample",
15338
+ "createdAt": 0,
15339
+ "lastDeliveryAt": 0,
15340
+ "lastOutcome": "sample",
15341
+ "consecutiveFailures": 0
15342
+ },
15343
+ "drift": "sample"
15344
+ }
15345
+ },
14703
15346
  "push.subscriptions.verify": {
14704
15347
  "input": {
14705
15348
  "subscriptionId": "sample"
@@ -15552,6 +16195,36 @@ export const WEBUI_METHOD_SAMPLES = {
15552
16195
  ]
15553
16196
  }
15554
16197
  },
16198
+ "tailscale.get": {
16199
+ "input": null,
16200
+ "output": {
16201
+ "available": false,
16202
+ "loggedIn": false,
16203
+ "magicDnsName": "sample",
16204
+ "httpsUrl": "sample",
16205
+ "detail": "sample",
16206
+ "lastServe": {
16207
+ "at": 0,
16208
+ "command": "sample",
16209
+ "ok": false,
16210
+ "url": "sample",
16211
+ "detail": "sample"
16212
+ }
16213
+ }
16214
+ },
16215
+ "tailscale.serve.run": {
16216
+ "input": null,
16217
+ "output": {
16218
+ "receipt": {
16219
+ "at": 0,
16220
+ "command": "sample",
16221
+ "ok": false,
16222
+ "url": "sample",
16223
+ "detail": "sample"
16224
+ },
16225
+ "publicBaseUrlUpdated": false
16226
+ }
16227
+ },
15555
16228
  "review.snapshot": {
15556
16229
  "input": {},
15557
16230
  "output": {
@@ -17005,6 +17678,44 @@ export const WEBUI_METHOD_SAMPLES = {
17005
17678
  "previousMode": "plan"
17006
17679
  }
17007
17680
  },
17681
+ "sessions.queuedMessages.delete": {
17682
+ "input": {
17683
+ "sessionId": "sample",
17684
+ "messageId": "sample"
17685
+ },
17686
+ "output": {
17687
+ "sessionId": "sample",
17688
+ "id": "sample",
17689
+ "deleted": false
17690
+ }
17691
+ },
17692
+ "sessions.queuedMessages.edit": {
17693
+ "input": {
17694
+ "sessionId": "sample",
17695
+ "messageId": "sample",
17696
+ "text": "sample"
17697
+ },
17698
+ "output": {
17699
+ "sessionId": "sample",
17700
+ "id": "sample",
17701
+ "text": "sample"
17702
+ }
17703
+ },
17704
+ "sessions.queuedMessages.list": {
17705
+ "input": {
17706
+ "sessionId": "sample"
17707
+ },
17708
+ "output": {
17709
+ "sessionId": "sample",
17710
+ "messages": [
17711
+ {
17712
+ "id": "sample",
17713
+ "queuedAt": 0,
17714
+ "text": "sample"
17715
+ }
17716
+ ]
17717
+ }
17718
+ },
17008
17719
  "sessions.register": {
17009
17720
  "input": {
17010
17721
  "sessionId": "sample",
@@ -17291,6 +18002,17 @@ export const WEBUI_METHOD_SAMPLES = {
17291
18002
  "agentId": "sample"
17292
18003
  }
17293
18004
  },
18005
+ "sessions.toolCalls.cancel": {
18006
+ "input": {
18007
+ "sessionId": "sample",
18008
+ "callId": "sample"
18009
+ },
18010
+ "output": {
18011
+ "sessionId": "sample",
18012
+ "callId": "sample",
18013
+ "cancelled": false
18014
+ }
18015
+ },
17294
18016
  "security.settings": {
17295
18017
  "input": {},
17296
18018
  "output": {
@@ -18700,6 +19422,19 @@ export const WEBUI_METHOD_SAMPLES = {
18700
19422
  "reason": "sample"
18701
19423
  }
18702
19424
  },
19425
+ "worktrees.discard": {
19426
+ "input": {
19427
+ "path": "sample"
19428
+ },
19429
+ "output": {
19430
+ "path": "sample",
19431
+ "ok": false,
19432
+ "branch": "sample",
19433
+ "preservedCommit": "sample",
19434
+ "discardedAt": 0,
19435
+ "detail": "sample"
19436
+ }
19437
+ },
18703
19438
  "worktrees.setup.run": {
18704
19439
  "input": {
18705
19440
  "path": "sample"