@openclaw/gateway-protocol 2026.9.3 → 2026.9.4

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.
@@ -533,7 +533,7 @@
533
533
  },
534
534
  "environments.list": {
535
535
  "since": "2026.7",
536
- "scope": "operator.read"
536
+ "scope": "dynamic"
537
537
  },
538
538
  "environments.status": {
539
539
  "since": "2026.7",
@@ -1728,23 +1728,23 @@
1728
1728
  "scope": "operator.admin"
1729
1729
  },
1730
1730
  "canvas.document.view": {
1731
- "since": "2026.8",
1731
+ "since": "2026.9",
1732
1732
  "scope": "operator.read"
1733
1733
  },
1734
1734
  "plugins.controlUi.list": {
1735
- "since": "2026.8",
1735
+ "since": "2026.9",
1736
1736
  "scope": "operator.read"
1737
1737
  },
1738
1738
  "plugins.controlUi.reload": {
1739
- "since": "2026.8",
1739
+ "since": "2026.9",
1740
1740
  "scope": "operator.admin"
1741
1741
  },
1742
1742
  "plugins.controlUi.report": {
1743
- "since": "2026.8",
1743
+ "since": "2026.9",
1744
1744
  "scope": "operator.read"
1745
1745
  },
1746
1746
  "plugins.controlUi.status": {
1747
- "since": "2026.8",
1747
+ "since": "2026.9",
1748
1748
  "scope": "operator.admin"
1749
1749
  },
1750
1750
  "update.runs.get": {
@@ -1782,6 +1782,26 @@
1782
1782
  "claws.monitors": {
1783
1783
  "since": "2026.9",
1784
1784
  "scope": "operator.admin"
1785
+ },
1786
+ "plugins.catalog.browse": {
1787
+ "since": "2026.9",
1788
+ "scope": "operator.read"
1789
+ },
1790
+ "plugins.catalog.categories": {
1791
+ "since": "2026.9",
1792
+ "scope": "operator.read"
1793
+ },
1794
+ "plugins.catalog.get": {
1795
+ "since": "2026.9",
1796
+ "scope": "operator.read"
1797
+ },
1798
+ "tasks.history": {
1799
+ "since": "2026.9",
1800
+ "scope": "operator.read"
1801
+ },
1802
+ "environments.prepare": {
1803
+ "since": "2026.9",
1804
+ "scope": "operator.admin"
1785
1805
  }
1786
1806
  },
1787
1807
  "definitions": {
@@ -6540,6 +6560,11 @@
6540
6560
  "placement": {
6541
6561
  "type": "string"
6542
6562
  },
6563
+ "slug": {
6564
+ "type": "string",
6565
+ "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
6566
+ "maxLength": 64
6567
+ },
6543
6568
  "requiresGatewayAuth": {
6544
6569
  "type": "boolean"
6545
6570
  },
@@ -6604,6 +6629,38 @@
6604
6629
  "scopes"
6605
6630
  ],
6606
6631
  "properties": {
6632
+ "method": {
6633
+ "anyOf": [
6634
+ {
6635
+ "type": "string",
6636
+ "const": "none"
6637
+ },
6638
+ {
6639
+ "type": "string",
6640
+ "const": "token"
6641
+ },
6642
+ {
6643
+ "type": "string",
6644
+ "const": "password"
6645
+ },
6646
+ {
6647
+ "type": "string",
6648
+ "const": "tailscale"
6649
+ },
6650
+ {
6651
+ "type": "string",
6652
+ "const": "device-token"
6653
+ },
6654
+ {
6655
+ "type": "string",
6656
+ "const": "bootstrap-token"
6657
+ },
6658
+ {
6659
+ "type": "string",
6660
+ "const": "trusted-proxy"
6661
+ }
6662
+ ]
6663
+ },
6607
6664
  "deviceToken": {
6608
6665
  "type": "string",
6609
6666
  "minLength": 1
@@ -10725,6 +10782,10 @@
10725
10782
  "tunnelStatus"
10726
10783
  ],
10727
10784
  "properties": {
10785
+ "profileId": {
10786
+ "type": "string",
10787
+ "minLength": 1
10788
+ },
10728
10789
  "providerId": {
10729
10790
  "type": "string",
10730
10791
  "minLength": 1
@@ -11041,6 +11102,10 @@
11041
11102
  "tunnelStatus"
11042
11103
  ],
11043
11104
  "properties": {
11105
+ "profileId": {
11106
+ "type": "string",
11107
+ "minLength": 1
11108
+ },
11044
11109
  "providerId": {
11045
11110
  "type": "string",
11046
11111
  "minLength": 1
@@ -11159,6 +11224,32 @@
11159
11224
  },
11160
11225
  "additionalProperties": false
11161
11226
  },
11227
+ "preparation": {
11228
+ "type": "object",
11229
+ "required": [
11230
+ "purpose",
11231
+ "key"
11232
+ ],
11233
+ "properties": {
11234
+ "purpose": {
11235
+ "anyOf": [
11236
+ {
11237
+ "type": "string",
11238
+ "const": "reserve"
11239
+ },
11240
+ {
11241
+ "type": "string",
11242
+ "const": "build"
11243
+ }
11244
+ ]
11245
+ },
11246
+ "key": {
11247
+ "type": "string",
11248
+ "minLength": 1
11249
+ }
11250
+ },
11251
+ "additionalProperties": false
11252
+ },
11162
11253
  "requiredNodeCommand": {
11163
11254
  "type": "object",
11164
11255
  "required": [
@@ -11393,6 +11484,10 @@
11393
11484
  "tunnelStatus"
11394
11485
  ],
11395
11486
  "properties": {
11487
+ "profileId": {
11488
+ "type": "string",
11489
+ "minLength": 1
11490
+ },
11396
11491
  "providerId": {
11397
11492
  "type": "string",
11398
11493
  "minLength": 1
@@ -11510,6 +11605,72 @@
11510
11605
  }
11511
11606
  },
11512
11607
  "additionalProperties": false
11608
+ },
11609
+ "preparation": {
11610
+ "type": "object",
11611
+ "required": [
11612
+ "purpose",
11613
+ "key"
11614
+ ],
11615
+ "properties": {
11616
+ "purpose": {
11617
+ "anyOf": [
11618
+ {
11619
+ "type": "string",
11620
+ "const": "reserve"
11621
+ },
11622
+ {
11623
+ "type": "string",
11624
+ "const": "build"
11625
+ }
11626
+ ]
11627
+ },
11628
+ "key": {
11629
+ "type": "string",
11630
+ "minLength": 1
11631
+ }
11632
+ },
11633
+ "additionalProperties": false
11634
+ }
11635
+ },
11636
+ "additionalProperties": false
11637
+ },
11638
+ "EnvironmentsPrepareParams": {
11639
+ "type": "object",
11640
+ "required": [
11641
+ "profileId",
11642
+ "projectPath"
11643
+ ],
11644
+ "properties": {
11645
+ "profileId": {
11646
+ "type": "string",
11647
+ "minLength": 1
11648
+ },
11649
+ "projectPath": {
11650
+ "type": "string",
11651
+ "minLength": 1
11652
+ }
11653
+ },
11654
+ "additionalProperties": false
11655
+ },
11656
+ "EnvironmentsPrepareResult": {
11657
+ "type": "object",
11658
+ "required": [
11659
+ "environmentId",
11660
+ "preparationKey",
11661
+ "reused"
11662
+ ],
11663
+ "properties": {
11664
+ "environmentId": {
11665
+ "type": "string",
11666
+ "minLength": 1
11667
+ },
11668
+ "preparationKey": {
11669
+ "type": "string",
11670
+ "minLength": 1
11671
+ },
11672
+ "reused": {
11673
+ "type": "boolean"
11513
11674
  }
11514
11675
  },
11515
11676
  "additionalProperties": false
@@ -11708,6 +11869,10 @@
11708
11869
  "tunnelStatus"
11709
11870
  ],
11710
11871
  "properties": {
11872
+ "profileId": {
11873
+ "type": "string",
11874
+ "minLength": 1
11875
+ },
11711
11876
  "providerId": {
11712
11877
  "type": "string",
11713
11878
  "minLength": 1
@@ -11825,6 +11990,32 @@
11825
11990
  }
11826
11991
  },
11827
11992
  "additionalProperties": false
11993
+ },
11994
+ "preparation": {
11995
+ "type": "object",
11996
+ "required": [
11997
+ "purpose",
11998
+ "key"
11999
+ ],
12000
+ "properties": {
12001
+ "purpose": {
12002
+ "anyOf": [
12003
+ {
12004
+ "type": "string",
12005
+ "const": "reserve"
12006
+ },
12007
+ {
12008
+ "type": "string",
12009
+ "const": "build"
12010
+ }
12011
+ ]
12012
+ },
12013
+ "key": {
12014
+ "type": "string",
12015
+ "minLength": 1
12016
+ }
12017
+ },
12018
+ "additionalProperties": false
11828
12019
  }
11829
12020
  },
11830
12021
  "additionalProperties": false
@@ -12026,6 +12217,10 @@
12026
12217
  "tunnelStatus"
12027
12218
  ],
12028
12219
  "properties": {
12220
+ "profileId": {
12221
+ "type": "string",
12222
+ "minLength": 1
12223
+ },
12029
12224
  "providerId": {
12030
12225
  "type": "string",
12031
12226
  "minLength": 1
@@ -12144,6 +12339,32 @@
12144
12339
  },
12145
12340
  "additionalProperties": false
12146
12341
  },
12342
+ "preparation": {
12343
+ "type": "object",
12344
+ "required": [
12345
+ "purpose",
12346
+ "key"
12347
+ ],
12348
+ "properties": {
12349
+ "purpose": {
12350
+ "anyOf": [
12351
+ {
12352
+ "type": "string",
12353
+ "const": "reserve"
12354
+ },
12355
+ {
12356
+ "type": "string",
12357
+ "const": "build"
12358
+ }
12359
+ ]
12360
+ },
12361
+ "key": {
12362
+ "type": "string",
12363
+ "minLength": 1
12364
+ }
12365
+ },
12366
+ "additionalProperties": false
12367
+ },
12147
12368
  "requiredNodeCommand": {
12148
12369
  "type": "object",
12149
12370
  "required": [
@@ -12288,12 +12509,50 @@
12288
12509
  },
12289
12510
  "default": {
12290
12511
  "type": "boolean"
12512
+ },
12513
+ "os": {
12514
+ "type": "string",
12515
+ "minLength": 1,
12516
+ "maxLength": 64
12517
+ }
12518
+ },
12519
+ "additionalProperties": false
12520
+ },
12521
+ "minItems": 1,
12522
+ "maxItems": 64
12523
+ },
12524
+ "operatingSystems": {
12525
+ "type": "array",
12526
+ "items": {
12527
+ "type": "object",
12528
+ "required": [
12529
+ "id",
12530
+ "label"
12531
+ ],
12532
+ "properties": {
12533
+ "id": {
12534
+ "type": "string",
12535
+ "minLength": 1,
12536
+ "maxLength": 64
12537
+ },
12538
+ "label": {
12539
+ "type": "string",
12540
+ "minLength": 1,
12541
+ "maxLength": 64
12542
+ },
12543
+ "default": {
12544
+ "type": "boolean"
12545
+ },
12546
+ "disabledReason": {
12547
+ "type": "string",
12548
+ "minLength": 1,
12549
+ "maxLength": 256
12291
12550
  }
12292
12551
  },
12293
12552
  "additionalProperties": false
12294
12553
  },
12295
12554
  "minItems": 1,
12296
- "maxItems": 32
12555
+ "maxItems": 8
12297
12556
  }
12298
12557
  },
12299
12558
  "additionalProperties": false
@@ -12493,6 +12752,10 @@
12493
12752
  "tunnelStatus"
12494
12753
  ],
12495
12754
  "properties": {
12755
+ "profileId": {
12756
+ "type": "string",
12757
+ "minLength": 1
12758
+ },
12496
12759
  "providerId": {
12497
12760
  "type": "string",
12498
12761
  "minLength": 1
@@ -12610,6 +12873,32 @@
12610
12873
  }
12611
12874
  },
12612
12875
  "additionalProperties": false
12876
+ },
12877
+ "preparation": {
12878
+ "type": "object",
12879
+ "required": [
12880
+ "purpose",
12881
+ "key"
12882
+ ],
12883
+ "properties": {
12884
+ "purpose": {
12885
+ "anyOf": [
12886
+ {
12887
+ "type": "string",
12888
+ "const": "reserve"
12889
+ },
12890
+ {
12891
+ "type": "string",
12892
+ "const": "build"
12893
+ }
12894
+ ]
12895
+ },
12896
+ "key": {
12897
+ "type": "string",
12898
+ "minLength": 1
12899
+ }
12900
+ },
12901
+ "additionalProperties": false
12613
12902
  }
12614
12903
  },
12615
12904
  "additionalProperties": false
@@ -15698,6 +15987,9 @@
15698
15987
  "not_git",
15699
15988
  "unavailable"
15700
15989
  ]
15990
+ },
15991
+ "branchesUnavailable": {
15992
+ "type": "boolean"
15701
15993
  }
15702
15994
  },
15703
15995
  "additionalProperties": false
@@ -22259,6 +22551,9 @@
22259
22551
  "label": {
22260
22552
  "type": "string"
22261
22553
  },
22554
+ "autoLabel": {
22555
+ "type": "string"
22556
+ },
22262
22557
  "icon": {
22263
22558
  "type": "string"
22264
22559
  },
@@ -24000,6 +24295,10 @@
24000
24295
  "type": "string",
24001
24296
  "const": "auto"
24002
24297
  },
24298
+ {
24299
+ "type": "string",
24300
+ "const": "inherited"
24301
+ },
24003
24302
  {
24004
24303
  "type": "null"
24005
24304
  }
@@ -31044,6 +31343,37 @@
31044
31343
  },
31045
31344
  "additionalProperties": false
31046
31345
  },
