@openclaw/codex 2026.6.8-beta.2 → 2026.6.9-beta.1

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.
Files changed (34) hide show
  1. package/dist/{notification-correlation-BGoG0N90.js → app-server-policy-KpyUye2D.js} +15 -74
  2. package/dist/attempt-notifications-Meja3TX6.js +249 -0
  3. package/dist/{client-factory-C71Xdb6z.js → client-factory-CPuoOOx6.js} +3 -2
  4. package/dist/{client-DovmVtbr.js → client-m7XiCQpO.js} +24 -2
  5. package/dist/{command-handlers-DHecBkuc.js → command-handlers-CqS0Kv3Z.js} +17 -13
  6. package/dist/{compact-GEKusemL.js → compact-CMVlldii.js} +5 -5
  7. package/dist/{computer-use-D1qxvTE_.js → computer-use-qLm7Gf35.js} +3 -3
  8. package/dist/{config-DJXpBkGf.js → config-BksX0T33.js} +160 -20
  9. package/dist/{conversation-binding-CbnMilVW.js → conversation-binding-DBof5w9J.js} +166 -58
  10. package/dist/doctor-contract-api.js +37 -3
  11. package/dist/harness.js +6 -6
  12. package/dist/index.js +108 -27
  13. package/dist/media-understanding-provider-CiwPkR58.js +463 -0
  14. package/dist/media-understanding-provider.js +1 -355
  15. package/dist/{models-DRKnOpzF.js → models-BsyV1Psm.js} +2 -2
  16. package/dist/{plugin-app-cache-key-kIqpGTQj.js → plugin-app-cache-key-CN9zBiCG.js} +17 -6
  17. package/dist/{protocol-oeJQu4rs.js → protocol-dh-ETiNd.js} +4 -1
  18. package/dist/{protocol-validators-B48C6S9O.js → protocol-validators-B19q5BIX.js} +210 -16
  19. package/dist/{native-hook-relay-C3i3FYtc.js → provider-capabilities-BOvTfMhF.js} +803 -78
  20. package/dist/{provider-C5P6352f.js → provider-qJygHQx4.js} +4 -4
  21. package/dist/provider.js +1 -1
  22. package/dist/{request-BxZ40QKY.js → request-DTIEyUrA.js} +2 -2
  23. package/dist/{run-attempt-D_q-VrpR.js → run-attempt-DRhB6bTc.js} +421 -774
  24. package/dist/{sandbox-guard-C-Yv9uwY.js → sandbox-guard-3tnjhjFb.js} +37 -10
  25. package/dist/{session-binding-ElbcSq2o.js → session-binding-BRUi8y6E.js} +27 -8
  26. package/dist/{shared-client-jFMumCOe.js → shared-client-Bg5d7VV9.js} +4 -4
  27. package/dist/{side-question-DqKLfWMB.js → side-question-BdYL4kj1.js} +106 -42
  28. package/dist/{thread-lifecycle-cban34w3.js → thread-lifecycle-CbJqqnEw.js} +912 -616
  29. package/dist/web-search-contract-api.js +10 -0
  30. package/dist/web-search-provider.runtime-DrpQ8Cyd.js +74 -0
  31. package/dist/web-search-provider.shared-BrZmlqyR.js +32 -0
  32. package/npm-shrinkwrap.json +2 -2
  33. package/openclaw.plugin.json +129 -4
  34. package/package.json +13 -5
@@ -872,6 +872,14 @@ var ThreadResumeResponse_default = {
872
872
  "type": "string"
873
873
  }
874
874
  ] },
