@pellux/goodvibes-contracts 1.8.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/operator-contract.json +3856 -467
- package/artifacts/operator-openapi.json +1897 -10
- package/artifacts/python/homeassistant_operator_client.py +2 -2
- package/dist/core-verbs.d.ts.map +1 -1
- package/dist/core-verbs.js +33 -0
- package/dist/generated/foundation-client-types.d.ts +689 -61
- package/dist/generated/foundation-client-types.d.ts.map +1 -1
- package/dist/generated/foundation-metadata.d.ts +2 -2
- package/dist/generated/foundation-metadata.js +2 -2
- package/dist/generated/mock-daemon-fixtures.d.ts.map +1 -1
- package/dist/generated/mock-daemon-fixtures.js +792 -3
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +3856 -467
- package/dist/generated/operator-method-ids.d.ts +1 -1
- package/dist/generated/operator-method-ids.d.ts.map +1 -1
- package/dist/generated/operator-method-ids.js +29 -0
- package/dist/generated/webui-facade.d.ts +2 -2
- package/dist/generated/webui-facade.d.ts.map +1 -1
- package/dist/generated/webui-facade.js +869 -6
- package/package.json +1 -1
|
@@ -75,6 +75,50 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
75
75
|
"issueCount": 0
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
+
"acp.agents.list": {
|
|
79
|
+
"methodId": "acp.agents.list",
|
|
80
|
+
"http": null,
|
|
81
|
+
"status": 200,
|
|
82
|
+
"body": {
|
|
83
|
+
"agents": [
|
|
84
|
+
{
|
|
85
|
+
"id": "sample",
|
|
86
|
+
"title": "sample",
|
|
87
|
+
"binaryPath": "sample",
|
|
88
|
+
"args": [
|
|
89
|
+
"sample"
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"acp.sessions.create": {
|
|
96
|
+
"methodId": "acp.sessions.create",
|
|
97
|
+
"http": null,
|
|
98
|
+
"status": 200,
|
|
99
|
+
"body": {
|
|
100
|
+
"hosted": {
|
|
101
|
+
"id": "sample",
|
|
102
|
+
"agentId": "sample",
|
|
103
|
+
"title": "sample",
|
|
104
|
+
"binaryPath": "sample",
|
|
105
|
+
"cwd": "sample",
|
|
106
|
+
"state": "sample",
|
|
107
|
+
"startedAt": 0,
|
|
108
|
+
"completedAt": 0,
|
|
109
|
+
"sessionId": "sample",
|
|
110
|
+
"progress": "sample",
|
|
111
|
+
"pendingPermission": "sample",
|
|
112
|
+
"error": {
|
|
113
|
+
"binary": "sample",
|
|
114
|
+
"stage": "sample",
|
|
115
|
+
"message": "sample"
|
|
116
|
+
},
|
|
117
|
+
"promptCount": 0
|
|
118
|
+
},
|
|
119
|
+
"started": false
|
|
120
|
+
}
|
|
121
|
+
},
|
|
78
122
|
"approvals.approve": {
|
|
79
123
|
"methodId": "approvals.approve",
|
|
80
124
|
"http": {
|
|
@@ -5392,6 +5436,36 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5392
5436
|
"sessionRef": {
|
|
5393
5437
|
"sessionId": "sample",
|
|
5394
5438
|
"agentId": "sample"
|
|
5439
|
+
},
|
|
5440
|
+
"review": {
|
|
5441
|
+
"score": 0,
|
|
5442
|
+
"passed": false,
|
|
5443
|
+
"cycles": 0,
|
|
5444
|
+
"checklist": [
|
|
5445
|
+
{
|
|
5446
|
+
"item": "sample",
|
|
5447
|
+
"verified": false,
|
|
5448
|
+
"evidence": "sample",
|
|
5449
|
+
"howExercised": "sample"
|
|
5450
|
+
}
|
|
5451
|
+
]
|
|
5452
|
+
},
|
|
5453
|
+
"observed": {
|
|
5454
|
+
"externalKind": "claude-code",
|
|
5455
|
+
"pid": 0,
|
|
5456
|
+
"cwd": "sample",
|
|
5457
|
+
"liveness": {
|
|
5458
|
+
"state": "active",
|
|
5459
|
+
"cpuSeconds": 0,
|
|
5460
|
+
"detail": "sample"
|
|
5461
|
+
},
|
|
5462
|
+
"steer": {
|
|
5463
|
+
"kind": "tmux",
|
|
5464
|
+
"paneId": "sample",
|
|
5465
|
+
"tty": "sample",
|
|
5466
|
+
"reason": "sample"
|
|
5467
|
+
},
|
|
5468
|
+
"steerDrillInOnly": false
|
|
5395
5469
|
}
|
|
5396
5470
|
}
|
|
5397
5471
|
]
|
|
@@ -5479,12 +5553,137 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5479
5553
|
"http": null,
|
|
5480
5554
|
"status": 200,
|
|
5481
5555
|
"body": {
|
|
5556
|
+
"applied": false,
|
|
5482
5557
|
"groupId": "sample",
|
|
5483
5558
|
"winnerItemId": "sample",
|
|
5484
5559
|
"loserItemIds": [
|
|
5485
5560
|
"sample"
|
|
5486
5561
|
],
|
|
5487
|
-
"auto": false
|
|
5562
|
+
"auto": false,
|
|
5563
|
+
"requiresConfirm": false,
|
|
5564
|
+
"group": {
|
|
5565
|
+
"groupId": "sample",
|
|
5566
|
+
"workstreamId": "sample",
|
|
5567
|
+
"sourceTitle": "sample",
|
|
5568
|
+
"ready": false,
|
|
5569
|
+
"candidates": [
|
|
5570
|
+
{
|
|
5571
|
+
"itemId": "sample",
|
|
5572
|
+
"attemptIndex": 0,
|
|
5573
|
+
"state": "held-merge",
|
|
5574
|
+
"title": "sample",
|
|
5575
|
+
"worktreePath": "sample",
|
|
5576
|
+
"branch": "sample",
|
|
5577
|
+
"usage": {
|
|
5578
|
+
"inputTokens": 0,
|
|
5579
|
+
"outputTokens": 0,
|
|
5580
|
+
"cacheReadTokens": 0,
|
|
5581
|
+
"cacheWriteTokens": 0,
|
|
5582
|
+
"reasoningTokens": 0,
|
|
5583
|
+
"llmCallCount": 0,
|
|
5584
|
+
"turnCount": 0,
|
|
5585
|
+
"toolCallCount": 0,
|
|
5586
|
+
"costUsd": 0,
|
|
5587
|
+
"costState": "priced",
|
|
5588
|
+
"costSource": "user",
|
|
5589
|
+
"pricingAsOf": "sample"
|
|
5590
|
+
},
|
|
5591
|
+
"failureReason": "sample",
|
|
5592
|
+
"diff": {
|
|
5593
|
+
"files": [
|
|
5594
|
+
"sample"
|
|
5595
|
+
],
|
|
5596
|
+
"unifiedDiff": "sample",
|
|
5597
|
+
"stat": "sample"
|
|
5598
|
+
}
|
|
5599
|
+
}
|
|
5600
|
+
],
|
|
5601
|
+
"autoAccept": false,
|
|
5602
|
+
"judgment": {
|
|
5603
|
+
"proposedWinnerItemId": "sample",
|
|
5604
|
+
"reasons": [
|
|
5605
|
+
"sample"
|
|
5606
|
+
],
|
|
5607
|
+
"model": "sample",
|
|
5608
|
+
"scoredBy": "model"
|
|
5609
|
+
}
|
|
5610
|
+
}
|
|
5611
|
+
}
|
|
5612
|
+
},
|
|
5613
|
+
"fleet.conflicts.list": {
|
|
5614
|
+
"methodId": "fleet.conflicts.list",
|
|
5615
|
+
"http": null,
|
|
5616
|
+
"status": 200,
|
|
5617
|
+
"body": {
|
|
5618
|
+
"conflicts": [
|
|
5619
|
+
{
|
|
5620
|
+
"workstreamId": "sample",
|
|
5621
|
+
"itemId": "sample",
|
|
5622
|
+
"title": "sample",
|
|
5623
|
+
"worktreePath": "sample",
|
|
5624
|
+
"branch": "sample",
|
|
5625
|
+
"files": [
|
|
5626
|
+
"sample"
|
|
5627
|
+
],
|
|
5628
|
+
"resolutionSessionId": "sample"
|
|
5629
|
+
}
|
|
5630
|
+
]
|
|
5631
|
+
}
|
|
5632
|
+
},
|
|
5633
|
+
"fleet.conflicts.resolve": {
|
|
5634
|
+
"methodId": "fleet.conflicts.resolve",
|
|
5635
|
+
"http": null,
|
|
5636
|
+
"status": 200,
|
|
5637
|
+
"body": {
|
|
5638
|
+
"itemId": "sample",
|
|
5639
|
+
"sessionId": "sample",
|
|
5640
|
+
"worktreePath": "sample",
|
|
5641
|
+
"files": [
|
|
5642
|
+
"sample"
|
|
5643
|
+
]
|
|
5644
|
+
}
|
|
5645
|
+
},
|
|
5646
|
+
"fleet.graph.get": {
|
|
5647
|
+
"methodId": "fleet.graph.get",
|
|
5648
|
+
"http": {
|
|
5649
|
+
"method": "GET",
|
|
5650
|
+
"path": "/api/fleet/workstreams/{workstreamId}/graph"
|
|
5651
|
+
},
|
|
5652
|
+
"status": 200,
|
|
5653
|
+
"body": {
|
|
5654
|
+
"workstreamId": "sample",
|
|
5655
|
+
"title": "sample",
|
|
5656
|
+
"nodes": [
|
|
5657
|
+
{
|
|
5658
|
+
"id": "sample",
|
|
5659
|
+
"title": "sample",
|
|
5660
|
+
"state": "sample",
|
|
5661
|
+
"cluster": "sample",
|
|
5662
|
+
"files": [
|
|
5663
|
+
"sample"
|
|
5664
|
+
],
|
|
5665
|
+
"mergeState": "sample",
|
|
5666
|
+
"blockedReason": "sample",
|
|
5667
|
+
"orphaned": false,
|
|
5668
|
+
"remainingDepth": 0,
|
|
5669
|
+
"stalled": false,
|
|
5670
|
+
"agentId": "sample"
|
|
5671
|
+
}
|
|
5672
|
+
],
|
|
5673
|
+
"edges": [
|
|
5674
|
+
{
|
|
5675
|
+
"from": "sample",
|
|
5676
|
+
"to": "sample"
|
|
5677
|
+
}
|
|
5678
|
+
],
|
|
5679
|
+
"pool": {
|
|
5680
|
+
"ready": 0,
|
|
5681
|
+
"running": 0,
|
|
5682
|
+
"atCap": false,
|
|
5683
|
+
"capKey": "sample",
|
|
5684
|
+
"maxSize": 0,
|
|
5685
|
+
"refusal": "sample"
|
|
5686
|
+
}
|
|
5488
5687
|
}
|
|
5489
5688
|
},
|
|
5490
5689
|
"fleet.list": {
|
|
@@ -5539,6 +5738,36 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5539
5738
|
"sessionRef": {
|
|
5540
5739
|
"sessionId": "sample",
|
|
5541
5740
|
"agentId": "sample"
|
|
5741
|
+
},
|
|
5742
|
+
"review": {
|
|
5743
|
+
"score": 0,
|
|
5744
|
+
"passed": false,
|
|
5745
|
+
"cycles": 0,
|
|
5746
|
+
"checklist": [
|
|
5747
|
+
{
|
|
5748
|
+
"item": "sample",
|
|
5749
|
+
"verified": false,
|
|
5750
|
+
"evidence": "sample",
|
|
5751
|
+
"howExercised": "sample"
|
|
5752
|
+
}
|
|
5753
|
+
]
|
|
5754
|
+
},
|
|
5755
|
+
"observed": {
|
|
5756
|
+
"externalKind": "claude-code",
|
|
5757
|
+
"pid": 0,
|
|
5758
|
+
"cwd": "sample",
|
|
5759
|
+
"liveness": {
|
|
5760
|
+
"state": "active",
|
|
5761
|
+
"cpuSeconds": 0,
|
|
5762
|
+
"detail": "sample"
|
|
5763
|
+
},
|
|
5764
|
+
"steer": {
|
|
5765
|
+
"kind": "tmux",
|
|
5766
|
+
"paneId": "sample",
|
|
5767
|
+
"tty": "sample",
|
|
5768
|
+
"reason": "sample"
|
|
5769
|
+
},
|
|
5770
|
+
"steerDrillInOnly": false
|
|
5542
5771
|
}
|
|
5543
5772
|
}
|
|
5544
5773
|
],
|
|
@@ -5547,6 +5776,16 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5547
5776
|
"capturedAt": 0
|
|
5548
5777
|
}
|
|
5549
5778
|
},
|
|
5779
|
+
"fleet.observed.steer": {
|
|
5780
|
+
"methodId": "fleet.observed.steer",
|
|
5781
|
+
"http": null,
|
|
5782
|
+
"status": 200,
|
|
5783
|
+
"body": {
|
|
5784
|
+
"queued": false,
|
|
5785
|
+
"messageId": "sample",
|
|
5786
|
+
"reason": "sample"
|
|
5787
|
+
}
|
|
5788
|
+
},
|
|
5550
5789
|
"fleet.snapshot": {
|
|
5551
5790
|
"methodId": "fleet.snapshot",
|
|
5552
5791
|
"http": null,
|
|
@@ -5600,6 +5839,36 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5600
5839
|
"sessionRef": {
|
|
5601
5840
|
"sessionId": "sample",
|
|
5602
5841
|
"agentId": "sample"
|
|
5842
|
+
},
|
|
5843
|
+
"review": {
|
|
5844
|
+
"score": 0,
|
|
5845
|
+
"passed": false,
|
|
5846
|
+
"cycles": 0,
|
|
5847
|
+
"checklist": [
|
|
5848
|
+
{
|
|
5849
|
+
"item": "sample",
|
|
5850
|
+
"verified": false,
|
|
5851
|
+
"evidence": "sample",
|
|
5852
|
+
"howExercised": "sample"
|
|
5853
|
+
}
|
|
5854
|
+
]
|
|
5855
|
+
},
|
|
5856
|
+
"observed": {
|
|
5857
|
+
"externalKind": "claude-code",
|
|
5858
|
+
"pid": 0,
|
|
5859
|
+
"cwd": "sample",
|
|
5860
|
+
"liveness": {
|
|
5861
|
+
"state": "active",
|
|
5862
|
+
"cpuSeconds": 0,
|
|
5863
|
+
"detail": "sample"
|
|
5864
|
+
},
|
|
5865
|
+
"steer": {
|
|
5866
|
+
"kind": "tmux",
|
|
5867
|
+
"paneId": "sample",
|
|
5868
|
+
"tty": "sample",
|
|
5869
|
+
"reason": "sample"
|
|
5870
|
+
},
|
|
5871
|
+
"steerDrillInOnly": false
|
|
5603
5872
|
}
|
|
5604
5873
|
}
|
|
5605
5874
|
],
|
|
@@ -5696,6 +5965,210 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5696
5965
|
}
|
|
5697
5966
|
}
|
|
5698
5967
|
},
|
|
5968
|
+
"ops.memory.get": {
|
|
5969
|
+
"methodId": "ops.memory.get",
|
|
5970
|
+
"http": {
|
|
5971
|
+
"method": "GET",
|
|
5972
|
+
"path": "/api/ops/memory"
|
|
5973
|
+
},
|
|
5974
|
+
"status": 200,
|
|
5975
|
+
"body": {
|
|
5976
|
+
"tier": "normal",
|
|
5977
|
+
"budgetMb": 0,
|
|
5978
|
+
"rssMb": 0,
|
|
5979
|
+
"heapUsedMb": 0,
|
|
5980
|
+
"heapTotalMb": 0,
|
|
5981
|
+
"usedPct": 0,
|
|
5982
|
+
"refusingExpensiveWork": false,
|
|
5983
|
+
"caches": [
|
|
5984
|
+
{
|
|
5985
|
+
"id": "sample",
|
|
5986
|
+
"name": "sample",
|
|
5987
|
+
"entries": 0,
|
|
5988
|
+
"estimatedBytes": 0
|
|
5989
|
+
}
|
|
5990
|
+
],
|
|
5991
|
+
"pausedJobs": [
|
|
5992
|
+
"sample"
|
|
5993
|
+
],
|
|
5994
|
+
"tripwire": {
|
|
5995
|
+
"armed": false,
|
|
5996
|
+
"sustainedSec": 0,
|
|
5997
|
+
"rateMbPerSec": 0
|
|
5998
|
+
},
|
|
5999
|
+
"thresholds": {
|
|
6000
|
+
"elevatedPct": 0,
|
|
6001
|
+
"highPct": 0,
|
|
6002
|
+
"criticalPct": 0
|
|
6003
|
+
}
|
|
6004
|
+
}
|
|
6005
|
+
},
|
|
6006
|
+
"power.keepAwake.set": {
|
|
6007
|
+
"methodId": "power.keepAwake.set",
|
|
6008
|
+
"http": {
|
|
6009
|
+
"method": "POST",
|
|
6010
|
+
"path": "/api/power/keep-awake"
|
|
6011
|
+
},
|
|
6012
|
+
"status": 200,
|
|
6013
|
+
"body": {
|
|
6014
|
+
"platform": "sample",
|
|
6015
|
+
"work": {
|
|
6016
|
+
"held": false,
|
|
6017
|
+
"grantedClasses": [
|
|
6018
|
+
"handle-lid-switch"
|
|
6019
|
+
],
|
|
6020
|
+
"deniedClasses": [
|
|
6021
|
+
"handle-lid-switch"
|
|
6022
|
+
],
|
|
6023
|
+
"reasons": [
|
|
6024
|
+
"sample"
|
|
6025
|
+
],
|
|
6026
|
+
"heldSince": 0,
|
|
6027
|
+
"capMinutes": 0,
|
|
6028
|
+
"capExpiresAt": 0,
|
|
6029
|
+
"capExpired": false
|
|
6030
|
+
},
|
|
6031
|
+
"keepAwake": {
|
|
6032
|
+
"enabled": false,
|
|
6033
|
+
"held": false,
|
|
6034
|
+
"grantedClasses": [
|
|
6035
|
+
"handle-lid-switch"
|
|
6036
|
+
],
|
|
6037
|
+
"deniedClasses": [
|
|
6038
|
+
"handle-lid-switch"
|
|
6039
|
+
],
|
|
6040
|
+
"note": "sample"
|
|
6041
|
+
}
|
|
6042
|
+
}
|
|
6043
|
+
},
|
|
6044
|
+
"power.status.get": {
|
|
6045
|
+
"methodId": "power.status.get",
|
|
6046
|
+
"http": {
|
|
6047
|
+
"method": "GET",
|
|
6048
|
+
"path": "/api/power/status"
|
|
6049
|
+
},
|
|
6050
|
+
"status": 200,
|
|
6051
|
+
"body": {
|
|
6052
|
+
"platform": "sample",
|
|
6053
|
+
"work": {
|
|
6054
|
+
"held": false,
|
|
6055
|
+
"grantedClasses": [
|
|
6056
|
+
"handle-lid-switch"
|
|
6057
|
+
],
|
|
6058
|
+
"deniedClasses": [
|
|
6059
|
+
"handle-lid-switch"
|
|
6060
|
+
],
|
|
6061
|
+
"reasons": [
|
|
6062
|
+
"sample"
|
|
6063
|
+
],
|
|
6064
|
+
"heldSince": 0,
|
|
6065
|
+
"capMinutes": 0,
|
|
6066
|
+
"capExpiresAt": 0,
|
|
6067
|
+
"capExpired": false
|
|
6068
|
+
},
|
|
6069
|
+
"keepAwake": {
|
|
6070
|
+
"enabled": false,
|
|
6071
|
+
"held": false,
|
|
6072
|
+
"grantedClasses": [
|
|
6073
|
+
"handle-lid-switch"
|
|
6074
|
+
],
|
|
6075
|
+
"deniedClasses": [
|
|
6076
|
+
"handle-lid-switch"
|
|
6077
|
+
],
|
|
6078
|
+
"note": "sample"
|
|
6079
|
+
}
|
|
6080
|
+
}
|
|
6081
|
+
},
|
|
6082
|
+
"voice.local.install": {
|
|
6083
|
+
"methodId": "voice.local.install",
|
|
6084
|
+
"http": {
|
|
6085
|
+
"method": "POST",
|
|
6086
|
+
"path": "/api/voice/local/install"
|
|
6087
|
+
},
|
|
6088
|
+
"status": 200,
|
|
6089
|
+
"body": {
|
|
6090
|
+
"provisioned": false,
|
|
6091
|
+
"platform": "sample",
|
|
6092
|
+
"tts": {
|
|
6093
|
+
"engine": "sample",
|
|
6094
|
+
"state": "provisioned",
|
|
6095
|
+
"binaryPath": "sample",
|
|
6096
|
+
"modelPath": "sample",
|
|
6097
|
+
"reason": "sample"
|
|
6098
|
+
},
|
|
6099
|
+
"stt": {
|
|
6100
|
+
"engine": "sample",
|
|
6101
|
+
"state": "provisioned",
|
|
6102
|
+
"binaryPath": "sample",
|
|
6103
|
+
"modelPath": "sample",
|
|
6104
|
+
"reason": "sample"
|
|
6105
|
+
},
|
|
6106
|
+
"components": [
|
|
6107
|
+
{
|
|
6108
|
+
"id": "sample",
|
|
6109
|
+
"state": "installed",
|
|
6110
|
+
"bytes": 0,
|
|
6111
|
+
"error": "sample"
|
|
6112
|
+
}
|
|
6113
|
+
],
|
|
6114
|
+
"configured": {
|
|
6115
|
+
"set": [
|
|
6116
|
+
{
|
|
6117
|
+
"key": "sample",
|
|
6118
|
+
"value": "sample"
|
|
6119
|
+
}
|
|
6120
|
+
],
|
|
6121
|
+
"skipped": [
|
|
6122
|
+
{
|
|
6123
|
+
"key": "sample",
|
|
6124
|
+
"reason": "sample"
|
|
6125
|
+
}
|
|
6126
|
+
]
|
|
6127
|
+
}
|
|
6128
|
+
}
|
|
6129
|
+
},
|
|
6130
|
+
"voice.local.status": {
|
|
6131
|
+
"methodId": "voice.local.status",
|
|
6132
|
+
"http": {
|
|
6133
|
+
"method": "GET",
|
|
6134
|
+
"path": "/api/voice/local/status"
|
|
6135
|
+
},
|
|
6136
|
+
"status": 200,
|
|
6137
|
+
"body": {
|
|
6138
|
+
"platform": "sample",
|
|
6139
|
+
"state": "not-provisioned",
|
|
6140
|
+
"tts": {
|
|
6141
|
+
"engine": "sample",
|
|
6142
|
+
"binaryPresent": false,
|
|
6143
|
+
"voicePresent": false,
|
|
6144
|
+
"binaryPath": "sample",
|
|
6145
|
+
"modelPath": "sample"
|
|
6146
|
+
},
|
|
6147
|
+
"stt": {
|
|
6148
|
+
"engine": "sample",
|
|
6149
|
+
"supported": false,
|
|
6150
|
+
"state": "not-provisioned",
|
|
6151
|
+
"binaryPresent": false,
|
|
6152
|
+
"modelPresent": false,
|
|
6153
|
+
"binaryPath": "sample",
|
|
6154
|
+
"modelPath": "sample",
|
|
6155
|
+
"reason": "sample"
|
|
6156
|
+
},
|
|
6157
|
+
"offerBytes": 0,
|
|
6158
|
+
"installInProgress": {
|
|
6159
|
+
"startedAt": 0,
|
|
6160
|
+
"components": [
|
|
6161
|
+
{
|
|
6162
|
+
"component": "sample",
|
|
6163
|
+
"phase": "skip",
|
|
6164
|
+
"message": "sample",
|
|
6165
|
+
"bytesTotal": 0,
|
|
6166
|
+
"bytesDone": 0
|
|
6167
|
+
}
|
|
6168
|
+
]
|
|
6169
|
+
}
|
|
6170
|
+
}
|
|
6171
|
+
},
|
|
5699
6172
|
"intelligence.snapshot": {
|
|
5700
6173
|
"methodId": "intelligence.snapshot",
|
|
5701
6174
|
"http": {
|
|
@@ -11346,6 +11819,56 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
11346
11819
|
}
|
|
11347
11820
|
}
|
|
11348
11821
|
},
|
|
11822
|
+
"memory.consolidation.receipts": {
|
|
11823
|
+
"methodId": "memory.consolidation.receipts",
|
|
11824
|
+
"http": {
|
|
11825
|
+
"method": "GET",
|
|
11826
|
+
"path": "/api/memory/consolidation/receipts"
|
|
11827
|
+
},
|
|
11828
|
+
"status": 200,
|
|
11829
|
+
"body": {
|
|
11830
|
+
"receipts": [
|
|
11831
|
+
{
|
|
11832
|
+
"runId": "sample",
|
|
11833
|
+
"ranAt": "sample",
|
|
11834
|
+
"trigger": "sample",
|
|
11835
|
+
"idle": false,
|
|
11836
|
+
"scanned": 0,
|
|
11837
|
+
"merged": [
|
|
11838
|
+
{}
|
|
11839
|
+
],
|
|
11840
|
+
"archived": [
|
|
11841
|
+
{}
|
|
11842
|
+
],
|
|
11843
|
+
"decayed": [
|
|
11844
|
+
{}
|
|
11845
|
+
],
|
|
11846
|
+
"proposed": [
|
|
11847
|
+
{
|
|
11848
|
+
"kind": "contradiction",
|
|
11849
|
+
"ids": [
|
|
11850
|
+
"sample"
|
|
11851
|
+
],
|
|
11852
|
+
"route": "sample",
|
|
11853
|
+
"reason": "sample"
|
|
11854
|
+
}
|
|
11855
|
+
],
|
|
11856
|
+
"usageSignalAvailable": false,
|
|
11857
|
+
"note": "sample"
|
|
11858
|
+
}
|
|
11859
|
+
],
|
|
11860
|
+
"pendingProposals": [
|
|
11861
|
+
{
|
|
11862
|
+
"kind": "contradiction",
|
|
11863
|
+
"ids": [
|
|
11864
|
+
"sample"
|
|
11865
|
+
],
|
|
11866
|
+
"route": "sample",
|
|
11867
|
+
"reason": "sample"
|
|
11868
|
+
}
|
|
11869
|
+
]
|
|
11870
|
+
}
|
|
11871
|
+
},
|
|
11349
11872
|
"memory.doctor": {
|
|
11350
11873
|
"methodId": "memory.doctor",
|
|
11351
11874
|
"http": {
|
|
@@ -11920,6 +12443,145 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
11920
12443
|
}
|
|
11921
12444
|
}
|
|
11922
12445
|
},
|
|
12446
|
+
"pairing.handoff.complete": {
|
|
12447
|
+
"methodId": "pairing.handoff.complete",
|
|
12448
|
+
"http": null,
|
|
12449
|
+
"status": 200,
|
|
12450
|
+
"body": {
|
|
12451
|
+
"results": [
|
|
12452
|
+
{
|
|
12453
|
+
"kind": "sample",
|
|
12454
|
+
"status": "sample",
|
|
12455
|
+
"detail": "sample"
|
|
12456
|
+
}
|
|
12457
|
+
]
|
|
12458
|
+
}
|
|
12459
|
+
},
|
|
12460
|
+
"pairing.handoff.create": {
|
|
12461
|
+
"methodId": "pairing.handoff.create",
|
|
12462
|
+
"http": null,
|
|
12463
|
+
"status": 200,
|
|
12464
|
+
"body": {
|
|
12465
|
+
"token": {
|
|
12466
|
+
"id": "sample",
|
|
12467
|
+
"name": "sample",
|
|
12468
|
+
"token": "sample",
|
|
12469
|
+
"createdAt": 0
|
|
12470
|
+
},
|
|
12471
|
+
"offers": [
|
|
12472
|
+
{
|
|
12473
|
+
"kind": "sample",
|
|
12474
|
+
"available": false,
|
|
12475
|
+
"vapidPublicKey": "sample"
|
|
12476
|
+
}
|
|
12477
|
+
],
|
|
12478
|
+
"fragment": "sample",
|
|
12479
|
+
"deepLink": "sample",
|
|
12480
|
+
"posture": {
|
|
12481
|
+
"origin": "sample",
|
|
12482
|
+
"scheme": "sample",
|
|
12483
|
+
"privateNetwork": false,
|
|
12484
|
+
"secureContext": false,
|
|
12485
|
+
"notice": "sample",
|
|
12486
|
+
"capabilities": [
|
|
12487
|
+
{
|
|
12488
|
+
"capability": "sample",
|
|
12489
|
+
"available": false,
|
|
12490
|
+
"reason": "sample"
|
|
12491
|
+
}
|
|
12492
|
+
]
|
|
12493
|
+
}
|
|
12494
|
+
}
|
|
12495
|
+
},
|
|
12496
|
+
"pairing.posture.get": {
|
|
12497
|
+
"methodId": "pairing.posture.get",
|
|
12498
|
+
"http": null,
|
|
12499
|
+
"status": 200,
|
|
12500
|
+
"body": {
|
|
12501
|
+
"posture": {
|
|
12502
|
+
"origin": "sample",
|
|
12503
|
+
"scheme": "sample",
|
|
12504
|
+
"privateNetwork": false,
|
|
12505
|
+
"secureContext": false,
|
|
12506
|
+
"notice": "sample",
|
|
12507
|
+
"capabilities": [
|
|
12508
|
+
{
|
|
12509
|
+
"capability": "sample",
|
|
12510
|
+
"available": false,
|
|
12511
|
+
"reason": "sample"
|
|
12512
|
+
}
|
|
12513
|
+
]
|
|
12514
|
+
}
|
|
12515
|
+
}
|
|
12516
|
+
},
|
|
12517
|
+
"pairing.tokens.create": {
|
|
12518
|
+
"methodId": "pairing.tokens.create",
|
|
12519
|
+
"http": null,
|
|
12520
|
+
"status": 200,
|
|
12521
|
+
"body": {
|
|
12522
|
+
"token": {
|
|
12523
|
+
"id": "sample",
|
|
12524
|
+
"name": "sample",
|
|
12525
|
+
"token": "sample",
|
|
12526
|
+
"createdAt": 0
|
|
12527
|
+
}
|
|
12528
|
+
}
|
|
12529
|
+
},
|
|
12530
|
+
"pairing.tokens.delete": {
|
|
12531
|
+
"methodId": "pairing.tokens.delete",
|
|
12532
|
+
"http": null,
|
|
12533
|
+
"status": 200,
|
|
12534
|
+
"body": {
|
|
12535
|
+
"id": "sample",
|
|
12536
|
+
"revoked": false
|
|
12537
|
+
}
|
|
12538
|
+
},
|
|
12539
|
+
"pairing.tokens.list": {
|
|
12540
|
+
"methodId": "pairing.tokens.list",
|
|
12541
|
+
"http": null,
|
|
12542
|
+
"status": 200,
|
|
12543
|
+
"body": {
|
|
12544
|
+
"tokens": [
|
|
12545
|
+
{
|
|
12546
|
+
"id": "sample",
|
|
12547
|
+
"name": "sample",
|
|
12548
|
+
"createdAt": 0,
|
|
12549
|
+
"lastSeenAt": 0
|
|
12550
|
+
}
|
|
12551
|
+
],
|
|
12552
|
+
"legacySharedRevoked": false
|
|
12553
|
+
}
|
|
12554
|
+
},
|
|
12555
|
+
"pairing.tokens.migrate": {
|
|
12556
|
+
"methodId": "pairing.tokens.migrate",
|
|
12557
|
+
"http": null,
|
|
12558
|
+
"status": 200,
|
|
12559
|
+
"body": {
|
|
12560
|
+
"token": {
|
|
12561
|
+
"id": "sample",
|
|
12562
|
+
"name": "sample",
|
|
12563
|
+
"token": "sample",
|
|
12564
|
+
"createdAt": 0
|
|
12565
|
+
}
|
|
12566
|
+
}
|
|
12567
|
+
},
|
|
12568
|
+
"pairing.tokens.rename": {
|
|
12569
|
+
"methodId": "pairing.tokens.rename",
|
|
12570
|
+
"http": null,
|
|
12571
|
+
"status": 200,
|
|
12572
|
+
"body": {
|
|
12573
|
+
"id": "sample",
|
|
12574
|
+
"renamed": false
|
|
12575
|
+
}
|
|
12576
|
+
},
|
|
12577
|
+
"pairing.tokens.revokeShared": {
|
|
12578
|
+
"methodId": "pairing.tokens.revokeShared",
|
|
12579
|
+
"http": null,
|
|
12580
|
+
"status": 200,
|
|
12581
|
+
"body": {
|
|
12582
|
+
"legacySharedRevoked": false
|
|
12583
|
+
}
|
|
12584
|
+
},
|
|
11923
12585
|
"panels.list": {
|
|
11924
12586
|
"methodId": "panels.list",
|
|
11925
12587
|
"http": {
|
|
@@ -12390,11 +13052,13 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
12390
13052
|
"subscription": {
|
|
12391
13053
|
"id": "sample",
|
|
12392
13054
|
"principalId": "sample",
|
|
13055
|
+
"deviceId": "sample",
|
|
12393
13056
|
"endpointOrigin": "sample",
|
|
12394
13057
|
"endpointHash": "sample",
|
|
12395
13058
|
"createdAt": 0,
|
|
12396
13059
|
"lastDeliveryAt": 0,
|
|
12397
|
-
"lastOutcome": "sample"
|
|
13060
|
+
"lastOutcome": "sample",
|
|
13061
|
+
"consecutiveFailures": 0
|
|
12398
13062
|
}
|
|
12399
13063
|
}
|
|
12400
13064
|
},
|
|
@@ -12416,15 +13080,36 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
12416
13080
|
{
|
|
12417
13081
|
"id": "sample",
|
|
12418
13082
|
"principalId": "sample",
|
|
13083
|
+
"deviceId": "sample",
|
|
12419
13084
|
"endpointOrigin": "sample",
|
|
12420
13085
|
"endpointHash": "sample",
|
|
12421
13086
|
"createdAt": 0,
|
|
12422
13087
|
"lastDeliveryAt": 0,
|
|
12423
|
-
"lastOutcome": "sample"
|
|
13088
|
+
"lastOutcome": "sample",
|
|
13089
|
+
"consecutiveFailures": 0
|
|
12424
13090
|
}
|
|
12425
13091
|
]
|
|
12426
13092
|
}
|
|
12427
13093
|
},
|
|
13094
|
+
"push.subscriptions.reconcile": {
|
|
13095
|
+
"methodId": "push.subscriptions.reconcile",
|
|
13096
|
+
"http": null,
|
|
13097
|
+
"status": 200,
|
|
13098
|
+
"body": {
|
|
13099
|
+
"subscription": {
|
|
13100
|
+
"id": "sample",
|
|
13101
|
+
"principalId": "sample",
|
|
13102
|
+
"deviceId": "sample",
|
|
13103
|
+
"endpointOrigin": "sample",
|
|
13104
|
+
"endpointHash": "sample",
|
|
13105
|
+
"createdAt": 0,
|
|
13106
|
+
"lastDeliveryAt": 0,
|
|
13107
|
+
"lastOutcome": "sample",
|
|
13108
|
+
"consecutiveFailures": 0
|
|
13109
|
+
},
|
|
13110
|
+
"drift": "sample"
|
|
13111
|
+
}
|
|
13112
|
+
},
|
|
12428
13113
|
"push.subscriptions.verify": {
|
|
12429
13114
|
"methodId": "push.subscriptions.verify",
|
|
12430
13115
|
"http": null,
|
|
@@ -13295,6 +13980,40 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
13295
13980
|
]
|
|
13296
13981
|
}
|
|
13297
13982
|
},
|
|
13983
|
+
"tailscale.get": {
|
|
13984
|
+
"methodId": "tailscale.get",
|
|
13985
|
+
"http": null,
|
|
13986
|
+
"status": 200,
|
|
13987
|
+
"body": {
|
|
13988
|
+
"available": false,
|
|
13989
|
+
"loggedIn": false,
|
|
13990
|
+
"magicDnsName": "sample",
|
|
13991
|
+
"httpsUrl": "sample",
|
|
13992
|
+
"detail": "sample",
|
|
13993
|
+
"lastServe": {
|
|
13994
|
+
"at": 0,
|
|
13995
|
+
"command": "sample",
|
|
13996
|
+
"ok": false,
|
|
13997
|
+
"url": "sample",
|
|
13998
|
+
"detail": "sample"
|
|
13999
|
+
}
|
|
14000
|
+
}
|
|
14001
|
+
},
|
|
14002
|
+
"tailscale.serve.run": {
|
|
14003
|
+
"methodId": "tailscale.serve.run",
|
|
14004
|
+
"http": null,
|
|
14005
|
+
"status": 200,
|
|
14006
|
+
"body": {
|
|
14007
|
+
"receipt": {
|
|
14008
|
+
"at": 0,
|
|
14009
|
+
"command": "sample",
|
|
14010
|
+
"ok": false,
|
|
14011
|
+
"url": "sample",
|
|
14012
|
+
"detail": "sample"
|
|
14013
|
+
},
|
|
14014
|
+
"publicBaseUrlUpdated": false
|
|
14015
|
+
}
|
|
14016
|
+
},
|
|
13298
14017
|
"review.snapshot": {
|
|
13299
14018
|
"methodId": "review.snapshot",
|
|
13300
14019
|
"http": {
|
|
@@ -14776,6 +15495,50 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
14776
15495
|
"previousMode": "plan"
|
|
14777
15496
|
}
|
|
14778
15497
|
},
|
|
15498
|
+
"sessions.queuedMessages.delete": {
|
|
15499
|
+
"methodId": "sessions.queuedMessages.delete",
|
|
15500
|
+
"http": {
|
|
15501
|
+
"method": "DELETE",
|
|
15502
|
+
"path": "/api/sessions/{sessionId}/queued-messages/{messageId}"
|
|
15503
|
+
},
|
|
15504
|
+
"status": 200,
|
|
15505
|
+
"body": {
|
|
15506
|
+
"sessionId": "sample",
|
|
15507
|
+
"id": "sample",
|
|
15508
|
+
"deleted": false
|
|
15509
|
+
}
|
|
15510
|
+
},
|
|
15511
|
+
"sessions.queuedMessages.edit": {
|
|
15512
|
+
"methodId": "sessions.queuedMessages.edit",
|
|
15513
|
+
"http": {
|
|
15514
|
+
"method": "POST",
|
|
15515
|
+
"path": "/api/sessions/{sessionId}/queued-messages/{messageId}"
|
|
15516
|
+
},
|
|
15517
|
+
"status": 200,
|
|
15518
|
+
"body": {
|
|
15519
|
+
"sessionId": "sample",
|
|
15520
|
+
"id": "sample",
|
|
15521
|
+
"text": "sample"
|
|
15522
|
+
}
|
|
15523
|
+
},
|
|
15524
|
+
"sessions.queuedMessages.list": {
|
|
15525
|
+
"methodId": "sessions.queuedMessages.list",
|
|
15526
|
+
"http": {
|
|
15527
|
+
"method": "GET",
|
|
15528
|
+
"path": "/api/sessions/{sessionId}/queued-messages"
|
|
15529
|
+
},
|
|
15530
|
+
"status": 200,
|
|
15531
|
+
"body": {
|
|
15532
|
+
"sessionId": "sample",
|
|
15533
|
+
"messages": [
|
|
15534
|
+
{
|
|
15535
|
+
"id": "sample",
|
|
15536
|
+
"queuedAt": 0,
|
|
15537
|
+
"text": "sample"
|
|
15538
|
+
}
|
|
15539
|
+
]
|
|
15540
|
+
}
|
|
15541
|
+
},
|
|
14779
15542
|
"sessions.register": {
|
|
14780
15543
|
"methodId": "sessions.register",
|
|
14781
15544
|
"http": {
|
|
@@ -15025,6 +15788,19 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
15025
15788
|
"agentId": "sample"
|
|
15026
15789
|
}
|
|
15027
15790
|
},
|
|
15791
|
+
"sessions.toolCalls.cancel": {
|
|
15792
|
+
"methodId": "sessions.toolCalls.cancel",
|
|
15793
|
+
"http": {
|
|
15794
|
+
"method": "POST",
|
|
15795
|
+
"path": "/api/sessions/{sessionId}/tool-calls/{callId}/cancel"
|
|
15796
|
+
},
|
|
15797
|
+
"status": 200,
|
|
15798
|
+
"body": {
|
|
15799
|
+
"sessionId": "sample",
|
|
15800
|
+
"callId": "sample",
|
|
15801
|
+
"cancelled": false
|
|
15802
|
+
}
|
|
15803
|
+
},
|
|
15028
15804
|
"security.settings": {
|
|
15029
15805
|
"methodId": "security.settings",
|
|
15030
15806
|
"http": {
|
|
@@ -16354,6 +17130,19 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
16354
17130
|
"reason": "sample"
|
|
16355
17131
|
}
|
|
16356
17132
|
},
|
|
17133
|
+
"worktrees.discard": {
|
|
17134
|
+
"methodId": "worktrees.discard",
|
|
17135
|
+
"http": null,
|
|
17136
|
+
"status": 200,
|
|
17137
|
+
"body": {
|
|
17138
|
+
"path": "sample",
|
|
17139
|
+
"ok": false,
|
|
17140
|
+
"branch": "sample",
|
|
17141
|
+
"preservedCommit": "sample",
|
|
17142
|
+
"discardedAt": 0,
|
|
17143
|
+
"detail": "sample"
|
|
17144
|
+
}
|
|
17145
|
+
},
|
|
16357
17146
|
"worktrees.setup.run": {
|
|
16358
17147
|
"methodId": "worktrees.setup.run",
|
|
16359
17148
|
"http": null,
|