31346
+ "SessionPlacementMachine": {
31347
+ "type": "object",
31348
+ "properties": {
31349
+ "class": {
31350
+ "type": "string",
31351
+ "minLength": 1,
31352
+ "maxLength": 128
31353
+ },
31354
+ "os": {
31355
+ "type": "string",
31356
+ "minLength": 1,
31357
+ "maxLength": 64
31358
+ },
31359
+ "osLabel": {
31360
+ "type": "string",
31361
+ "minLength": 1,
31362
+ "maxLength": 64
31363
+ },
31364
+ "cpu": {
31365
+ "type": "integer",
31366
+ "minimum": 1,
31367
+ "maximum": 65536
31368
+ },
31369
+ "memoryGb": {
31370
+ "type": "integer",
31371
+ "minimum": 1,
31372
+ "maximum": 65536
31373
+ }
31374
+ },
31375
+ "additionalProperties": false
31376
+ },
31047
31377
  "LocalSessionPlacement": {
31048
31378
  "type": "object",
31049
31379
  "required": [
@@ -31160,6 +31490,37 @@
31160
31490
  "type": "string",
31161
31491
  "minLength": 1
31162
31492
  },
31493
+ "machine": {
31494
+ "type": "object",
31495
+ "properties": {
31496
+ "class": {
31497
+ "type": "string",
31498
+ "minLength": 1,
31499
+ "maxLength": 128
31500
+ },
31501
+ "os": {
31502
+ "type": "string",
31503
+ "minLength": 1,
31504
+ "maxLength": 64
31505
+ },
31506
+ "osLabel": {
31507
+ "type": "string",
31508
+ "minLength": 1,
31509
+ "maxLength": 64
31510
+ },
31511
+ "cpu": {
31512
+ "type": "integer",
31513
+ "minimum": 1,
31514
+ "maximum": 65536
31515
+ },
31516
+ "memoryGb": {
31517
+ "type": "integer",
31518
+ "minimum": 1,
31519
+ "maximum": 65536
31520
+ }
31521
+ },
31522
+ "additionalProperties": false
31523
+ },
31163
31524
  "environmentId": {
31164
31525
  "type": "string",
31165
31526
  "minLength": 1
@@ -31211,6 +31572,37 @@
31211
31572
  "type": "string",
31212
31573
  "minLength": 1
31213
31574
  },
31575
+ "machine": {
31576
+ "type": "object",
31577
+ "properties": {
31578
+ "class": {
31579
+ "type": "string",
31580
+ "minLength": 1,
31581
+ "maxLength": 128
31582
+ },
31583
+ "os": {
31584
+ "type": "string",
31585
+ "minLength": 1,
31586
+ "maxLength": 64
31587
+ },
31588
+ "osLabel": {
31589
+ "type": "string",
31590
+ "minLength": 1,
31591
+ "maxLength": 64
31592
+ },
31593
+ "cpu": {
31594
+ "type": "integer",
31595
+ "minimum": 1,
31596
+ "maximum": 65536
31597
+ },
31598
+ "memoryGb": {
31599
+ "type": "integer",
31600
+ "minimum": 1,
31601
+ "maximum": 65536
31602
+ }
31603
+ },
31604
+ "additionalProperties": false
31605
+ },
31214
31606
  "environmentId": {
31215
31607
  "type": "string",
31216
31608
  "minLength": 1
@@ -31270,6 +31662,37 @@
31270
31662
  "type": "string",
31271
31663
  "minLength": 1
31272
31664
  },
31665
+ "machine": {
31666
+ "type": "object",
31667
+ "properties": {
31668
+ "class": {
31669
+ "type": "string",
31670
+ "minLength": 1,
31671
+ "maxLength": 128
31672
+ },
31673
+ "os": {
31674
+ "type": "string",
31675
+ "minLength": 1,
31676
+ "maxLength": 64
31677
+ },
31678
+ "osLabel": {
31679
+ "type": "string",
31680
+ "minLength": 1,
31681
+ "maxLength": 64
31682
+ },
31683
+ "cpu": {
31684
+ "type": "integer",
31685
+ "minimum": 1,
31686
+ "maximum": 65536
31687
+ },
31688
+ "memoryGb": {
31689
+ "type": "integer",
31690
+ "minimum": 1,
31691
+ "maximum": 65536
31692
+ }
31693
+ },
31694
+ "additionalProperties": false
31695
+ },
31273
31696
  "environmentId": {
31274
31697
  "type": "string",
31275
31698
  "minLength": 1
@@ -31338,6 +31761,37 @@
31338
31761
  "type": "string",
31339
31762
  "minLength": 1
31340
31763
  },
31764
+ "machine": {
31765
+ "type": "object",
31766
+ "properties": {
31767
+ "class": {
31768
+ "type": "string",
31769
+ "minLength": 1,
31770
+ "maxLength": 128
31771
+ },
31772
+ "os": {
31773
+ "type": "string",
31774
+ "minLength": 1,
31775
+ "maxLength": 64
31776
+ },
31777
+ "osLabel": {
31778
+ "type": "string",
31779
+ "minLength": 1,
31780
+ "maxLength": 64
31781
+ },
31782
+ "cpu": {
31783
+ "type": "integer",
31784
+ "minimum": 1,
31785
+ "maximum": 65536
31786
+ },
31787
+ "memoryGb": {
31788
+ "type": "integer",
31789
+ "minimum": 1,
31790
+ "maximum": 65536
31791
+ }
31792
+ },
31793
+ "additionalProperties": false
31794
+ },
31341
31795
  "environmentId": {
31342
31796
  "type": "string",
31343
31797
  "minLength": 1
@@ -31442,6 +31896,10 @@
31442
31896
  },
31443
31897
  "additionalProperties": false
31444
31898
  },
31899
+ "workspaceResultReconciling": {
31900
+ "type": "boolean",
31901
+ "const": true
31902
+ },
31445
31903
  "runner": {
31446
31904
  "type": "object",
31447
31905
  "required": [
@@ -31524,6 +31982,37 @@
31524
31982
  "type": "string",
31525
31983
  "minLength": 1
31526
31984
  },
31985
+ "machine": {
31986
+ "type": "object",
31987
+ "properties": {
31988
+ "class": {
31989
+ "type": "string",
31990
+ "minLength": 1,
31991
+ "maxLength": 128
31992
+ },
31993
+ "os": {
31994
+ "type": "string",
31995
+ "minLength": 1,
31996
+ "maxLength": 64
31997
+ },
31998
+ "osLabel": {
31999
+ "type": "string",
32000
+ "minLength": 1,
32001
+ "maxLength": 64
32002
+ },
32003
+ "cpu": {
32004
+ "type": "integer",
32005
+ "minimum": 1,
32006
+ "maximum": 65536
32007
+ },
32008
+ "memoryGb": {
32009
+ "type": "integer",
32010
+ "minimum": 1,
32011
+ "maximum": 65536
32012
+ }
32013
+ },
32014
+ "additionalProperties": false
32015
+ },
31527
32016
  "environmentId": {
31528
32017
  "type": "string",
31529
32018
  "minLength": 1
@@ -31627,6 +32116,10 @@
31627
32116
  }
31628
32117
  },
31629
32118
  "additionalProperties": false
32119
+ },
32120
+ "workspaceResultReconciling": {
32121
+ "type": "boolean",
32122
+ "const": true
31630
32123
  }
31631
32124
  },
31632
32125
  "additionalProperties": false
@@ -31678,6 +32171,37 @@
31678
32171
  "type": "string",
31679
32172
  "minLength": 1
31680
32173
  },
32174
+ "machine": {
32175
+ "type": "object",
32176
+ "properties": {
32177
+ "class": {
32178
+ "type": "string",
32179
+ "minLength": 1,
32180
+ "maxLength": 128
32181
+ },
32182
+ "os": {
32183
+ "type": "string",
32184
+ "minLength": 1,
32185
+ "maxLength": 64
32186
+ },
32187
+ "osLabel": {
32188
+ "type": "string",
32189
+ "minLength": 1,
32190
+ "maxLength": 64
32191
+ },
32192
+ "cpu": {
32193
+ "type": "integer",
32194
+ "minimum": 1,
32195
+ "maximum": 65536
32196
+ },
32197
+ "memoryGb": {
32198
+ "type": "integer",
32199
+ "minimum": 1,
32200
+ "maximum": 65536
32201
+ }
32202
+ },
32203
+ "additionalProperties": false
32204
+ },
31681
32205
  "environmentId": {
31682
32206
  "type": "string",
31683
32207
  "minLength": 1
@@ -31827,6 +32351,37 @@
31827
32351
  "type": "string",
31828
32352
  "minLength": 1
31829
32353
  },
32354
+ "machine": {
32355
+ "type": "object",
32356
+ "properties": {
32357
+ "class": {
32358
+ "type": "string",
32359
+ "minLength": 1,
32360
+ "maxLength": 128
32361
+ },
32362
+ "os": {
32363
+ "type": "string",
32364
+ "minLength": 1,
32365
+ "maxLength": 64
32366
+ },
32367
+ "osLabel": {
32368
+ "type": "string",
32369
+ "minLength": 1,
32370
+ "maxLength": 64
32371
+ },
32372
+ "cpu": {
32373
+ "type": "integer",
32374
+ "minimum": 1,
32375
+ "maximum": 65536
32376
+ },
32377
+ "memoryGb": {
32378
+ "type": "integer",
32379
+ "minimum": 1,
32380
+ "maximum": 65536
32381
+ }
32382
+ },
32383
+ "additionalProperties": false
32384
+ },
31830
32385
  "environmentId": {
31831
32386
  "type": "string",
31832
32387
  "minLength": 1
@@ -31943,6 +32498,37 @@
31943
32498
  "type": "string",
31944
32499
  "minLength": 1
31945
32500
  },
32501
+ "machine": {
32502
+ "type": "object",
32503
+ "properties": {
32504
+ "class": {
32505
+ "type": "string",
32506
+ "minLength": 1,
32507
+ "maxLength": 128
32508
+ },
32509
+ "os": {
32510
+ "type": "string",
32511
+ "minLength": 1,
32512
+ "maxLength": 64
32513
+ },
32514
+ "osLabel": {
32515
+ "type": "string",
32516
+ "minLength": 1,
32517
+ "maxLength": 64
32518
+ },
32519
+ "cpu": {
32520
+ "type": "integer",
32521
+ "minimum": 1,
32522
+ "maximum": 65536
32523
+ },
32524
+ "memoryGb": {
32525
+ "type": "integer",
32526
+ "minimum": 1,
32527
+ "maximum": 65536
32528
+ }
32529
+ },
32530
+ "additionalProperties": false
32531
+ },
31946
32532
  "environmentId": {
31947
32533
  "type": "string",
31948
32534
  "minLength": 1
@@ -32145,6 +32731,37 @@
32145
32731
  "type": "string",
32146
32732
  "minLength": 1
32147
32733
  },
32734
+ "machine": {
32735
+ "type": "object",
32736
+ "properties": {
32737
+ "class": {
32738
+ "type": "string",
32739
+ "minLength": 1,
32740
+ "maxLength": 128
32741
+ },
32742
+ "os": {
32743
+ "type": "string",
32744
+ "minLength": 1,
32745
+ "maxLength": 64
32746
+ },
32747
+ "osLabel": {
32748
+ "type": "string",
32749
+ "minLength": 1,
32750
+ "maxLength": 64
32751
+ },
32752
+ "cpu": {
32753
+ "type": "integer",
32754
+ "minimum": 1,
32755
+ "maximum": 65536
32756
+ },
32757
+ "memoryGb": {
32758
+ "type": "integer",
32759
+ "minimum": 1,
32760
+ "maximum": 65536
32761
+ }
32762
+ },
32763
+ "additionalProperties": false
32764
+ },
32148
32765
  "environmentId": {
32149
32766
  "type": "string",
32150
32767
  "minLength": 1
@@ -32196,6 +32813,37 @@
32196
32813
  "type": "string",
32197
32814
  "minLength": 1
32198
32815
  },
32816
+ "machine": {
32817
+ "type": "object",
32818
+ "properties": {
32819
+ "class": {
32820
+ "type": "string",
32821
+ "minLength": 1,
32822
+ "maxLength": 128
32823
+ },
32824
+ "os": {
32825
+ "type": "string",
32826
+ "minLength": 1,
32827
+ "maxLength": 64
32828
+ },
32829
+ "osLabel": {
32830
+ "type": "string",
32831
+ "minLength": 1,
32832
+ "maxLength": 64
32833
+ },
32834
+ "cpu": {
32835
+ "type": "integer",
32836
+ "minimum": 1,
32837
+ "maximum": 65536
32838
+ },
32839
+ "memoryGb": {
32840
+ "type": "integer",
32841
+ "minimum": 1,
32842
+ "maximum": 65536
32843
+ }
32844
+ },
32845
+ "additionalProperties": false
32846
+ },
32199
32847
  "environmentId": {
32200
32848
  "type": "string",
32201
32849
  "minLength": 1
@@ -32255,6 +32903,37 @@
32255
32903
  "type": "string",
32256
32904
  "minLength": 1
32257
32905
  },
32906
+ "machine": {
32907
+ "type": "object",
32908
+ "properties": {
32909
+ "class": {
32910
+ "type": "string",
32911
+ "minLength": 1,
32912
+ "maxLength": 128
32913
+ },
32914
+ "os": {
32915
+ "type": "string",
32916
+ "minLength": 1,
32917
+ "maxLength": 64
32918
+ },
32919
+ "osLabel": {
32920
+ "type": "string",
32921
+ "minLength": 1,
32922
+ "maxLength": 64
32923
+ },
32924
+ "cpu": {
32925
+ "type": "integer",
32926
+ "minimum": 1,
32927
+ "maximum": 65536
32928
+ },
32929
+ "memoryGb": {
32930
+ "type": "integer",
32931
+ "minimum": 1,
32932
+ "maximum": 65536
32933
+ }
32934
+ },
32935
+ "additionalProperties": false
32936
+ },
32258
32937
  "environmentId": {
32259
32938
  "type": "string",
32260
32939
  "minLength": 1
@@ -32323,6 +33002,37 @@
32323
33002
  "type": "string",
32324
33003
  "minLength": 1
32325
33004
  },