875
+ "SubAgentActivityKind": {
876
+ "enum": [
877
+ "started",
878
+ "interacted",
879
+ "interrupted"
880
+ ],
881
+ "type": "string"
882
+ },
875
883
  "SubAgentSource": { "oneOf": [
876
884
  {
877
885
  "additionalProperties": false,
@@ -1351,6 +1359,28 @@ var ThreadResumeResponse_default = {
1351
1359
  "title": "CollabAgentToolCallThreadItem",
1352
1360
  "type": "object"
1353
1361
  },
1362
+ {
1363
+ "properties": {
1364
+ "agentPath": { "type": "string" },
1365
+ "agentThreadId": { "type": "string" },
1366
+ "id": { "type": "string" },
1367
+ "kind": { "$ref": "#/definitions/SubAgentActivityKind" },
1368
+ "type": {
1369
+ "enum": ["subAgentActivity"],
1370
+ "title": "SubAgentActivityThreadItemType",
1371
+ "type": "string"
1372
+ }
1373
+ },
1374
+ "required": [
1375
+ "agentPath",
1376
+ "agentThreadId",
1377
+ "id",
1378
+ "kind",
1379
+ "type"
1380
+ ],
1381
+ "title": "SubAgentActivityThreadItem",
1382
+ "type": "object"
1383
+ },
1354
1384
  {
1355
1385
  "properties": {
1356
1386
  "action": { "anyOf": [{ "$ref": "#/definitions/WebSearchAction" }, { "type": "null" }] },
@@ -1388,6 +1418,28 @@ var ThreadResumeResponse_default = {
1388
1418
  "title": "ImageViewThreadItem",
1389
1419
  "type": "object"
1390
1420
  },
1421
+ {
1422
+ "properties": {
1423
+ "durationMs": {
1424
+ "format": "uint64",
1425
+ "minimum": 0,
1426
+ "type": "integer"
1427
+ },
1428
+ "id": { "type": "string" },
1429
+ "type": {
1430
+ "enum": ["sleep"],
1431
+ "title": "SleepThreadItemType",
1432
+ "type": "string"
1433
+ }
1434
+ },
1435
+ "required": [
1436
+ "durationMs",
1437
+ "id",
1438
+ "type"
1439
+ ],
1440
+ "title": "SleepThreadItem",
1441
+ "type": "object"
1442
+ },
1391
1443
  {
1392
1444
  "properties": {
1393
1445
  "id": { "type": "string" },
@@ -1460,14 +1512,7 @@ var ThreadResumeResponse_default = {
1460
1512
  "type": "object"
1461
1513
  }
1462
1514
  ] },
1463
- "ThreadSource": {
1464
- "enum": [
1465
- "user",
1466
- "subagent",
1467
- "memory_consolidation"
1468
- ],
1469
- "type": "string"
1470
- },
1515
+ "ThreadSource": { "type": "string" },
1471
1516
  "ThreadStatus": { "oneOf": [
1472
1517
  {
1473
1518
  "properties": { "type": {
@@ -2403,6 +2448,14 @@ var ThreadStartResponse_default = {
2403
2448
  "type": "string"
2404
2449
  }
2405
2450
  ] },
2451
+ "SubAgentActivityKind": {
2452
+ "enum": [
2453
+ "started",
2454
+ "interacted",
2455
+ "interrupted"
2456
+ ],
2457
+ "type": "string"
2458
+ },
2406
2459
  "SubAgentSource": { "oneOf": [
2407
2460
  {
2408
2461
  "additionalProperties": false,
@@ -2882,6 +2935,28 @@ var ThreadStartResponse_default = {
2882
2935
  "title": "CollabAgentToolCallThreadItem",
2883
2936
  "type": "object"
2884
2937
  },
2938
+ {
2939
+ "properties": {
2940
+ "agentPath": { "type": "string" },
2941
+ "agentThreadId": { "type": "string" },
2942
+ "id": { "type": "string" },
2943
+ "kind": { "$ref": "#/definitions/SubAgentActivityKind" },
2944
+ "type": {
2945
+ "enum": ["subAgentActivity"],
2946
+ "title": "SubAgentActivityThreadItemType",
2947
+ "type": "string"
2948
+ }
2949
+ },
2950
+ "required": [
2951
+ "agentPath",
2952
+ "agentThreadId",
2953
+ "id",
2954
+ "kind",
2955
+ "type"
2956
+ ],
2957
+ "title": "SubAgentActivityThreadItem",
2958
+ "type": "object"
2959
+ },
2885
2960
  {
2886
2961
  "properties": {
2887
2962
  "action": { "anyOf": [{ "$ref": "#/definitions/WebSearchAction" }, { "type": "null" }] },
@@ -2919,6 +2994,28 @@ var ThreadStartResponse_default = {
2919
2994
  "title": "ImageViewThreadItem",
2920
2995
  "type": "object"
2921
2996
  },
2997
+ {
2998
+ "properties": {
2999
+ "durationMs": {
3000
+ "format": "uint64",
3001
+ "minimum": 0,
3002
+ "type": "integer"
3003
+ },
3004
+ "id": { "type": "string" },
3005
+ "type": {
3006
+ "enum": ["sleep"],
3007
+ "title": "SleepThreadItemType",
3008
+ "type": "string"
3009
+ }
3010
+ },
3011
+ "required": [
3012
+ "durationMs",
3013
+ "id",
3014
+ "type"
3015
+ ],
3016
+ "title": "SleepThreadItem",
3017
+ "type": "object"
3018
+ },
2922
3019
  {
2923
3020
  "properties": {
2924
3021
  "id": { "type": "string" },
@@ -2991,14 +3088,7 @@ var ThreadStartResponse_default = {
2991
3088
  "type": "object"
2992
3089
  }
2993
3090
  ] },
2994
- "ThreadSource": {
2995
- "enum": [
2996
- "user",
2997
- "subagent",
2998
- "memory_consolidation"
2999
- ],
3000
- "type": "string"
3001
- },
3091
+ "ThreadSource": { "type": "string" },
3002
3092
  "ThreadStatus": { "oneOf": [
3003
3093
  {
3004
3094
  "properties": { "type": {
@@ -3746,6 +3836,14 @@ var TurnCompletedNotification_default = {
3746
3836
  "minLength": 1,
3747
3837
  "type": "string"
3748
3838
  },
3839
+ "SubAgentActivityKind": {
3840
+ "enum": [
3841
+ "started",
3842
+ "interacted",
3843
+ "interrupted"
3844
+ ],
3845
+ "type": "string"
3846
+ },
3749
3847
  "TextElement": {
3750
3848
  "properties": {
3751
3849
  "byteRange": {
@@ -4075,6 +4173,28 @@ var TurnCompletedNotification_default = {
4075
4173
  "title": "CollabAgentToolCallThreadItem",
4076
4174
  "type": "object"
4077
4175
  },
4176
+ {
4177
+ "properties": {
4178
+ "agentPath": { "type": "string" },
4179
+ "agentThreadId": { "type": "string" },
4180
+ "id": { "type": "string" },
4181
+ "kind": { "$ref": "#/definitions/SubAgentActivityKind" },
4182
+ "type": {
4183
+ "enum": ["subAgentActivity"],
4184
+ "title": "SubAgentActivityThreadItemType",
4185
+ "type": "string"
4186
+ }
4187
+ },
4188
+ "required": [
4189
+ "agentPath",
4190
+ "agentThreadId",
4191
+ "id",
4192
+ "kind",
4193
+ "type"
4194
+ ],
4195
+ "title": "SubAgentActivityThreadItem",
4196
+ "type": "object"
4197
+ },
4078
4198
  {
4079
4199
  "properties": {
4080
4200
  "action": { "anyOf": [{ "$ref": "#/definitions/WebSearchAction" }, { "type": "null" }] },
@@ -4112,6 +4232,28 @@ var TurnCompletedNotification_default = {
4112
4232
  "title": "ImageViewThreadItem",
4113
4233
  "type": "object"
4114
4234
  },
4235
+ {
4236
+ "properties": {
4237
+ "durationMs": {
4238
+ "format": "uint64",
4239
+ "minimum": 0,
4240
+ "type": "integer"
4241
+ },
4242
+ "id": { "type": "string" },
4243
+ "type": {
4244
+ "enum": ["sleep"],
4245
+ "title": "SleepThreadItemType",
4246
+ "type": "string"
4247
+ }
4248
+ },
4249
+ "required": [
4250
+ "durationMs",
4251
+ "id",
4252
+ "type"
4253
+ ],
4254
+ "title": "SleepThreadItem",
4255
+ "type": "object"
4256
+ },
4115
4257
  {
4116
4258
  "properties": {
4117
4259
  "id": { "type": "string" },
@@ -4845,6 +4987,14 @@ var TurnStartResponse_default = {
4845
4987
  "minLength": 1,
4846
4988
  "type": "string"
4847
4989
  },
4990
+ "SubAgentActivityKind": {
4991
+ "enum": [
4992
+ "started",
4993
+ "interacted",
4994
+ "interrupted"
4995
+ ],
4996
+ "type": "string"
4997
+ },
4848
4998
  "TextElement": {
4849
4999
  "properties": {
4850
5000
  "byteRange": {
@@ -5174,6 +5324,28 @@ var TurnStartResponse_default = {
5174
5324
  "title": "CollabAgentToolCallThreadItem",
5175
5325
  "type": "object"
5176
5326
  },
5327
+ {
5328
+ "properties": {
5329
+ "agentPath": { "type": "string" },
5330
+ "agentThreadId": { "type": "string" },
5331
+ "id": { "type": "string" },
5332
+ "kind": { "$ref": "#/definitions/SubAgentActivityKind" },
5333
+ "type": {
5334
+ "enum": ["subAgentActivity"],
5335
+ "title": "SubAgentActivityThreadItemType",
5336
+ "type": "string"
5337
+ }
5338
+ },
5339
+ "required": [
5340
+ "agentPath",
5341
+ "agentThreadId",
5342
+ "id",
5343
+ "kind",
5344
+ "type"
5345
+ ],
5346
+ "title": "SubAgentActivityThreadItem",
5347
+ "type": "object"
5348
+ },
5177
5349
  {
5178
5350
  "properties": {
5179
5351
  "action": { "anyOf": [{ "$ref": "#/definitions/WebSearchAction" }, { "type": "null" }] },
@@ -5211,6 +5383,28 @@ var TurnStartResponse_default = {
5211
5383
  "title": "ImageViewThreadItem",
5212
5384
  "type": "object"
5213
5385
  },
5386
+ {
5387
+ "properties": {
5388
+ "durationMs": {
5389
+ "format": "uint64",
5390
+ "minimum": 0,
5391
+ "type": "integer"
5392
+ },
5393
+ "id": { "type": "string" },
5394
+ "type": {
5395
+ "enum": ["sleep"],
5396
+ "title": "SleepThreadItemType",
5397
+ "type": "string"
5398
+ }
5399
+ },
5400
+ "required": [
5401
+ "durationMs",
5402
+ "id",
5403
+ "type"
5404
+ ],
5405
+ "title": "SleepThreadItem",
5406
+ "type": "object"
5407
+ },
5214
5408
  {
5215
5409
  "properties": {
5216
5410
  "id": { "type": "string" },