33005
+ "machine": {
33006
+ "type": "object",
33007
+ "properties": {
33008
+ "class": {
33009
+ "type": "string",
33010
+ "minLength": 1,
33011
+ "maxLength": 128
33012
+ },
33013
+ "os": {
33014
+ "type": "string",
33015
+ "minLength": 1,
33016
+ "maxLength": 64
33017
+ },
33018
+ "osLabel": {
33019
+ "type": "string",
33020
+ "minLength": 1,
33021
+ "maxLength": 64
33022
+ },
33023
+ "cpu": {
33024
+ "type": "integer",
33025
+ "minimum": 1,
33026
+ "maximum": 65536
33027
+ },
33028
+ "memoryGb": {
33029
+ "type": "integer",
33030
+ "minimum": 1,
33031
+ "maximum": 65536
33032
+ }
33033
+ },
33034
+ "additionalProperties": false
33035
+ },
32326
33036
  "environmentId": {
32327
33037
  "type": "string",
32328
33038
  "minLength": 1
@@ -32427,6 +33137,10 @@
32427
33137
  },
32428
33138
  "additionalProperties": false
32429
33139
  },
33140
+ "workspaceResultReconciling": {
33141
+ "type": "boolean",
33142
+ "const": true
33143
+ },
32430
33144
  "runner": {
32431
33145
  "type": "object",
32432
33146
  "required": [
@@ -32509,6 +33223,37 @@
32509
33223
  "type": "string",
32510
33224
  "minLength": 1
32511
33225
  },
33226
+ "machine": {
33227
+ "type": "object",
33228
+ "properties": {
33229
+ "class": {
33230
+ "type": "string",
33231
+ "minLength": 1,
33232
+ "maxLength": 128
33233
+ },
33234
+ "os": {
33235
+ "type": "string",
33236
+ "minLength": 1,
33237
+ "maxLength": 64
33238
+ },
33239
+ "osLabel": {
33240
+ "type": "string",
33241
+ "minLength": 1,
33242
+ "maxLength": 64
33243
+ },
33244
+ "cpu": {
33245
+ "type": "integer",
33246
+ "minimum": 1,
33247
+ "maximum": 65536
33248
+ },
33249
+ "memoryGb": {
33250
+ "type": "integer",
33251
+ "minimum": 1,
33252
+ "maximum": 65536
33253
+ }
33254
+ },
33255
+ "additionalProperties": false
33256
+ },
32512
33257
  "environmentId": {
32513
33258
  "type": "string",
32514
33259
  "minLength": 1
@@ -32612,6 +33357,10 @@
32612
33357
  }
32613
33358
  },
32614
33359
  "additionalProperties": false
33360
+ },
33361
+ "workspaceResultReconciling": {
33362
+ "type": "boolean",
33363
+ "const": true
32615
33364
  }
32616
33365
  },
32617
33366
  "additionalProperties": false
@@ -32663,6 +33412,37 @@
32663
33412
  "type": "string",
32664
33413
  "minLength": 1
32665
33414
  },
33415
+ "machine": {
33416
+ "type": "object",
33417
+ "properties": {
33418
+ "class": {
33419
+ "type": "string",
33420
+ "minLength": 1,
33421
+ "maxLength": 128
33422
+ },
33423
+ "os": {
33424
+ "type": "string",
33425
+ "minLength": 1,
33426
+ "maxLength": 64
33427
+ },
33428
+ "osLabel": {
33429
+ "type": "string",
33430
+ "minLength": 1,
33431
+ "maxLength": 64
33432
+ },
33433
+ "cpu": {
33434
+ "type": "integer",
33435
+ "minimum": 1,
33436
+ "maximum": 65536
33437
+ },
33438
+ "memoryGb": {
33439
+ "type": "integer",
33440
+ "minimum": 1,
33441
+ "maximum": 65536
33442
+ }
33443
+ },
33444
+ "additionalProperties": false
33445
+ },
32666
33446
  "environmentId": {
32667
33447
  "type": "string",
32668
33448
  "minLength": 1
@@ -32812,6 +33592,37 @@
32812
33592
  "type": "string",
32813
33593
  "minLength": 1
32814
33594
  },
33595
+ "machine": {
33596
+ "type": "object",
33597
+ "properties": {
33598
+ "class": {
33599
+ "type": "string",
33600
+ "minLength": 1,
33601
+ "maxLength": 128
33602
+ },
33603
+ "os": {
33604
+ "type": "string",
33605
+ "minLength": 1,
33606
+ "maxLength": 64
33607
+ },
33608
+ "osLabel": {
33609
+ "type": "string",
33610
+ "minLength": 1,
33611
+ "maxLength": 64
33612
+ },
33613
+ "cpu": {
33614
+ "type": "integer",
33615
+ "minimum": 1,
33616
+ "maximum": 65536
33617
+ },
33618
+ "memoryGb": {
33619
+ "type": "integer",
33620
+ "minimum": 1,
33621
+ "maximum": 65536
33622
+ }
33623
+ },
33624
+ "additionalProperties": false
33625
+ },
32815
33626
  "environmentId": {
32816
33627
  "type": "string",
32817
33628
  "minLength": 1
@@ -32928,6 +33739,37 @@
32928
33739
  "type": "string",
32929
33740
  "minLength": 1
32930
33741
  },
33742
+ "machine": {
33743
+ "type": "object",
33744
+ "properties": {
33745
+ "class": {
33746
+ "type": "string",
33747
+ "minLength": 1,
33748
+ "maxLength": 128
33749
+ },
33750
+ "os": {
33751
+ "type": "string",
33752
+ "minLength": 1,
33753
+ "maxLength": 64
33754
+ },
33755
+ "osLabel": {
33756
+ "type": "string",
33757
+ "minLength": 1,
33758
+ "maxLength": 64
33759
+ },
33760
+ "cpu": {
33761
+ "type": "integer",
33762
+ "minimum": 1,
33763
+ "maximum": 65536
33764
+ },
33765
+ "memoryGb": {
33766
+ "type": "integer",
33767
+ "minimum": 1,
33768
+ "maximum": 65536
33769
+ }
33770
+ },
33771
+ "additionalProperties": false
33772
+ },
32931
33773
  "environmentId": {
32932
33774
  "type": "string",
32933
33775
  "minLength": 1
@@ -33044,6 +33886,11 @@
33044
33886
  "type": "string",
33045
33887
  "minLength": 1,
33046
33888
  "maxLength": 128
33889
+ },
33890
+ "os": {
33891
+ "type": "string",
33892
+ "minLength": 1,
33893
+ "maxLength": 64
33047
33894
  }
33048
33895
  },
33049
33896
  "additionalProperties": false,
@@ -33087,6 +33934,11 @@
33087
33934
  "required": [
33088
33935
  "machineClass"
33089
33936
  ]
33937
+ },
33938
+ {
33939
+ "required": [
33940
+ "os"
33941
+ ]
33090
33942
  }
33091
33943
  ]
33092
33944
  }
@@ -33111,6 +33963,11 @@
33111
33963
  "required": [
33112
33964
  "machineClass"
33113
33965
  ]
33966
+ },
33967
+ {
33968
+ "required": [
33969
+ "os"
33970
+ ]
33114
33971
  }
33115
33972
  ]
33116
33973
  }
@@ -33137,6 +33994,11 @@
33137
33994
  "required": [
33138
33995
  "machineClass"
33139
33996
  ]
33997
+ },
33998
+ {
33999
+ "required": [
34000
+ "os"
34001
+ ]
33140
34002
  }
33141
34003
  ]
33142
34004
  }
@@ -33211,6 +34073,37 @@
33211
34073
  "type": "string",
33212
34074
  "minLength": 1
33213
34075
  },
34076
+ "machine": {
34077
+ "type": "object",
34078
+ "properties": {
34079
+ "class": {
34080
+ "type": "string",
34081
+ "minLength": 1,
34082
+ "maxLength": 128
34083
+ },
34084
+ "os": {
34085
+ "type": "string",
34086
+ "minLength": 1,
34087
+ "maxLength": 64
34088
+ },
34089
+ "osLabel": {
34090
+ "type": "string",
34091
+ "minLength": 1,
34092
+ "maxLength": 64
34093
+ },
34094
+ "cpu": {
34095
+ "type": "integer",
34096
+ "minimum": 1,
34097
+ "maximum": 65536
34098
+ },
34099
+ "memoryGb": {
34100
+ "type": "integer",
34101
+ "minimum": 1,
34102
+ "maximum": 65536
34103
+ }
34104
+ },
34105
+ "additionalProperties": false
34106
+ },
33214
34107
  "environmentId": {
33215
34108
  "type": "string",
33216
34109
  "minLength": 1
@@ -33315,6 +34208,10 @@
33315
34208
  },
33316
34209
  "additionalProperties": false
33317
34210
  },
34211
+ "workspaceResultReconciling": {
34212
+ "type": "boolean",
34213
+ "const": true
34214
+ },
33318
34215
  "runner": {
33319
34216
  "type": "object",
33320
34217
  "required": [
@@ -33451,6 +34348,37 @@
33451
34348
  "type": "string",
33452
34349
  "minLength": 1
33453
34350
  },
34351
+ "machine": {
34352
+ "type": "object",
34353
+ "properties": {
34354
+ "class": {
34355
+ "type": "string",
34356
+ "minLength": 1,
34357
+ "maxLength": 128
34358
+ },
34359
+ "os": {
34360
+ "type": "string",
34361
+ "minLength": 1,
34362
+ "maxLength": 64
34363
+ },
34364
+ "osLabel": {
34365
+ "type": "string",
34366
+ "minLength": 1,
34367
+ "maxLength": 64
34368
+ },
34369
+ "cpu": {
34370
+ "type": "integer",
34371
+ "minimum": 1,
34372
+ "maximum": 65536
34373
+ },
34374
+ "memoryGb": {
34375
+ "type": "integer",
34376
+ "minimum": 1,
34377
+ "maximum": 65536
34378
+ }
34379
+ },
34380
+ "additionalProperties": false
34381
+ },
33454
34382
  "environmentId": {
33455
34383
  "type": "string",
33456
34384
  "minLength": 1
@@ -33628,6 +34556,37 @@
33628
34556
  "type": "string",
33629
34557
  "minLength": 1
33630
34558
  },
34559
+ "machine": {
34560
+ "type": "object",
34561
+ "properties": {
34562
+ "class": {
34563
+ "type": "string",
34564
+ "minLength": 1,
34565
+ "maxLength": 128
34566
+ },
34567
+ "os": {
34568
+ "type": "string",
34569
+ "minLength": 1,
34570
+ "maxLength": 64
34571
+ },
34572
+ "osLabel": {
34573
+ "type": "string",
34574
+ "minLength": 1,
34575
+ "maxLength": 64
34576
+ },
34577
+ "cpu": {
34578
+ "type": "integer",
34579
+ "minimum": 1,
34580
+ "maximum": 65536
34581
+ },
34582
+ "memoryGb": {
34583
+ "type": "integer",
34584
+ "minimum": 1,
34585
+ "maximum": 65536
34586
+ }
34587
+ },
34588
+ "additionalProperties": false
34589
+ },
33631
34590
  "environmentId": {
33632
34591
  "type": "string",
33633
34592
  "minLength": 1
@@ -33767,6 +34726,11 @@
33767
34726
  "type": "string",
33768
34727
  "minLength": 1,
33769
34728
  "maxLength": 128
34729
+ },
34730
+ "os": {
34731
+ "type": "string",
34732
+ "minLength": 1,
34733
+ "maxLength": 64
33770
34734
  }
33771
34735
  },
33772
34736
  "additionalProperties": false
@@ -33827,6 +34791,11 @@
33827
34791
  "type": "string",
33828
34792
  "minLength": 1,
33829
34793
  "maxLength": 128
34794
+ },
34795
+ "os": {
34796
+ "type": "string",
34797
+ "minLength": 1,
34798
+ "maxLength": 64
33830
34799
  }
33831
34800
  },
33832
34801
  "additionalProperties": false
@@ -33896,6 +34865,11 @@
33896
34865
  "type": "string",
33897
34866
  "minLength": 1,
33898
34867
  "maxLength": 128
34868
+ },
34869
+ "os": {
34870
+ "type": "string",
34871
+ "minLength": 1,
34872
+ "maxLength": 64
33899
34873
  }
33900
34874
  },
33901
34875
  "additionalProperties": false
@@ -34014,6 +34988,11 @@
34014
34988
  "type": "string",
34015
34989
  "minLength": 1,
34016
34990
  "maxLength": 128
34991
+ },
34992
+ "os": {
34993
+ "type": "string",
34994
+ "minLength": 1,
34995
+ "maxLength": 64
34017
34996
  }
34018
34997
  },
34019
34998
  "additionalProperties": false
@@ -34099,6 +35078,11 @@
34099
35078
  "type": "string",
34100
35079
  "minLength": 1,
34101
35080
  "maxLength": 128
35081
+ },
35082
+ "os": {
35083
+ "type": "string",
35084
+ "minLength": 1,
35085
+ "maxLength": 64
34102
35086
  }
34103
35087
  },
34104
35088
  "additionalProperties": false
@@ -36599,6 +37583,11 @@
36599
37583
  "maxLength": 500,
36600
37584
  "description": "Prepared presentation title for a newly created session. Unlike label it is not unique and never claims a label; ignored when adopting an existing key."
36601
37585
  },
37586
+ "titleSource": {
37587
+ "type": "string",
37588
+ "maxLength": 1000,
37589
+ "description": "Submitted topic for background naming when the first turn is sent separately. Does not start a turn; ignored when adopting an existing session."
37590
+ },
36602
37591
  "category": {
36603
37592
  "type": "string",
36604
37593
  "minLength": 1,
@@ -36736,6 +37725,10 @@
36736
37725
  "type": "boolean",
36737
37726
  "description": "When sessions.create creates a distinct child, whether that child succeeds its parent and emits the parent's terminal session_end. Requires parentSessionKey and emitCommandHooks. False keeps the parent active; omission preserves legacy behavior."
36738
37727
  },
37728
+ "timeoutMs": {
37729
+ "type": "integer",
37730
+ "minimum": 0
37731
+ },
36739
37732
  "task": {
36740
37733
  "type": "string"
36741
37734
  },
@@ -37410,6 +38403,18 @@
37410
38403
  }
37411
38404
  ]
37412
38405
  },
38406
+ "autoLabel": {
38407
+ "anyOf": [
38408
+ {
38409
+ "type": "string",
38410
+ "minLength": 1,
38411
+ "maxLength": 512
38412
+ },
38413
+ {
38414
+ "type": "null"
38415
+ }
38416
+ ]
38417
+ },
37413
38418
  "icon": {
37414
38419
  "anyOf": [
37415
38420
  {
@@ -37826,6 +38831,18 @@
37826
38831
  }
37827
38832
  ]
37828
38833
  },
38834
+ "autoLabel": {
38835
+ "anyOf": [
38836
+ {
38837
+ "type": "string",
38838
+ "minLength": 1,
38839
+ "maxLength": 512
38840
+ },
38841
+ {
38842
+ "type": "null"
38843
+ }
38844
+ ]
38845
+ },
37829
38846
  "icon": {
37830
38847
  "anyOf": [
37831
38848
  {
@@ -38305,6 +39322,18 @@
38305
39322
  }
38306
39323
  ]
38307
39324
  },
39325
+ "autoLabel": {
39326
+ "anyOf": [
39327
+ {
39328
+ "type": "string",
39329
+ "minLength": 1,
39330
+ "maxLength": 512
39331
+ },
39332
+ {
39333
+ "type": "null"
39334
+ }
39335
+ ]
39336
+ },
38308
39337
  "icon": {
38309
39338
  "anyOf": [
38310
39339
  {
@@ -52946,6 +53975,9 @@
52946
53975
  "childSessionKey": {
52947
53976
  "type": "string"
52948
53977
  },
53978
+ "hasTranscript": {
53979
+ "type": "boolean"
53980
+ },
52949
53981
  "ownerKey": {
52950
53982
  "type": "string"
52951
53983
  },
@@ -53265,6 +54297,9 @@
53265
54297
  "childSessionKey": {
53266
54298
  "type": "string"
53267
54299
  },
54300
+ "hasTranscript": {
54301
+ "type": "boolean"
54302
+ },
53268
54303
  "ownerKey": {
53269
54304
  "type": "string"
53270
54305
  },
@@ -53509,6 +54544,9 @@
53509
54544
  "childSessionKey": {
53510
54545
  "type": "string"
53511
54546
  },
54547
+ "hasTranscript": {
54548
+ "type": "boolean"
54549
+ },
53512
54550
  "ownerKey": {
53513
54551
  "type": "string"
53514
54552
  },
@@ -53672,6 +54710,46 @@
53672
54710
  },
53673
54711
  "additionalProperties": false
53674
54712
  },
54713
+ "TasksHistoryParams": {
54714
+ "type": "object",
54715
+ "required": [
54716
+ "taskId"
54717
+ ],
54718
+ "properties": {
54719
+ "taskId": {
54720
+ "type": "string",
54721
+ "minLength": 1
54722
+ },
54723
+ "cursor": {
54724
+ "type": "string",
54725
+ "minLength": 1,
54726
+ "maxLength": 8192
54727
+ },
54728
+ "limit": {
54729
+ "type": "integer",
54730
+ "minimum": 1,
54731
+ "maximum": 200
54732
+ }
54733
+ },
54734
+ "additionalProperties": false
54735
+ },
54736
+ "TasksHistoryResult": {
54737
+ "type": "object",
54738
+ "required": [
54739
+ "messages"
54740
+ ],
54741
+ "properties": {
54742
+ "messages": {
54743
+ "type": "array",
54744
+ "items": {}
54745
+ },
54746
+ "nextCursor": {
54747
+ "type": "string",
54748
+ "maxLength": 8192
54749
+ }
54750
+ },
54751
+ "additionalProperties": false
54752
+ },
53675
54753
  "TasksCancelParams": {
53676
54754
  "type": "object",
53677
54755
  "required": [
@@ -53761,6 +54839,9 @@
53761
54839
  "childSessionKey": {
53762
54840
  "type": "string"
53763
54841
  },
54842
+ "hasTranscript": {
54843
+ "type": "boolean"
54844
+ },
53764
54845
  "ownerKey": {
53765
54846
  "type": "string"
53766
54847
  },
@@ -54027,6 +55108,9 @@
54027
55108
  "childSessionKey": {
54028
55109
  "type": "string"
54029
55110
  },
55111
+ "hasTranscript": {
55112
+ "type": "boolean"
55113
+ },
54030
55114
  "ownerKey": {
54031
55115
  "type": "string"
54032
55116
  },
@@ -62528,6 +63612,12 @@
62528
63612
  "type": "integer",
62529
63613
  "minimum": 0
62530
63614
  },
63615
+ "hash": {
63616
+ "type": "string",
63617
+ "minLength": 64,
63618
+ "maxLength": 64,
63619
+ "pattern": "^[a-fA-F0-9]{64}$"
63620
+ },
62531
63621
  "content": {
62532
63622
  "type": "string"
62533
63623
  }
@@ -62595,6 +63685,12 @@
62595
63685
  "type": "integer",
62596
63686
  "minimum": 0
62597
63687
  },
63688
+ "hash": {
63689
+ "type": "string",
63690
+ "minLength": 64,
63691
+ "maxLength": 64,
63692
+ "pattern": "^[a-fA-F0-9]{64}$"
63693
+ },
62598
63694
  "content": {
62599
63695
  "type": "string"
62600
63696
  }
@@ -62669,6 +63765,12 @@
62669
63765
  "type": "integer",
62670
63766
  "minimum": 0
62671
63767
  },
63768
+ "hash": {
63769
+ "type": "string",
63770
+ "minLength": 64,
63771
+ "maxLength": 64,
63772
+ "pattern": "^[a-fA-F0-9]{64}$"
63773
+ },
62672
63774
  "content": {
62673
63775
  "type": "string"
62674
63776
  }
@@ -62696,6 +63798,12 @@
62696
63798
  },
62697
63799
  "content": {
62698
63800
  "type": "string"
63801
+ },
63802
+ "expectedHash": {
63803
+ "type": "string",
63804
+ "minLength": 64,
63805
+ "maxLength": 64,
63806
+ "pattern": "^[a-fA-F0-9]{64}$"
62699
63807
  }
62700
63808
  },
62701
63809
  "additionalProperties": false
@@ -62751,6 +63859,12 @@
62751
63859
  "type": "integer",
62752
63860
  "minimum": 0
62753
63861
  },
63862
+ "hash": {
63863
+ "type": "string",
63864
+ "minLength": 64,
63865
+ "maxLength": 64,
63866
+ "pattern": "^[a-fA-F0-9]{64}$"
63867
+ },
62754
63868
  "content": {
62755
63869
  "type": "string"
62756
63870
  }
@@ -63843,6 +64957,13 @@
63843
64957
  "type": "integer",
63844
64958
  "minimum": 1
63845
64959
  },
64960
+ "contextTokens": {
64961
+ "type": "integer",
64962
+ "minimum": 1
64963
+ },
64964
+ "local": {
64965
+ "type": "boolean"
64966
+ },
63846
64967
  "contextWindows": {
63847
64968
  "type": "array",
63848
64969
  "items": {
@@ -63912,6 +65033,9 @@
63912
65033
  }
63913
65034
  ]
63914
65035
  },
65036
+ "supportsFastMode": {
65037
+ "type": "boolean"
65038
+ },
63915
65039
  "supportsTools": {
63916
65040
  "type": "boolean"
63917
65041
  },
@@ -64119,6 +65243,22 @@
64119
65243
  "type": "string",
64120
65244
  "minLength": 1
64121
65245
  },
65246
+ "sessionKey": {
65247
+ "type": "string",
65248
+ "minLength": 1
65249
+ },
65250
+ "authProfileId": {
65251
+ "type": "string",
65252
+ "minLength": 1,
65253
+ "maxLength": 256
65254
+ },
65255
+ "provider": {
65256
+ "type": "string",
65257
+ "minLength": 1
65258
+ },
65259
+ "includeDetails": {
65260
+ "type": "boolean"
65261
+ },
64122
65262
  "includeProviderCapabilities": {
64123
65263
  "type": "boolean"
64124
65264
  },
@@ -64150,20 +65290,32 @@
64150
65290
  }
64151
65291
  },
64152
65292
  "additionalProperties": false,
64153
- "not": {
64154
- "properties": {
64155
- "preparedOnly": {
64156
- "const": true
64157
- },
64158
- "refresh": {
64159
- "const": true
65293
+ "allOf": [
65294
+ {
65295
+ "not": {
65296
+ "properties": {
65297
+ "preparedOnly": {
65298
+ "const": true
65299
+ },
65300
+ "refresh": {
65301
+ "const": true
65302
+ }
65303
+ },
65304
+ "required": [
65305
+ "preparedOnly",
65306
+ "refresh"
65307
+ ]
64160
65308
  }
64161
65309
  },
64162
- "required": [
64163
- "preparedOnly",
64164
- "refresh"
64165
- ]
64166
- }
65310
+ {
65311
+ "not": {
65312
+ "required": [
65313
+ "sessionKey",
65314
+ "authProfileId"
65315
+ ]
65316
+ }
65317
+ }
65318
+ ]
64167
65319
  },
64168
65320
  "ModelsListResult": {
64169
65321
  "type": "object",
@@ -64231,6 +65383,13 @@
64231
65383
  "type": "integer",
64232
65384
  "minimum": 1
64233
65385
  },
65386
+ "contextTokens": {
65387
+ "type": "integer",
65388
+ "minimum": 1
65389
+ },
65390
+ "local": {
65391
+ "type": "boolean"
65392
+ },
64234
65393
  "contextWindows": {
64235
65394
  "type": "array",
64236
65395
  "items": {
@@ -64300,6 +65459,9 @@
64300
65459
  }
64301
65460
  ]
64302
65461
  },
65462
+ "supportsFastMode": {
65463
+ "type": "boolean"
65464
+ },
64303
65465
  "supportsTools": {
64304
65466
  "type": "boolean"
64305
65467
  },
@@ -64440,6 +65602,113 @@
64440
65602
  "additionalProperties": false
64441
65603
  }
64442
65604
  },
65605
+ "refreshFailed": {
65606
+ "type": "boolean"
65607
+ },
65608
+ "accountSelection": {
65609
+ "anyOf": [
65610
+ {
65611
+ "type": "object",
65612
+ "required": [
65613
+ "kind",
65614
+ "label"
65615
+ ],
65616
+ "properties": {
65617
+ "kind": {
65618
+ "type": "string",
65619
+ "const": "automatic"
65620
+ },
65621
+ "label": {
65622
+ "type": "string",
65623
+ "minLength": 1,
65624
+ "maxLength": 256
65625
+ }
65626
+ },
65627
+ "additionalProperties": false
65628
+ },
65629
+ {
65630
+ "type": "object",
65631
+ "required": [
65632
+ "kind",
65633
+ "label"
65634
+ ],
65635
+ "properties": {
65636
+ "kind": {
65637
+ "type": "string",
65638
+ "const": "personal"
65639
+ },
65640
+ "label": {
65641
+ "type": "string",
65642
+ "minLength": 1,
65643
+ "maxLength": 256
65644
+ },
65645
+ "authProfileId": {
65646
+ "type": "string",
65647
+ "minLength": 1,
65648
+ "maxLength": 256
65649
+ },
65650
+ "source": {
65651
+ "anyOf": [
65652
+ {
65653
+ "type": "string",
65654
+ "const": "auto"
65655
+ },
65656
+ {
65657
+ "type": "string",
65658
+ "const": "user"
65659
+ },
65660
+ {
65661
+ "type": "string",
65662
+ "const": "user-link"
65663
+ }
65664
+ ]
65665
+ }
65666
+ },
65667
+ "additionalProperties": false
65668
+ },
65669
+ {
65670
+ "type": "object",
65671
+ "required": [
65672
+ "kind",
65673
+ "label",
65674
+ "authProfileId"
65675
+ ],
65676
+ "properties": {
65677
+ "kind": {
65678
+ "type": "string",
65679
+ "const": "shared"
65680
+ },
65681
+ "label": {
65682
+ "type": "string",
65683
+ "minLength": 1,
65684
+ "maxLength": 256
65685
+ },
65686
+ "authProfileId": {
65687
+ "type": "string",
65688
+ "minLength": 1,
65689
+ "maxLength": 256
65690
+ },
65691
+ "source": {
65692
+ "anyOf": [
65693
+ {
65694
+ "type": "string",
65695
+ "const": "auto"
65696
+ },
65697
+ {
65698
+ "type": "string",
65699
+ "const": "user"
65700
+ },
65701
+ {
65702
+ "type": "string",
65703
+ "const": "user-link"
65704
+ }
65705
+ ]
65706
+ }
65707
+ },
65708
+ "additionalProperties": false
65709
+ }
65710
+ ]
65711
+ },
64443
65712
  "providerOutcomes": {
64444
65713
  "type": "array",
64445
65714
  "items": {
@@ -68694,6 +69963,7 @@
68694
69963
  "required": [
68695
69964
  "score",
68696
69965
  "slug",
69966
+ "registry",
68697
69967
  "installRef",
68698
69968
  "displayName"
68699
69969
  ],
@@ -68705,6 +69975,21 @@
68705
69975
  "type": "string",
68706
69976
  "minLength": 1
68707
69977
  },
69978
+ "registry": {
69979
+ "type": "string",
69980
+ "minLength": 1
69981
+ },
69982
+ "ownerHandle": {
69983
+ "anyOf": [
69984
+ {
69985
+ "type": "string",
69986
+ "minLength": 1
69987
+ },
69988
+ {
69989
+ "type": "null"
69990
+ }
69991
+ ]
69992
+ },
68708
69993
  "installRef": {
68709
69994
  "type": "string",
68710
69995
  "minLength": 1,
@@ -68793,6 +70078,16 @@
68793
70078
  "summary": {
68794
70079
  "type": "string"
68795
70080
  },
70081
+ "icon": {
70082
+ "anyOf": [
70083
+ {
70084
+ "type": "string"
70085
+ },
70086
+ {
70087
+ "type": "null"
70088
+ }
70089
+ ]
70090
+ },
68796
70091
  "tags": {
68797
70092
  "type": "object",
68798
70093
  "patternProperties": {
@@ -86663,6 +87958,10 @@
86663
87958
  "type": "integer",
86664
87959
  "minimum": 0,
86665
87960
  "maximum": 16777216
87961
+ },
87962
+ "uploadPathStyle": {
87963
+ "type": "string",
87964
+ "const": "native"
86666
87965
  }
86667
87966
  },
86668
87967
  "additionalProperties": false
@@ -116876,6 +118175,12 @@
116876
118175
  "type": "string",
116877
118176
  "minLength": 1
116878
118177
  },
118178
+ "url": {
118179
+ "type": "string",
118180
+ "minLength": 1,
118181
+ "maxLength": 2048,
118182
+ "x-openclaw-since": "2026.8"
118183
+ },
116879
118184
  "options": {
116880
118185
  "type": "array",
116881
118186
  "items": {
@@ -116990,6 +118295,12 @@
116990
118295
  "type": "string",
116991
118296
  "minLength": 1
116992
118297
  },
118298
+ "url": {
118299
+ "type": "string",
118300
+ "minLength": 1,
118301
+ "maxLength": 2048,
118302
+ "x-openclaw-since": "2026.8"
118303
+ },
116993
118304
  "options": {
116994
118305
  "type": "array",
116995
118306
  "items": {
@@ -117142,6 +118453,12 @@
117142
118453
  "type": "string",
117143
118454
  "minLength": 1
117144
118455
  },
118456
+ "url": {
118457
+ "type": "string",
118458
+ "minLength": 1,
118459
+ "maxLength": 2048,
118460
+ "x-openclaw-since": "2026.8"
118461
+ },
117145
118462
  "options": {
117146
118463
  "type": "array",
117147
118464
  "items": {
@@ -117339,6 +118656,12 @@
117339
118656
  "type": "string",
117340
118657
  "minLength": 1
117341
118658
  },
118659
+ "url": {
118660
+ "type": "string",
118661
+ "minLength": 1,
118662
+ "maxLength": 2048,
118663
+ "x-openclaw-since": "2026.8"
118664
+ },
117342
118665
  "options": {
117343
118666
  "type": "array",
117344
118667
  "items": {
@@ -117746,6 +119069,12 @@
117746
119069
  "type": "string",
117747
119070
  "minLength": 1
117748
119071
  },
119072
+ "url": {
119073
+ "type": "string",
119074
+ "minLength": 1,
119075
+ "maxLength": 2048,
119076
+ "x-openclaw-since": "2026.8"
119077
+ },
117749
119078
  "options": {
117750
119079
  "type": "array",
117751
119080
  "items": {
@@ -117963,6 +119292,12 @@
117963
119292
  "type": "string",
117964
119293
  "minLength": 1
117965
119294
  },
119295
+ "url": {
119296
+ "type": "string",
119297
+ "minLength": 1,
119298
+ "maxLength": 2048,
119299
+ "x-openclaw-since": "2026.8"
119300
+ },
117966
119301
  "options": {
117967
119302
  "type": "array",
117968
119303
  "items": {
@@ -118713,6 +120048,14 @@
118713
120048
  "type": "string",
118714
120049
  "minLength": 1
118715
120050
  },
120051
+ "clawhubPackage": {
120052
+ "type": "string",
120053
+ "minLength": 1
120054
+ },
120055
+ "catalogId": {
120056
+ "type": "string",
120057
+ "minLength": 1
120058
+ },
118716
120059
  "description": {
118717
120060
  "type": "string"
118718
120061
  },
@@ -118747,6 +120090,10 @@
118747
120090
  "type": "string",
118748
120091
  "const": "disabled"
118749
120092
  },
120093
+ {
120094
+ "type": "string",
120095
+ "const": "needs-setup"
120096
+ },
118750
120097
  {
118751
120098
  "type": "string",
118752
120099
  "const": "not-installed"
@@ -118813,6 +120160,15 @@
118813
120160
  "error": {
118814
120161
  "type": "string"
118815
120162
  },
120163
+ "categories": {
120164
+ "type": "array",
120165
+ "items": {
120166
+ "type": "string",
120167
+ "minLength": 1
120168
+ },
120169
+ "minItems": 1,
120170
+ "maxItems": 3
120171
+ },
118816
120172
  "category": {
118817
120173
  "type": "string",
118818
120174
  "minLength": 1
@@ -119532,6 +120888,424 @@
119532
120888
  },
119533
120889
  "additionalProperties": false
119534
120890
  },
120891
+ "PluginDiscoveryCategory": {
120892
+ "type": "object",
120893
+ "required": [
120894
+ "slug",
120895
+ "label",
120896
+ "description",
120897
+ "icon",
120898
+ "order"
120899
+ ],
120900
+ "properties": {
120901
+ "slug": {
120902
+ "type": "string",
120903
+ "minLength": 1
120904
+ },
120905
+ "label": {
120906
+ "type": "string",
120907
+ "minLength": 1
120908
+ },
120909
+ "description": {
120910
+ "type": "string",
120911
+ "minLength": 1
120912
+ },
120913
+ "icon": {
120914
+ "type": "string",
120915
+ "minLength": 1,
120916
+ "maxLength": 64,
120917
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
120918
+ },
120919
+ "order": {
120920
+ "type": "integer",
120921
+ "minimum": 0
120922
+ }
120923
+ },
120924
+ "additionalProperties": false
120925
+ },
120926
+ "PluginDiscoveryCatalogFacts": {
120927
+ "type": "object",
120928
+ "required": [
120929
+ "name",
120930
+ "official",
120931
+ "categories"
120932
+ ],
120933
+ "properties": {
120934
+ "name": {
120935
+ "type": "string",
120936
+ "minLength": 1
120937
+ },
120938
+ "packageName": {
120939
+ "type": "string",
120940
+ "minLength": 1
120941
+ },
120942
+ "summary": {
120943
+ "type": "string"
120944
+ },
120945
+ "family": {
120946
+ "anyOf": [
120947
+ {
120948
+ "type": "string",
120949
+ "const": "code-plugin"
120950
+ },
120951
+ {
120952
+ "type": "string",
120953
+ "const": "bundle-plugin"
120954
+ }
120955
+ ]
120956
+ },
120957
+ "author": {
120958
+ "type": "string",
120959
+ "minLength": 1
120960
+ },
120961
+ "official": {
120962
+ "type": "boolean"
120963
+ },
120964
+ "categories": {
120965
+ "type": "array",
120966
+ "items": {
120967
+ "type": "string",
120968
+ "minLength": 1
120969
+ }
120970
+ },
120971
+ "icon": {
120972
+ "type": "string",
120973
+ "minLength": 1,
120974
+ "maxLength": 64,
120975
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
120976
+ },
120977
+ "imageUrl": {
120978
+ "type": "string",
120979
+ "minLength": 1
120980
+ },
120981
+ "latestVersion": {
120982
+ "type": "string",
120983
+ "minLength": 1
120984
+ },
120985
+ "downloads": {
120986
+ "type": "number",
120987
+ "minimum": 0
120988
+ },
120989
+ "installs": {
120990
+ "type": "number",
120991
+ "minimum": 0
120992
+ },
120993
+ "verificationTier": {
120994
+ "type": "string",
120995
+ "minLength": 1
120996
+ },
120997
+ "publishedToClawHub": {
120998
+ "type": "boolean"
120999
+ }
121000
+ },
121001
+ "additionalProperties": false
121002
+ },
121003
+ "PluginDiscoveryLocalFacts": {
121004
+ "type": "object",
121005
+ "required": [
121006
+ "present",
121007
+ "installed",
121008
+ "enabled",
121009
+ "state",
121010
+ "action"
121011
+ ],
121012
+ "properties": {
121013
+ "present": {
121014
+ "type": "boolean"
121015
+ },
121016
+ "installed": {
121017
+ "type": "boolean"
121018
+ },
121019
+ "enabled": {
121020
+ "type": "boolean"
121021
+ },
121022
+ "state": {
121023
+ "anyOf": [
121024
+ {
121025
+ "type": "string",
121026
+ "const": "enabled"
121027
+ },
121028
+ {
121029
+ "type": "string",
121030
+ "const": "disabled"
121031
+ },
121032
+ {
121033
+ "type": "string",
121034
+ "const": "needs-setup"
121035
+ },
121036
+ {
121037
+ "type": "string",
121038
+ "const": "not-installed"
121039
+ },
121040
+ {
121041
+ "type": "string",
121042
+ "const": "error"
121043
+ }
121044
+ ]
121045
+ },
121046
+ "pluginId": {
121047
+ "type": "string",
121048
+ "minLength": 1
121049
+ },
121050
+ "install": {
121051
+ "anyOf": [
121052
+ {
121053
+ "type": "object",
121054
+ "required": [
121055
+ "source",
121056
+ "packageName"
121057
+ ],
121058
+ "properties": {
121059
+ "source": {
121060
+ "type": "string",
121061
+ "const": "clawhub"
121062
+ },
121063
+ "packageName": {
121064
+ "type": "string",
121065
+ "minLength": 1
121066
+ }
121067
+ },
121068
+ "additionalProperties": false
121069
+ },
121070
+ {
121071
+ "type": "object",
121072
+ "required": [
121073
+ "source",
121074
+ "pluginId"
121075
+ ],
121076
+ "properties": {
121077
+ "source": {
121078
+ "type": "string",
121079
+ "const": "official"
121080
+ },
121081
+ "pluginId": {
121082
+ "type": "string",
121083
+ "minLength": 1
121084
+ }
121085
+ },
121086
+ "additionalProperties": false
121087
+ }
121088
+ ]
121089
+ },
121090
+ "action": {
121091
+ "anyOf": [
121092
+ {
121093
+ "type": "string",
121094
+ "const": "install"
121095
+ },
121096
+ {
121097
+ "type": "string",
121098
+ "const": "manage"
121099
+ },
121100
+ {
121101
+ "type": "string",
121102
+ "const": "unavailable"
121103
+ }
121104
+ ]
121105
+ }
121106
+ },
121107
+ "additionalProperties": false
121108
+ },
121109
+ "PluginDiscoveryEntry": {
121110
+ "type": "object",
121111
+ "required": [
121112
+ "id",
121113
+ "catalog",
121114
+ "local"
121115
+ ],
121116
+ "properties": {
121117
+ "id": {
121118
+ "type": "string",
121119
+ "minLength": 1,
121120
+ "maxLength": 512,
121121
+ "pattern": "^[A-Za-z0-9_-]+$"
121122
+ },
121123
+ "catalog": {
121124
+ "type": "object",
121125
+ "required": [
121126
+ "name",
121127
+ "official",
121128
+ "categories"
121129
+ ],
121130
+ "properties": {
121131
+ "name": {
121132
+ "type": "string",
121133
+ "minLength": 1
121134
+ },
121135
+ "packageName": {
121136
+ "type": "string",
121137
+ "minLength": 1
121138
+ },
121139
+ "summary": {
121140
+ "type": "string"
121141
+ },
121142
+ "family": {
121143
+ "anyOf": [
121144
+ {
121145
+ "type": "string",
121146
+ "const": "code-plugin"
121147
+ },
121148
+ {
121149
+ "type": "string",
121150
+ "const": "bundle-plugin"
121151
+ }
121152
+ ]
121153
+ },
121154
+ "author": {
121155
+ "type": "string",
121156
+ "minLength": 1
121157
+ },
121158
+ "official": {
121159
+ "type": "boolean"
121160
+ },
121161
+ "categories": {
121162
+ "type": "array",
121163
+ "items": {
121164
+ "type": "string",
121165
+ "minLength": 1
121166
+ }
121167
+ },
121168
+ "icon": {
121169
+ "type": "string",
121170
+ "minLength": 1,
121171
+ "maxLength": 64,
121172
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
121173
+ },
121174
+ "imageUrl": {
121175
+ "type": "string",
121176
+ "minLength": 1
121177
+ },
121178
+ "latestVersion": {
121179
+ "type": "string",
121180
+ "minLength": 1
121181
+ },
121182
+ "downloads": {
121183
+ "type": "number",
121184
+ "minimum": 0
121185
+ },
121186
+ "installs": {
121187
+ "type": "number",
121188
+ "minimum": 0
121189
+ },
121190
+ "verificationTier": {
121191
+ "type": "string",
121192
+ "minLength": 1
121193
+ },
121194
+ "publishedToClawHub": {
121195
+ "type": "boolean"
121196
+ }
121197
+ },
121198
+ "additionalProperties": false
121199
+ },
121200
+ "local": {
121201
+ "type": "object",
121202
+ "required": [
121203
+ "present",
121204
+ "installed",
121205
+ "enabled",
121206
+ "state",
121207
+ "action"
121208
+ ],
121209
+ "properties": {
121210
+ "present": {
121211
+ "type": "boolean"
121212
+ },
121213
+ "installed": {
121214
+ "type": "boolean"
121215
+ },
121216
+ "enabled": {
121217
+ "type": "boolean"
121218
+ },
121219
+ "state": {
121220
+ "anyOf": [
121221
+ {
121222
+ "type": "string",
121223
+ "const": "enabled"
121224
+ },
121225
+ {
121226
+ "type": "string",
121227
+ "const": "disabled"
121228
+ },
121229
+ {
121230
+ "type": "string",
121231
+ "const": "needs-setup"
121232
+ },
121233
+ {
121234
+ "type": "string",
121235
+ "const": "not-installed"
121236
+ },
121237
+ {
121238
+ "type": "string",
121239
+ "const": "error"
121240
+ }
121241
+ ]
121242
+ },
121243
+ "pluginId": {
121244
+ "type": "string",
121245
+ "minLength": 1
121246
+ },
121247
+ "install": {
121248
+ "anyOf": [
121249
+ {
121250
+ "type": "object",
121251
+ "required": [
121252
+ "source",
121253
+ "packageName"
121254
+ ],
121255
+ "properties": {
121256
+ "source": {
121257
+ "type": "string",
121258
+ "const": "clawhub"
121259
+ },
121260
+ "packageName": {
121261
+ "type": "string",
121262
+ "minLength": 1
121263
+ }
121264
+ },
121265
+ "additionalProperties": false
121266
+ },
121267
+ {
121268
+ "type": "object",
121269
+ "required": [
121270
+ "source",
121271
+ "pluginId"
121272
+ ],
121273
+ "properties": {
121274
+ "source": {
121275
+ "type": "string",
121276
+ "const": "official"
121277
+ },
121278
+ "pluginId": {
121279
+ "type": "string",
121280
+ "minLength": 1
121281
+ }
121282
+ },
121283
+ "additionalProperties": false
121284
+ }
121285
+ ]
121286
+ },
121287
+ "action": {
121288
+ "anyOf": [
121289
+ {
121290
+ "type": "string",
121291
+ "const": "install"
121292
+ },
121293
+ {
121294
+ "type": "string",
121295
+ "const": "manage"
121296
+ },
121297
+ {
121298
+ "type": "string",
121299
+ "const": "unavailable"
121300
+ }
121301
+ ]
121302
+ }
121303
+ },
121304
+ "additionalProperties": false
121305
+ }
121306
+ },
121307
+ "additionalProperties": false
121308
+ },
119535
121309
  "PluginOperatorGrants": {
119536
121310
  "type": "object",
119537
121311
  "required": [
@@ -119800,6 +121574,7 @@
119800
121574
  "ok",
119801
121575
  "plugin",
119802
121576
  "declared",
121577
+ "components",
119803
121578
  "reviewToken",
119804
121579
  "grants"
119805
121580
  ],
@@ -120006,6 +121781,95 @@
120006
121781
  },
120007
121782
  "additionalProperties": false
120008
121783
  },
121784
+ "components": {
121785
+ "type": "object",
121786
+ "required": [
121787
+ "mapped",
121788
+ "skills",
121789
+ "mcpServers",
121790
+ "commands",
121791
+ "hooks",
121792
+ "lspServers",
121793
+ "unavailable"
121794
+ ],
121795
+ "properties": {
121796
+ "mapped": {
121797
+ "type": "array",
121798
+ "items": {
121799
+ "type": "string",
121800
+ "minLength": 1
121801
+ }
121802
+ },
121803
+ "skills": {
121804
+ "type": "array",
121805
+ "items": {
121806
+ "type": "string",
121807
+ "minLength": 1
121808
+ }
121809
+ },
121810
+ "mcpServers": {
121811
+ "type": "array",
121812
+ "items": {
121813
+ "type": "string",
121814
+ "minLength": 1
121815
+ }
121816
+ },
121817
+ "commands": {
121818
+ "type": "array",
121819
+ "items": {
121820
+ "type": "string",
121821
+ "minLength": 1
121822
+ }
121823
+ },
121824
+ "hooks": {
121825
+ "type": "array",
121826
+ "items": {
121827
+ "type": "string",
121828
+ "minLength": 1
121829
+ }
121830
+ },
121831
+ "lspServers": {
121832
+ "type": "array",
121833
+ "items": {
121834
+ "type": "string",
121835
+ "minLength": 1
121836
+ }
121837
+ },
121838
+ "unavailable": {
121839
+ "type": "object",
121840
+ "required": [
121841
+ "capabilities",
121842
+ "mcpServers",
121843
+ "lspServers"
121844
+ ],
121845
+ "properties": {
121846
+ "capabilities": {
121847
+ "type": "array",
121848
+ "items": {
121849
+ "type": "string",
121850
+ "minLength": 1
121851
+ }
121852
+ },
121853
+ "mcpServers": {
121854
+ "type": "array",
121855
+ "items": {
121856
+ "type": "string",
121857
+ "minLength": 1
121858
+ }
121859
+ },
121860
+ "lspServers": {
121861
+ "type": "array",
121862
+ "items": {
121863
+ "type": "string",
121864
+ "minLength": 1
121865
+ }
121866
+ }
121867
+ },
121868
+ "additionalProperties": false
121869
+ }
121870
+ },
121871
+ "additionalProperties": false
121872
+ },
120009
121873
  "reviewToken": {
120010
121874
  "type": "string",
120011
121875
  "minLength": 1
@@ -120152,6 +122016,455 @@
120152
122016
  }
120153
122017
  },
120154
122018
  "additionalProperties": false
122019
+ },
122020
+ "catalog": {
122021
+ "type": "object",
122022
+ "required": [
122023
+ "plugin",
122024
+ "detail"
122025
+ ],
122026
+ "properties": {
122027
+ "plugin": {
122028
+ "type": "object",
122029
+ "required": [
122030
+ "id",
122031
+ "catalog",
122032
+ "local"
122033
+ ],
122034
+ "properties": {
122035
+ "id": {
122036
+ "type": "string",
122037
+ "minLength": 1,
122038
+ "maxLength": 512,
122039
+ "pattern": "^[A-Za-z0-9_-]+$"
122040
+ },
122041
+ "catalog": {
122042
+ "type": "object",
122043
+ "required": [
122044
+ "name",
122045
+ "official",
122046
+ "categories"
122047
+ ],
122048
+ "properties": {
122049
+ "name": {
122050
+ "type": "string",
122051
+ "minLength": 1
122052
+ },
122053
+ "packageName": {
122054
+ "type": "string",
122055
+ "minLength": 1
122056
+ },
122057
+ "summary": {
122058
+ "type": "string"
122059
+ },
122060
+ "family": {
122061
+ "anyOf": [
122062
+ {
122063
+ "type": "string",
122064
+ "const": "code-plugin"
122065
+ },
122066
+ {
122067
+ "type": "string",
122068
+ "const": "bundle-plugin"
122069
+ }
122070
+ ]
122071
+ },
122072
+ "author": {
122073
+ "type": "string",
122074
+ "minLength": 1
122075
+ },
122076
+ "official": {
122077
+ "type": "boolean"
122078
+ },
122079
+ "categories": {
122080
+ "type": "array",
122081
+ "items": {
122082
+ "type": "string",
122083
+ "minLength": 1
122084
+ }
122085
+ },
122086
+ "icon": {
122087
+ "type": "string",
122088
+ "minLength": 1,
122089
+ "maxLength": 64,
122090
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
122091
+ },
122092
+ "imageUrl": {
122093
+ "type": "string",
122094
+ "minLength": 1
122095
+ },
122096
+ "latestVersion": {
122097
+ "type": "string",
122098
+ "minLength": 1
122099
+ },
122100
+ "downloads": {
122101
+ "type": "number",
122102
+ "minimum": 0
122103
+ },
122104
+ "installs": {
122105
+ "type": "number",
122106
+ "minimum": 0
122107
+ },
122108
+ "verificationTier": {
122109
+ "type": "string",
122110
+ "minLength": 1
122111
+ },
122112
+ "publishedToClawHub": {
122113
+ "type": "boolean"
122114
+ }
122115
+ },
122116
+ "additionalProperties": false
122117
+ },
122118
+ "local": {
122119
+ "type": "object",
122120
+ "required": [
122121
+ "present",
122122
+ "installed",
122123
+ "enabled",
122124
+ "state",
122125
+ "action"
122126
+ ],
122127
+ "properties": {
122128
+ "present": {
122129
+ "type": "boolean"
122130
+ },
122131
+ "installed": {
122132
+ "type": "boolean"
122133
+ },
122134
+ "enabled": {
122135
+ "type": "boolean"
122136
+ },
122137
+ "state": {
122138
+ "anyOf": [
122139
+ {
122140
+ "type": "string",
122141
+ "const": "enabled"
122142
+ },
122143
+ {
122144
+ "type": "string",
122145
+ "const": "disabled"
122146
+ },
122147
+ {
122148
+ "type": "string",
122149
+ "const": "needs-setup"
122150
+ },
122151
+ {
122152
+ "type": "string",
122153
+ "const": "not-installed"
122154
+ },
122155
+ {
122156
+ "type": "string",
122157
+ "const": "error"
122158
+ }
122159
+ ]
122160
+ },
122161
+ "pluginId": {
122162
+ "type": "string",
122163
+ "minLength": 1
122164
+ },
122165
+ "install": {
122166
+ "anyOf": [
122167
+ {
122168
+ "type": "object",
122169
+ "required": [
122170
+ "source",
122171
+ "packageName"
122172
+ ],
122173
+ "properties": {
122174
+ "source": {
122175
+ "type": "string",
122176
+ "const": "clawhub"
122177
+ },
122178
+ "packageName": {
122179
+ "type": "string",
122180
+ "minLength": 1
122181
+ }
122182
+ },
122183
+ "additionalProperties": false
122184
+ },
122185
+ {
122186
+ "type": "object",
122187
+ "required": [
122188
+ "source",
122189
+ "pluginId"
122190
+ ],
122191
+ "properties": {
122192
+ "source": {
122193
+ "type": "string",
122194
+ "const": "official"
122195
+ },
122196
+ "pluginId": {
122197
+ "type": "string",
122198
+ "minLength": 1
122199
+ }
122200
+ },
122201
+ "additionalProperties": false
122202
+ }
122203
+ ]
122204
+ },
122205
+ "action": {
122206
+ "anyOf": [
122207
+ {
122208
+ "type": "string",
122209
+ "const": "install"
122210
+ },
122211
+ {
122212
+ "type": "string",
122213
+ "const": "manage"
122214
+ },
122215
+ {
122216
+ "type": "string",
122217
+ "const": "unavailable"
122218
+ }
122219
+ ]
122220
+ }
122221
+ },
122222
+ "additionalProperties": false
122223
+ }
122224
+ },
122225
+ "additionalProperties": false
122226
+ },
122227
+ "detail": {
122228
+ "type": "object",
122229
+ "required": [
122230
+ "origin",
122231
+ "topics",
122232
+ "configuration",
122233
+ "mcpServers",
122234
+ "skills",
122235
+ "versions"
122236
+ ],
122237
+ "properties": {
122238
+ "origin": {
122239
+ "anyOf": [
122240
+ {
122241
+ "type": "string",
122242
+ "const": "clawhub"
122243
+ },
122244
+ {
122245
+ "type": "string",
122246
+ "const": "local"
122247
+ }
122248
+ ]
122249
+ },
122250
+ "packageName": {
122251
+ "type": "string",
122252
+ "minLength": 1
122253
+ },
122254
+ "author": {
122255
+ "type": "object",
122256
+ "properties": {
122257
+ "handle": {
122258
+ "type": "string",
122259
+ "minLength": 1
122260
+ },
122261
+ "displayName": {
122262
+ "type": "string",
122263
+ "minLength": 1
122264
+ },
122265
+ "imageUrl": {
122266
+ "type": "string",
122267
+ "minLength": 1
122268
+ }
122269
+ },
122270
+ "additionalProperties": false
122271
+ },
122272
+ "topics": {
122273
+ "type": "array",
122274
+ "items": {
122275
+ "type": "string",
122276
+ "minLength": 1
122277
+ }
122278
+ },
122279
+ "createdAt": {
122280
+ "type": "integer",
122281
+ "minimum": 0
122282
+ },
122283
+ "updatedAt": {
122284
+ "type": "integer",
122285
+ "minimum": 0
122286
+ },
122287
+ "readme": {
122288
+ "type": "string",
122289
+ "maxLength": 524288
122290
+ },
122291
+ "compatibility": {
122292
+ "type": "object",
122293
+ "properties": {
122294
+ "pluginApiRange": {
122295
+ "type": "string",
122296
+ "minLength": 1
122297
+ },
122298
+ "builtWithOpenClawVersion": {
122299
+ "type": "string",
122300
+ "minLength": 1
122301
+ },
122302
+ "pluginSdkVersion": {
122303
+ "type": "string",
122304
+ "minLength": 1
122305
+ },
122306
+ "minGatewayVersion": {
122307
+ "type": "string",
122308
+ "minLength": 1
122309
+ }
122310
+ },
122311
+ "additionalProperties": false
122312
+ },
122313
+ "configuration": {
122314
+ "type": "array",
122315
+ "items": {
122316
+ "type": "object",
122317
+ "required": [
122318
+ "name",
122319
+ "required",
122320
+ "sensitive"
122321
+ ],
122322
+ "properties": {
122323
+ "name": {
122324
+ "type": "string",
122325
+ "minLength": 1
122326
+ },
122327
+ "description": {
122328
+ "type": "string"
122329
+ },
122330
+ "required": {
122331
+ "type": "boolean"
122332
+ },
122333
+ "sensitive": {
122334
+ "type": "boolean"
122335
+ }
122336
+ },
122337
+ "additionalProperties": false
122338
+ }
122339
+ },
122340
+ "mcpServers": {
122341
+ "type": "array",
122342
+ "items": {
122343
+ "type": "string",
122344
+ "minLength": 1
122345
+ }
122346
+ },
122347
+ "skills": {
122348
+ "type": "array",
122349
+ "items": {
122350
+ "type": "object",
122351
+ "required": [
122352
+ "name"
122353
+ ],
122354
+ "properties": {
122355
+ "name": {
122356
+ "type": "string",
122357
+ "minLength": 1
122358
+ },
122359
+ "description": {
122360
+ "type": "string"
122361
+ }
122362
+ },
122363
+ "additionalProperties": false
122364
+ }
122365
+ },
122366
+ "versions": {
122367
+ "type": "array",
122368
+ "items": {
122369
+ "type": "object",
122370
+ "required": [
122371
+ "version",
122372
+ "createdAt",
122373
+ "changelog",
122374
+ "tags"
122375
+ ],
122376
+ "properties": {
122377
+ "version": {
122378
+ "type": "string",
122379
+ "minLength": 1
122380
+ },
122381
+ "createdAt": {
122382
+ "type": "integer",
122383
+ "minimum": 0
122384
+ },
122385
+ "changelog": {
122386
+ "type": "string"
122387
+ },
122388
+ "tags": {
122389
+ "type": "array",
122390
+ "items": {
122391
+ "type": "string",
122392
+ "minLength": 1
122393
+ }
122394
+ }
122395
+ },
122396
+ "additionalProperties": false
122397
+ },
122398
+ "maxItems": 10
122399
+ },
122400
+ "verification": {
122401
+ "type": "object",
122402
+ "required": [
122403
+ "tier"
122404
+ ],
122405
+ "properties": {
122406
+ "tier": {
122407
+ "type": "string",
122408
+ "minLength": 1
122409
+ },
122410
+ "summary": {
122411
+ "type": "string"
122412
+ },
122413
+ "sourceRepo": {
122414
+ "type": "string",
122415
+ "minLength": 1
122416
+ },
122417
+ "sourceCommit": {
122418
+ "type": "string",
122419
+ "minLength": 1
122420
+ },
122421
+ "sourcePath": {
122422
+ "type": "string",
122423
+ "minLength": 1
122424
+ },
122425
+ "scanStatus": {
122426
+ "type": "string",
122427
+ "minLength": 1
122428
+ }
122429
+ },
122430
+ "additionalProperties": false
122431
+ },
122432
+ "security": {
122433
+ "type": "object",
122434
+ "required": [
122435
+ "status"
122436
+ ],
122437
+ "properties": {
122438
+ "status": {
122439
+ "type": "string",
122440
+ "minLength": 1
122441
+ },
122442
+ "auditUrl": {
122443
+ "type": "string",
122444
+ "minLength": 1
122445
+ },
122446
+ "verdict": {
122447
+ "type": "string",
122448
+ "minLength": 1
122449
+ },
122450
+ "summary": {
122451
+ "type": "string"
122452
+ },
122453
+ "guidance": {
122454
+ "type": "string"
122455
+ },
122456
+ "checkedAt": {
122457
+ "type": "integer",
122458
+ "minimum": 0
122459
+ }
122460
+ },
122461
+ "additionalProperties": false
122462
+ }
122463
+ },
122464
+ "additionalProperties": false
122465
+ }
122466
+ },
122467
+ "additionalProperties": false
120155
122468
  }
120156
122469
  },
120157
122470
  "additionalProperties": false
@@ -120268,6 +122581,14 @@
120268
122581
  "type": "string",
120269
122582
  "minLength": 1
120270
122583
  },
122584
+ "clawhubPackage": {
122585
+ "type": "string",
122586
+ "minLength": 1
122587
+ },
122588
+ "catalogId": {
122589
+ "type": "string",
122590
+ "minLength": 1
122591
+ },
120271
122592
  "description": {
120272
122593
  "type": "string"
120273
122594
  },
@@ -120302,6 +122623,10 @@
120302
122623
  "type": "string",
120303
122624
  "const": "disabled"
120304
122625
  },
122626
+ {
122627
+ "type": "string",
122628
+ "const": "needs-setup"
122629
+ },
120305
122630
  {
120306
122631
  "type": "string",
120307
122632
  "const": "not-installed"
@@ -120368,6 +122693,15 @@
120368
122693
  "error": {
120369
122694
  "type": "string"
120370
122695
  },
122696
+ "categories": {
122697
+ "type": "array",
122698
+ "items": {
122699
+ "type": "string",
122700
+ "minLength": 1
122701
+ },
122702
+ "minItems": 1,
122703
+ "maxItems": 3
122704
+ },
120371
122705
  "category": {
120372
122706
  "type": "string",
120373
122707
  "minLength": 1
@@ -120428,6 +122762,14 @@
120428
122762
  "type": "string",
120429
122763
  "minLength": 1
120430
122764
  },
122765
+ "clawhubPackage": {
122766
+ "type": "string",
122767
+ "minLength": 1
122768
+ },
122769
+ "catalogId": {
122770
+ "type": "string",
122771
+ "minLength": 1
122772
+ },
120431
122773
  "description": {
120432
122774
  "type": "string"
120433
122775
  },
@@ -120462,6 +122804,10 @@
120462
122804
  "type": "string",
120463
122805
  "const": "disabled"
120464
122806
  },
122807
+ {
122808
+ "type": "string",
122809
+ "const": "needs-setup"
122810
+ },
120465
122811
  {
120466
122812
  "type": "string",
120467
122813
  "const": "not-installed"
@@ -120528,6 +122874,15 @@
120528
122874
  "error": {
120529
122875
  "type": "string"
120530
122876
  },
122877
+ "categories": {
122878
+ "type": "array",
122879
+ "items": {
122880
+ "type": "string",
122881
+ "minLength": 1
122882
+ },
122883
+ "minItems": 1,
122884
+ "maxItems": 3
122885
+ },
120531
122886
  "category": {
120532
122887
  "type": "string",
120533
122888
  "minLength": 1
@@ -120681,44 +123036,834 @@
120681
123036
  },
120682
123037
  "additionalProperties": false
120683
123038
  },
120684
- "PluginsSessionActionFailureResult": {
120685
- "type": "object",
120686
- "required": [
120687
- "ok",
120688
- "error"
120689
- ],
120690
- "properties": {
120691
- "ok": {
120692
- "type": "boolean",
120693
- "const": false
120694
- },
120695
- "error": {
120696
- "type": "string"
120697
- },
120698
- "code": {
120699
- "type": "string"
120700
- },
120701
- "details": {}
120702
- },
120703
- "additionalProperties": false
120704
- },
120705
- "PluginsSessionActionParams": {
123039
+ "PluginsCatalogBrowseParams": {
120706
123040
  "type": "object",
120707
- "required": [
120708
- "pluginId",
120709
- "actionId"
120710
- ],
120711
123041
  "properties": {
120712
- "pluginId": {
120713
- "type": "string",
120714
- "minLength": 1
120715
- },
120716
- "actionId": {
123042
+ "query": {
120717
123043
  "type": "string",
120718
- "minLength": 1
123044
+ "maxLength": 200
120719
123045
  },
120720
- "sessionKey": {
120721
- "type": "string",
123046
+ "intent": {
123047
+ "anyOf": [
123048
+ {
123049
+ "type": "string",
123050
+ "const": "all"
123051
+ },
123052
+ {
123053
+ "type": "string",
123054
+ "const": "bundled"
123055
+ },
123056
+ {
123057
+ "type": "string",
123058
+ "const": "trending"
123059
+ },
123060
+ {
123061
+ "type": "string",
123062
+ "const": "official"
123063
+ },
123064
+ {
123065
+ "type": "string",
123066
+ "const": "featured"
123067
+ }
123068
+ ]
123069
+ },
123070
+ "category": {
123071
+ "type": "string",
123072
+ "minLength": 1,
123073
+ "maxLength": 64,
123074
+ "pattern": "^[a-z][a-z0-9-]*$"
123075
+ },
123076
+ "cursor": {
123077
+ "type": "string",
123078
+ "minLength": 1,
123079
+ "maxLength": 4096
123080
+ },
123081
+ "pageSize": {
123082
+ "type": "integer",
123083
+ "minimum": 1,
123084
+ "maximum": 100
123085
+ }
123086
+ },
123087
+ "additionalProperties": false
123088
+ },
123089
+ "PluginsCatalogBrowseResult": {
123090
+ "type": "object",
123091
+ "required": [
123092
+ "items"
123093
+ ],
123094
+ "properties": {
123095
+ "items": {
123096
+ "type": "array",
123097
+ "items": {
123098
+ "type": "object",
123099
+ "required": [
123100
+ "id",
123101
+ "catalog",
123102
+ "local"
123103
+ ],
123104
+ "properties": {
123105
+ "id": {
123106
+ "type": "string",
123107
+ "minLength": 1,
123108
+ "maxLength": 512,
123109
+ "pattern": "^[A-Za-z0-9_-]+$"
123110
+ },
123111
+ "catalog": {
123112
+ "type": "object",
123113
+ "required": [
123114
+ "name",
123115
+ "official",
123116
+ "categories"
123117
+ ],
123118
+ "properties": {
123119
+ "name": {
123120
+ "type": "string",
123121
+ "minLength": 1
123122
+ },
123123
+ "packageName": {
123124
+ "type": "string",
123125
+ "minLength": 1
123126
+ },
123127
+ "summary": {
123128
+ "type": "string"
123129
+ },
123130
+ "family": {
123131
+ "anyOf": [
123132
+ {
123133
+ "type": "string",
123134
+ "const": "code-plugin"
123135
+ },
123136
+ {
123137
+ "type": "string",
123138
+ "const": "bundle-plugin"
123139
+ }
123140
+ ]
123141
+ },
123142
+ "author": {
123143
+ "type": "string",
123144
+ "minLength": 1
123145
+ },
123146
+ "official": {
123147
+ "type": "boolean"
123148
+ },
123149
+ "categories": {
123150
+ "type": "array",
123151
+ "items": {
123152
+ "type": "string",
123153
+ "minLength": 1
123154
+ }
123155
+ },
123156
+ "icon": {
123157
+ "type": "string",
123158
+ "minLength": 1,
123159
+ "maxLength": 64,
123160
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
123161
+ },
123162
+ "imageUrl": {
123163
+ "type": "string",
123164
+ "minLength": 1
123165
+ },
123166
+ "latestVersion": {
123167
+ "type": "string",
123168
+ "minLength": 1
123169
+ },
123170
+ "downloads": {
123171
+ "type": "number",
123172
+ "minimum": 0
123173
+ },
123174
+ "installs": {
123175
+ "type": "number",
123176
+ "minimum": 0
123177
+ },
123178
+ "verificationTier": {
123179
+ "type": "string",
123180
+ "minLength": 1
123181
+ },
123182
+ "publishedToClawHub": {
123183
+ "type": "boolean"
123184
+ }
123185
+ },
123186
+ "additionalProperties": false
123187
+ },
123188
+ "local": {
123189
+ "type": "object",
123190
+ "required": [
123191
+ "present",
123192
+ "installed",
123193
+ "enabled",
123194
+ "state",
123195
+ "action"
123196
+ ],
123197
+ "properties": {
123198
+ "present": {
123199
+ "type": "boolean"
123200
+ },
123201
+ "installed": {
123202
+ "type": "boolean"
123203
+ },
123204
+ "enabled": {
123205
+ "type": "boolean"
123206
+ },
123207
+ "state": {
123208
+ "anyOf": [
123209
+ {
123210
+ "type": "string",
123211
+ "const": "enabled"
123212
+ },
123213
+ {
123214
+ "type": "string",
123215
+ "const": "disabled"
123216
+ },
123217
+ {
123218
+ "type": "string",
123219
+ "const": "needs-setup"
123220
+ },
123221
+ {
123222
+ "type": "string",
123223
+ "const": "not-installed"
123224
+ },
123225
+ {
123226
+ "type": "string",
123227
+ "const": "error"
123228
+ }
123229
+ ]
123230
+ },
123231
+ "pluginId": {
123232
+ "type": "string",
123233
+ "minLength": 1
123234
+ },
123235
+ "install": {
123236
+ "anyOf": [
123237
+ {
123238
+ "type": "object",
123239
+ "required": [
123240
+ "source",
123241
+ "packageName"
123242
+ ],
123243
+ "properties": {
123244
+ "source": {
123245
+ "type": "string",
123246
+ "const": "clawhub"
123247
+ },
123248
+ "packageName": {
123249
+ "type": "string",
123250
+ "minLength": 1
123251
+ }
123252
+ },
123253
+ "additionalProperties": false
123254
+ },
123255
+ {
123256
+ "type": "object",
123257
+ "required": [
123258
+ "source",
123259
+ "pluginId"
123260
+ ],
123261
+ "properties": {
123262
+ "source": {
123263
+ "type": "string",
123264
+ "const": "official"
123265
+ },
123266
+ "pluginId": {
123267
+ "type": "string",
123268
+ "minLength": 1
123269
+ }
123270
+ },
123271
+ "additionalProperties": false
123272
+ }
123273
+ ]
123274
+ },
123275
+ "action": {
123276
+ "anyOf": [
123277
+ {
123278
+ "type": "string",
123279
+ "const": "install"
123280
+ },
123281
+ {
123282
+ "type": "string",
123283
+ "const": "manage"
123284
+ },
123285
+ {
123286
+ "type": "string",
123287
+ "const": "unavailable"
123288
+ }
123289
+ ]
123290
+ }
123291
+ },
123292
+ "additionalProperties": false
123293
+ }
123294
+ },
123295
+ "additionalProperties": false
123296
+ }
123297
+ },
123298
+ "nextCursor": {
123299
+ "type": "string",
123300
+ "minLength": 1,
123301
+ "maxLength": 4096
123302
+ },
123303
+ "remoteError": {
123304
+ "type": "string"
123305
+ }
123306
+ },
123307
+ "additionalProperties": false
123308
+ },
123309
+ "PluginsCatalogCategoriesParams": {
123310
+ "type": "object",
123311
+ "properties": {},
123312
+ "additionalProperties": false
123313
+ },
123314
+ "PluginsCatalogCategoriesResult": {
123315
+ "type": "object",
123316
+ "required": [
123317
+ "categories"
123318
+ ],
123319
+ "properties": {
123320
+ "categories": {
123321
+ "type": "array",
123322
+ "items": {
123323
+ "type": "object",
123324
+ "required": [
123325
+ "slug",
123326
+ "label",
123327
+ "description",
123328
+ "icon",
123329
+ "order"
123330
+ ],
123331
+ "properties": {
123332
+ "slug": {
123333
+ "type": "string",
123334
+ "minLength": 1
123335
+ },
123336
+ "label": {
123337
+ "type": "string",
123338
+ "minLength": 1
123339
+ },
123340
+ "description": {
123341
+ "type": "string",
123342
+ "minLength": 1
123343
+ },
123344
+ "icon": {
123345
+ "type": "string",
123346
+ "minLength": 1,
123347
+ "maxLength": 64,
123348
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
123349
+ },
123350
+ "order": {
123351
+ "type": "integer",
123352
+ "minimum": 0
123353
+ }
123354
+ },
123355
+ "additionalProperties": false
123356
+ }
123357
+ }
123358
+ },
123359
+ "additionalProperties": false
123360
+ },
123361
+ "PluginsCatalogGetParams": {
123362
+ "type": "object",
123363
+ "required": [
123364
+ "id"
123365
+ ],
123366
+ "properties": {
123367
+ "id": {
123368
+ "type": "string",
123369
+ "minLength": 1,
123370
+ "maxLength": 512,
123371
+ "pattern": "^[A-Za-z0-9_-]+$"
123372
+ },
123373
+ "version": {
123374
+ "type": "string",
123375
+ "minLength": 1
123376
+ }
123377
+ },
123378
+ "additionalProperties": false
123379
+ },
123380
+ "PluginsCatalogGetResult": {
123381
+ "type": "object",
123382
+ "required": [
123383
+ "plugin",
123384
+ "detail"
123385
+ ],
123386
+ "properties": {
123387
+ "plugin": {
123388
+ "type": "object",
123389
+ "required": [
123390
+ "id",
123391
+ "catalog",
123392
+ "local"
123393
+ ],
123394
+ "properties": {
123395
+ "id": {
123396
+ "type": "string",
123397
+ "minLength": 1,
123398
+ "maxLength": 512,
123399
+ "pattern": "^[A-Za-z0-9_-]+$"
123400
+ },
123401
+ "catalog": {
123402
+ "type": "object",
123403
+ "required": [
123404
+ "name",
123405
+ "official",
123406
+ "categories"
123407
+ ],
123408
+ "properties": {
123409
+ "name": {
123410
+ "type": "string",
123411
+ "minLength": 1
123412
+ },
123413
+ "packageName": {
123414
+ "type": "string",
123415
+ "minLength": 1
123416
+ },
123417
+ "summary": {
123418
+ "type": "string"
123419
+ },
123420
+ "family": {
123421
+ "anyOf": [
123422
+ {
123423
+ "type": "string",
123424
+ "const": "code-plugin"
123425
+ },
123426
+ {
123427
+ "type": "string",
123428
+ "const": "bundle-plugin"
123429
+ }
123430
+ ]
123431
+ },
123432
+ "author": {
123433
+ "type": "string",
123434
+ "minLength": 1
123435
+ },
123436
+ "official": {
123437
+ "type": "boolean"
123438
+ },
123439
+ "categories": {
123440
+ "type": "array",
123441
+ "items": {
123442
+ "type": "string",
123443
+ "minLength": 1
123444
+ }
123445
+ },
123446
+ "icon": {
123447
+ "type": "string",
123448
+ "minLength": 1,
123449
+ "maxLength": 64,
123450
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
123451
+ },
123452
+ "imageUrl": {
123453
+ "type": "string",
123454
+ "minLength": 1
123455
+ },
123456
+ "latestVersion": {
123457
+ "type": "string",
123458
+ "minLength": 1
123459
+ },
123460
+ "downloads": {
123461
+ "type": "number",
123462
+ "minimum": 0
123463
+ },
123464
+ "installs": {
123465
+ "type": "number",
123466
+ "minimum": 0
123467
+ },
123468
+ "verificationTier": {
123469
+ "type": "string",
123470
+ "minLength": 1
123471
+ },
123472
+ "publishedToClawHub": {
123473
+ "type": "boolean"
123474
+ }
123475
+ },
123476
+ "additionalProperties": false
123477
+ },
123478
+ "local": {
123479
+ "type": "object",
123480
+ "required": [
123481
+ "present",
123482
+ "installed",
123483
+ "enabled",
123484
+ "state",
123485
+ "action"
123486
+ ],
123487
+ "properties": {
123488
+ "present": {
123489
+ "type": "boolean"
123490
+ },
123491
+ "installed": {
123492
+ "type": "boolean"
123493
+ },
123494
+ "enabled": {
123495
+ "type": "boolean"
123496
+ },
123497
+ "state": {
123498
+ "anyOf": [
123499
+ {
123500
+ "type": "string",
123501
+ "const": "enabled"
123502
+ },
123503
+ {
123504
+ "type": "string",
123505
+ "const": "disabled"
123506
+ },
123507
+ {
123508
+ "type": "string",
123509
+ "const": "needs-setup"
123510
+ },
123511
+ {
123512
+ "type": "string",
123513
+ "const": "not-installed"
123514
+ },
123515
+ {
123516
+ "type": "string",
123517
+ "const": "error"
123518
+ }
123519
+ ]
123520
+ },
123521
+ "pluginId": {
123522
+ "type": "string",
123523
+ "minLength": 1
123524
+ },
123525
+ "install": {
123526
+ "anyOf": [
123527
+ {
123528
+ "type": "object",
123529
+ "required": [
123530
+ "source",
123531
+ "packageName"
123532
+ ],
123533
+ "properties": {
123534
+ "source": {
123535
+ "type": "string",
123536
+ "const": "clawhub"
123537
+ },
123538
+ "packageName": {
123539
+ "type": "string",
123540
+ "minLength": 1
123541
+ }
123542
+ },
123543
+ "additionalProperties": false
123544
+ },
123545
+ {
123546
+ "type": "object",
123547
+ "required": [
123548
+ "source",
123549
+ "pluginId"
123550
+ ],
123551
+ "properties": {
123552
+ "source": {
123553
+ "type": "string",
123554
+ "const": "official"
123555
+ },
123556
+ "pluginId": {
123557
+ "type": "string",
123558
+ "minLength": 1
123559
+ }
123560
+ },
123561
+ "additionalProperties": false
123562
+ }
123563
+ ]
123564
+ },
123565
+ "action": {
123566
+ "anyOf": [
123567
+ {
123568
+ "type": "string",
123569
+ "const": "install"
123570
+ },
123571
+ {
123572
+ "type": "string",
123573
+ "const": "manage"
123574
+ },
123575
+ {
123576
+ "type": "string",
123577
+ "const": "unavailable"
123578
+ }
123579
+ ]
123580
+ }
123581
+ },
123582
+ "additionalProperties": false
123583
+ }
123584
+ },
123585
+ "additionalProperties": false
123586
+ },
123587
+ "detail": {
123588
+ "type": "object",
123589
+ "required": [
123590
+ "origin",
123591
+ "topics",
123592
+ "configuration",
123593
+ "mcpServers",
123594
+ "skills",
123595
+ "versions"
123596
+ ],
123597
+ "properties": {
123598
+ "origin": {
123599
+ "anyOf": [
123600
+ {
123601
+ "type": "string",
123602
+ "const": "clawhub"
123603
+ },
123604
+ {
123605
+ "type": "string",
123606
+ "const": "local"
123607
+ }
123608
+ ]
123609
+ },
123610
+ "packageName": {
123611
+ "type": "string",
123612
+ "minLength": 1
123613
+ },
123614
+ "author": {
123615
+ "type": "object",
123616
+ "properties": {
123617
+ "handle": {
123618
+ "type": "string",
123619
+ "minLength": 1
123620
+ },
123621
+ "displayName": {
123622
+ "type": "string",
123623
+ "minLength": 1
123624
+ },
123625
+ "imageUrl": {
123626
+ "type": "string",
123627
+ "minLength": 1
123628
+ }
123629
+ },
123630
+ "additionalProperties": false
123631
+ },
123632
+ "topics": {
123633
+ "type": "array",
123634
+ "items": {
123635
+ "type": "string",
123636
+ "minLength": 1
123637
+ }
123638
+ },
123639
+ "createdAt": {
123640
+ "type": "integer",
123641
+ "minimum": 0
123642
+ },
123643
+ "updatedAt": {
123644
+ "type": "integer",
123645
+ "minimum": 0
123646
+ },
123647
+ "readme": {
123648
+ "type": "string",
123649
+ "maxLength": 524288
123650
+ },
123651
+ "compatibility": {
123652
+ "type": "object",
123653
+ "properties": {
123654
+ "pluginApiRange": {
123655
+ "type": "string",
123656
+ "minLength": 1
123657
+ },
123658
+ "builtWithOpenClawVersion": {
123659
+ "type": "string",
123660
+ "minLength": 1
123661
+ },
123662
+ "pluginSdkVersion": {
123663
+ "type": "string",
123664
+ "minLength": 1
123665
+ },
123666
+ "minGatewayVersion": {
123667
+ "type": "string",
123668
+ "minLength": 1
123669
+ }
123670
+ },
123671
+ "additionalProperties": false
123672
+ },
123673
+ "configuration": {
123674
+ "type": "array",
123675
+ "items": {
123676
+ "type": "object",
123677
+ "required": [
123678
+ "name",
123679
+ "required",
123680
+ "sensitive"
123681
+ ],
123682
+ "properties": {
123683
+ "name": {
123684
+ "type": "string",
123685
+ "minLength": 1
123686
+ },
123687
+ "description": {
123688
+ "type": "string"
123689
+ },
123690
+ "required": {
123691
+ "type": "boolean"
123692
+ },
123693
+ "sensitive": {
123694
+ "type": "boolean"
123695
+ }
123696
+ },
123697
+ "additionalProperties": false
123698
+ }
123699
+ },
123700
+ "mcpServers": {
123701
+ "type": "array",
123702
+ "items": {
123703
+ "type": "string",
123704
+ "minLength": 1
123705
+ }
123706
+ },
123707
+ "skills": {
123708
+ "type": "array",
123709
+ "items": {
123710
+ "type": "object",
123711
+ "required": [
123712
+ "name"
123713
+ ],
123714
+ "properties": {
123715
+ "name": {
123716
+ "type": "string",
123717
+ "minLength": 1
123718
+ },
123719
+ "description": {
123720
+ "type": "string"
123721
+ }
123722
+ },
123723
+ "additionalProperties": false
123724
+ }
123725
+ },
123726
+ "versions": {
123727
+ "type": "array",
123728
+ "items": {
123729
+ "type": "object",
123730
+ "required": [
123731
+ "version",
123732
+ "createdAt",
123733
+ "changelog",
123734
+ "tags"
123735
+ ],
123736
+ "properties": {
123737
+ "version": {
123738
+ "type": "string",
123739
+ "minLength": 1
123740
+ },
123741
+ "createdAt": {
123742
+ "type": "integer",
123743
+ "minimum": 0
123744
+ },
123745
+ "changelog": {
123746
+ "type": "string"
123747
+ },
123748
+ "tags": {
123749
+ "type": "array",
123750
+ "items": {
123751
+ "type": "string",
123752
+ "minLength": 1
123753
+ }
123754
+ }
123755
+ },
123756
+ "additionalProperties": false
123757
+ },
123758
+ "maxItems": 10
123759
+ },
123760
+ "verification": {
123761
+ "type": "object",
123762
+ "required": [
123763
+ "tier"
123764
+ ],
123765
+ "properties": {
123766
+ "tier": {
123767
+ "type": "string",
123768
+ "minLength": 1
123769
+ },
123770
+ "summary": {
123771
+ "type": "string"
123772
+ },
123773
+ "sourceRepo": {
123774
+ "type": "string",
123775
+ "minLength": 1
123776
+ },
123777
+ "sourceCommit": {
123778
+ "type": "string",
123779
+ "minLength": 1
123780
+ },
123781
+ "sourcePath": {
123782
+ "type": "string",
123783
+ "minLength": 1
123784
+ },
123785
+ "scanStatus": {
123786
+ "type": "string",
123787
+ "minLength": 1
123788
+ }
123789
+ },
123790
+ "additionalProperties": false
123791
+ },
123792
+ "security": {
123793
+ "type": "object",
123794
+ "required": [
123795
+ "status"
123796
+ ],
123797
+ "properties": {
123798
+ "status": {
123799
+ "type": "string",
123800
+ "minLength": 1
123801
+ },
123802
+ "auditUrl": {
123803
+ "type": "string",
123804
+ "minLength": 1
123805
+ },
123806
+ "verdict": {
123807
+ "type": "string",
123808
+ "minLength": 1
123809
+ },
123810
+ "summary": {
123811
+ "type": "string"
123812
+ },
123813
+ "guidance": {
123814
+ "type": "string"
123815
+ },
123816
+ "checkedAt": {
123817
+ "type": "integer",
123818
+ "minimum": 0
123819
+ }
123820
+ },
123821
+ "additionalProperties": false
123822
+ }
123823
+ },
123824
+ "additionalProperties": false
123825
+ }
123826
+ },
123827
+ "additionalProperties": false
123828
+ },
123829
+ "PluginsSessionActionFailureResult": {
123830
+ "type": "object",
123831
+ "required": [
123832
+ "ok",
123833
+ "error"
123834
+ ],
123835
+ "properties": {
123836
+ "ok": {
123837
+ "type": "boolean",
123838
+ "const": false
123839
+ },
123840
+ "error": {
123841
+ "type": "string"
123842
+ },
123843
+ "code": {
123844
+ "type": "string"
123845
+ },
123846
+ "details": {}
123847
+ },
123848
+ "additionalProperties": false
123849
+ },
123850
+ "PluginsSessionActionParams": {
123851
+ "type": "object",
123852
+ "required": [
123853
+ "pluginId",
123854
+ "actionId"
123855
+ ],
123856
+ "properties": {
123857
+ "pluginId": {
123858
+ "type": "string",
123859
+ "minLength": 1
123860
+ },
123861
+ "actionId": {
123862
+ "type": "string",
123863
+ "minLength": 1
123864
+ },
123865
+ "sessionKey": {
123866
+ "type": "string",
120722
123867
  "minLength": 1
120723
123868
  },
120724
123869
  "agentId": {
@@ -120854,6 +123999,14 @@
120854
123999
  "type": "string",
120855
124000
  "minLength": 1
120856
124001
  },
124002
+ "clawhubPackage": {
124003
+ "type": "string",
124004
+ "minLength": 1
124005
+ },
124006
+ "catalogId": {
124007
+ "type": "string",
124008
+ "minLength": 1
124009
+ },
120857
124010
  "description": {
120858
124011
  "type": "string"
120859
124012
  },
@@ -120888,6 +124041,10 @@
120888
124041
  "type": "string",
120889
124042
  "const": "disabled"
120890
124043
  },
124044
+ {
124045
+ "type": "string",
124046
+ "const": "needs-setup"
124047
+ },
120891
124048
  {
120892
124049
  "type": "string",
120893
124050
  "const": "not-installed"
@@ -120954,6 +124111,15 @@
120954
124111
  "error": {
120955
124112
  "type": "string"
120956
124113
  },
124114
+ "categories": {
124115
+ "type": "array",
124116
+ "items": {
124117
+ "type": "string",
124118
+ "minLength": 1
124119
+ },
124120
+ "minItems": 1,
124121
+ "maxItems": 3
124122
+ },
120957
124123
  "category": {
120958
124124
  "type": "string",
120959
124125
  "minLength": 1