@bitkyc08/opencodex 2.43.0 → 2.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -17
- package/gui/dist/assets/index-B7_K1Hsj.js +115 -0
- package/gui/dist/assets/index-ltx3L-WS.css +1 -0
- package/gui/dist/index.html +2 -2
- package/package.json +1 -1
- package/src/adapters/command-code.ts +23 -2
- package/src/adapters/cursor/native-exec.ts +63 -11
- package/src/adapters/cursor/tool-definitions.ts +1 -1
- package/src/adapters/cursor/tool-schemas.ts +59 -0
- package/src/adapters/kiro.ts +54 -8
- package/src/adapters/openai-chat.ts +23 -6
- package/src/adapters/openai-responses.ts +3 -1
- package/src/adapters/opencode-go.ts +35 -0
- package/src/claude/agents-inject.ts +12 -5
- package/src/claude/desktop-3p-library.ts +89 -0
- package/src/claude/desktop-3p.ts +166 -95
- package/src/claude/desktop-discovery-inputs.ts +44 -0
- package/src/claude/desktop-profile.ts +1 -1
- package/src/claude/desktop-remote-store-artifact.ts +185 -0
- package/src/claude/desktop-remote-store-io.ts +91 -0
- package/src/claude/desktop-remote-store-state.ts +127 -0
- package/src/claude/desktop-remote-store.ts +269 -0
- package/src/claude/inbound-model-options.ts +10 -2
- package/src/claude/inbound-records.ts +7 -0
- package/src/claude/inbound.ts +1 -1
- package/src/claude/model-info.ts +16 -3
- package/src/cli/account-api.ts +7 -1
- package/src/cli/aside-profiles.ts +17 -0
- package/src/cli/capabilities.ts +39 -0
- package/src/cli/claude-agent-startup-sync.ts +3 -1
- package/src/cli/claude-desktop.ts +127 -18
- package/src/cli/connect.ts +27 -14
- package/src/cli/dispatch.ts +30 -16
- package/src/cli/export-command.ts +3 -1
- package/src/cli/index.ts +28 -16
- package/src/cli/integrations.ts +46 -12
- package/src/cli/opencode.ts +11 -4
- package/src/cli/runtime-api.ts +7 -2
- package/src/cli/uninstall-client-state.ts +78 -0
- package/src/client/connect.ts +476 -223
- package/src/client/hub-client.ts +81 -0
- package/src/client/hub-relay.ts +38 -6
- package/src/client/lifecycle-lock.ts +129 -0
- package/src/client/state.ts +71 -42
- package/src/clients/aside-profiles.ts +224 -0
- package/src/codex/account-lifecycle.ts +5 -9
- package/src/codex/auth-api.ts +50 -4
- package/src/codex/catalog/metadata.ts +0 -2
- package/src/codex/catalog/provider-fetch.ts +7 -5
- package/src/codex/catalog/sync.ts +88 -24
- package/src/codex/convergence.ts +2 -0
- package/src/codex/inject.ts +45 -14
- package/src/codex/journal.ts +6 -6
- package/src/codex/quota-refresh-outcome.ts +27 -0
- package/src/codex/shim.ts +7 -1
- package/src/combos/resolve.ts +10 -7
- package/src/config.ts +18 -5
- package/src/generated/compatibility-version.json +209 -105
- package/src/images/loop.ts +5 -2
- package/src/integrations/aside-profile-context.ts +270 -0
- package/src/integrations/aside-profile-journal.ts +229 -0
- package/src/integrations/aside-profiles.ts +176 -0
- package/src/integrations/catalog-refresh.ts +40 -0
- package/src/integrations/config-io.ts +16 -1
- package/src/integrations/owned-refresh.ts +14 -2
- package/src/integrations/state.ts +3 -1
- package/src/integrations/writer.ts +3 -1
- package/src/lab/fabric/producer-isolate.ts +84 -46
- package/src/lib/account-selection-events.ts +32 -0
- package/src/lib/errors.ts +9 -1
- package/src/lib/provider-outbound.ts +2 -45
- package/src/lib/proxy-env.ts +67 -0
- package/src/oauth/account-quota-rank.ts +9 -1
- package/src/oauth/anthropic-routing.ts +91 -23
- package/src/oauth/generic-account-failover.ts +15 -53
- package/src/oauth/index.ts +67 -68
- package/src/oauth/pool-settings-capability.ts +2 -1
- package/src/oauth/store.ts +91 -7
- package/src/oauth/types.ts +8 -0
- package/src/providers/api-key-selection.ts +110 -0
- package/src/providers/api-keys.ts +38 -31
- package/src/providers/context-cap.ts +27 -3
- package/src/providers/key-failover.ts +27 -17
- package/src/providers/provider-id-rewrite.ts +10 -8
- package/src/providers/registry.ts +1 -0
- package/src/responses/custom-tool-compat.ts +10 -0
- package/src/responses/function-call-compat.ts +173 -0
- package/src/responses/namespace-tool-compat.ts +27 -4
- package/src/responses/parser.ts +8 -0
- package/src/responses/task-input.ts +36 -0
- package/src/responses/tool-name-aliases.ts +79 -0
- package/src/router.ts +2 -0
- package/src/routing/capability.ts +10 -3
- package/src/routing/compatibility/assemble.ts +16 -1
- package/src/routing/evaluator.ts +5 -1
- package/src/server/auth-cors.ts +3 -0
- package/src/server/chat-native.ts +44 -9
- package/src/server/claude-messages.ts +71 -36
- package/src/server/grok-responses-snapshot-repair.ts +333 -0
- package/src/server/index.ts +26 -10
- package/src/server/management/account-selection-stream.ts +70 -0
- package/src/server/management/aside-profile-routes.ts +231 -0
- package/src/server/management/config-routes.ts +36 -41
- package/src/server/management/context.ts +3 -0
- package/src/server/management/integration-routes.ts +61 -3
- package/src/server/management/logs-usage-routes.ts +1 -0
- package/src/server/management/model-routes.ts +20 -9
- package/src/server/management/model-rows.ts +10 -2
- package/src/server/management/oauth-account-routes.ts +7 -0
- package/src/server/management/provider-routes.ts +10 -8
- package/src/server/management/route-registry.ts +20 -2
- package/src/server/management-auth.ts +16 -0
- package/src/server/relay-eager.ts +17 -5
- package/src/server/relay.ts +43 -4
- package/src/server/request-log.ts +29 -1
- package/src/server/responses/agent-task-recovery-cache.ts +11 -0
- package/src/server/responses/agent-task-recovery.ts +24 -4
- package/src/server/responses/codex-ws-pool.ts +4 -4
- package/src/server/responses/codex-ws-session.ts +2 -2
- package/src/server/responses/collaboration.ts +2 -1
- package/src/server/responses/combo-stream-preflight.ts +26 -7
- package/src/server/responses/core.ts +668 -151
- package/src/server/responses/fetch-helpers.ts +6 -1
- package/src/server/responses/ws-upstream.ts +8 -3
- package/src/server/responses-custom-tool-repair.ts +29 -9
- package/src/server/responses-function-tool-repair.ts +183 -0
- package/src/server/responses-snapshot-codec.ts +14 -0
- package/src/server/responses-snapshot-repair.ts +1 -13
- package/src/server/responses-undeclared-tool-guard.ts +1 -68
- package/src/server/sse-payload-rewrite.ts +3 -1
- package/src/service.ts +6 -2
- package/src/types/config.ts +23 -16
- package/src/types/provider.ts +14 -3
- package/src/types/request.ts +2 -0
- package/src/usage/log.ts +9 -0
- package/src/web-search/loop.ts +5 -2
- package/gui/dist/assets/index-DS1NE4Jn.css +0 -1
- package/gui/dist/assets/index-Djowl68T.js +0 -112
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"path": "package.json",
|
|
13
|
-
"sha256": "
|
|
13
|
+
"sha256": "fdd2966ed9753b148b517949cf28dda1833e4fd1de39910b9454e488d3fac898"
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"path": "scripts/model-metadata.source.json",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "src/adapters/command-code.ts",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "65b24b72214199a91e96af23d43abe743b76cc735c7a9b1017fadc7f237798cf"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "src/adapters/cursor.ts",
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "src/adapters/cursor/native-exec.ts",
|
|
197
|
-
"sha256": "
|
|
197
|
+
"sha256": "dfddbb2feaad03147a1d1bbfb5be0e0b17bac60c19d005ae6d790211af2cf5cd"
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
200
|
"path": "src/adapters/cursor/protobuf-events.ts",
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "src/adapters/cursor/tool-definitions.ts",
|
|
217
|
-
"sha256": "
|
|
217
|
+
"sha256": "3aa052f5b70fc54ae59f78ba23e87b8a7c8f1e83f6ed60a31e359a5bcd3baca0"
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"path": "src/adapters/cursor/tool-guidance.ts",
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
},
|
|
231
231
|
{
|
|
232
232
|
"path": "src/adapters/cursor/tool-schemas.ts",
|
|
233
|
-
"sha256": "
|
|
233
|
+
"sha256": "e30dea6deed9ce06d3ecdc51a911137800a36e5ada8687f8c653cc85bbcaf2f9"
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"path": "src/adapters/cursor/transport-retry.ts",
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "src/adapters/kiro.ts",
|
|
341
|
-
"sha256": "
|
|
341
|
+
"sha256": "e4830e012424be4385cfc2ad5bbeea1d78c99ceee0cbd4c5a7da73fe9389adfc"
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
"path": "src/adapters/mimo-free.ts",
|
|
@@ -358,7 +358,7 @@
|
|
|
358
358
|
},
|
|
359
359
|
{
|
|
360
360
|
"path": "src/adapters/openai-chat.ts",
|
|
361
|
-
"sha256": "
|
|
361
|
+
"sha256": "6910905df46553c6f87160a3ce41d48deba5b06c962eef7d4a1b9f77cfe918f5"
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
"path": "src/adapters/openai-responses-url.ts",
|
|
@@ -366,7 +366,11 @@
|
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"path": "src/adapters/openai-responses.ts",
|
|
369
|
-
"sha256": "
|
|
369
|
+
"sha256": "4dba6844ff372f20c377bf55745d15d2e536228a150d2736341ae9a60b80d3b5"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"path": "src/adapters/opencode-go.ts",
|
|
373
|
+
"sha256": "37b3aad6259736d1973eca1444f61184e0329404bbdbd1c4326953c76f401192"
|
|
370
374
|
},
|
|
371
375
|
{
|
|
372
376
|
"path": "src/adapters/registry.ts",
|
|
@@ -422,7 +426,7 @@
|
|
|
422
426
|
},
|
|
423
427
|
{
|
|
424
428
|
"path": "src/claude/agents-inject.ts",
|
|
425
|
-
"sha256": "
|
|
429
|
+
"sha256": "08dec50f3ca76db8b3e104388c68f0842c0855daa0da71e5092bbd23ee849edc"
|
|
426
430
|
},
|
|
427
431
|
{
|
|
428
432
|
"path": "src/claude/alias.ts",
|
|
@@ -448,13 +452,21 @@
|
|
|
448
452
|
"path": "src/claude/desktop-3p-guard.ts",
|
|
449
453
|
"sha256": "4f072b87224221b777b8faf8e302da9eb5e985daf78e6dff566a05b506fd8cbd"
|
|
450
454
|
},
|
|
455
|
+
{
|
|
456
|
+
"path": "src/claude/desktop-3p-library.ts",
|
|
457
|
+
"sha256": "4e33c8a4e640af1d9211f1ad3bfbb465af92f3124d8f417c47facb6483f7a481"
|
|
458
|
+
},
|
|
451
459
|
{
|
|
452
460
|
"path": "src/claude/desktop-3p-paths.ts",
|
|
453
461
|
"sha256": "a2416122048a269af4e1a57edd0d300af7d182bf8f6c145df19eece06b809836"
|
|
454
462
|
},
|
|
455
463
|
{
|
|
456
464
|
"path": "src/claude/desktop-3p.ts",
|
|
457
|
-
"sha256": "
|
|
465
|
+
"sha256": "2af2695e5dd702ce60011a9fe4b7870e48579f1e9f480e0a0d8192f392ca94f9"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"path": "src/claude/desktop-discovery-inputs.ts",
|
|
469
|
+
"sha256": "87f206d43212f41dd3004808a8d6bc1685e1c6f84462751b86f0d9f0583fcc79"
|
|
458
470
|
},
|
|
459
471
|
{
|
|
460
472
|
"path": "src/claude/desktop-health.ts",
|
|
@@ -466,7 +478,23 @@
|
|
|
466
478
|
},
|
|
467
479
|
{
|
|
468
480
|
"path": "src/claude/desktop-profile.ts",
|
|
469
|
-
"sha256": "
|
|
481
|
+
"sha256": "85dd31e72ef6af65ed825427c434ffb421190e08ad38f00d62a37d220f35acd6"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"path": "src/claude/desktop-remote-store-artifact.ts",
|
|
485
|
+
"sha256": "57d3f1185c86f00d11b6ea5ce3f6d0a18f27cdeb616f4fc6c74fd90d862af683"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"path": "src/claude/desktop-remote-store-io.ts",
|
|
489
|
+
"sha256": "5a770bebad77f986396253f708047b77febc301114fbb4bed73d85a8827b0e51"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"path": "src/claude/desktop-remote-store-state.ts",
|
|
493
|
+
"sha256": "f1a5bddc8b5a9d41063052c109009593c1aa869bcd7991dd180a80a686dfb0c8"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"path": "src/claude/desktop-remote-store.ts",
|
|
497
|
+
"sha256": "82fb74bd22d79b1ef5b36a1be7b4e786d008839f0196fbf94c1e1e09fc2ca235"
|
|
470
498
|
},
|
|
471
499
|
{
|
|
472
500
|
"path": "src/claude/gateway-cache.ts",
|
|
@@ -482,19 +510,19 @@
|
|
|
482
510
|
},
|
|
483
511
|
{
|
|
484
512
|
"path": "src/claude/inbound-model-options.ts",
|
|
485
|
-
"sha256": "
|
|
513
|
+
"sha256": "b0719316cf26e773af74e486892349c64945754c7d680b5ccd3ca773d2046c9f"
|
|
486
514
|
},
|
|
487
515
|
{
|
|
488
516
|
"path": "src/claude/inbound-records.ts",
|
|
489
|
-
"sha256": "
|
|
517
|
+
"sha256": "e9d4502b3be672682c0728177eb3423bacd27f0ef8eea27a3eee6ed96ea44cc3"
|
|
490
518
|
},
|
|
491
519
|
{
|
|
492
520
|
"path": "src/claude/inbound.ts",
|
|
493
|
-
"sha256": "
|
|
521
|
+
"sha256": "122d14724bb106fe57ceea2fe29e47455b00628812b2c880bf79a538bbd4690c"
|
|
494
522
|
},
|
|
495
523
|
{
|
|
496
524
|
"path": "src/claude/model-info.ts",
|
|
497
|
-
"sha256": "
|
|
525
|
+
"sha256": "0e1d4698e300e25bdedffa31fb413f4a6151e59bdd29179981543864ba74f33b"
|
|
498
526
|
},
|
|
499
527
|
{
|
|
500
528
|
"path": "src/claude/outbound.ts",
|
|
@@ -510,7 +538,7 @@
|
|
|
510
538
|
},
|
|
511
539
|
{
|
|
512
540
|
"path": "src/cli/account-api.ts",
|
|
513
|
-
"sha256": "
|
|
541
|
+
"sha256": "be87c7dbe5d2eaa28d05548877d9de2210c2d91139973b0aaf2e473967045c33"
|
|
514
542
|
},
|
|
515
543
|
{
|
|
516
544
|
"path": "src/cli/account-auth.ts",
|
|
@@ -544,13 +572,17 @@
|
|
|
544
572
|
"path": "src/cli/alias.ts",
|
|
545
573
|
"sha256": "ed2d470ab353004c32d4e02a41b6a74da845d4e17c451692e9627a1b3e9f601c"
|
|
546
574
|
},
|
|
575
|
+
{
|
|
576
|
+
"path": "src/cli/aside-profiles.ts",
|
|
577
|
+
"sha256": "02de4b9bc05b065fd444ba84d6cdb146a310121ae87873f7982b815094ca244d"
|
|
578
|
+
},
|
|
547
579
|
{
|
|
548
580
|
"path": "src/cli/capabilities-command.ts",
|
|
549
581
|
"sha256": "c1101d205b90889f5b988d29976e6e69eaea8a964be086810e63544c38e69065"
|
|
550
582
|
},
|
|
551
583
|
{
|
|
552
584
|
"path": "src/cli/capabilities.ts",
|
|
553
|
-
"sha256": "
|
|
585
|
+
"sha256": "81726a7432f53219eb9789747966b2f6137592409a2d6dacf1ccb4bdfa49ca75"
|
|
554
586
|
},
|
|
555
587
|
{
|
|
556
588
|
"path": "src/cli/catalog-prewarm.ts",
|
|
@@ -558,11 +590,11 @@
|
|
|
558
590
|
},
|
|
559
591
|
{
|
|
560
592
|
"path": "src/cli/claude-agent-startup-sync.ts",
|
|
561
|
-
"sha256": "
|
|
593
|
+
"sha256": "db818a2e311b4f105fb33c2c7c6a4afd5d9737ac9ed625f47748275ed0c6a61f"
|
|
562
594
|
},
|
|
563
595
|
{
|
|
564
596
|
"path": "src/cli/claude-desktop.ts",
|
|
565
|
-
"sha256": "
|
|
597
|
+
"sha256": "98378d62a136cbcfb7def05d3f78e343f27d28e40a9f1e29da2122e73effa607"
|
|
566
598
|
},
|
|
567
599
|
{
|
|
568
600
|
"path": "src/cli/claude.ts",
|
|
@@ -594,7 +626,7 @@
|
|
|
594
626
|
},
|
|
595
627
|
{
|
|
596
628
|
"path": "src/cli/connect.ts",
|
|
597
|
-
"sha256": "
|
|
629
|
+
"sha256": "b381b15d27b6379a78187c811d4d16f277a30fd1fec567a0472058d3f92f7430"
|
|
598
630
|
},
|
|
599
631
|
{
|
|
600
632
|
"path": "src/cli/debug.ts",
|
|
@@ -602,7 +634,7 @@
|
|
|
602
634
|
},
|
|
603
635
|
{
|
|
604
636
|
"path": "src/cli/dispatch.ts",
|
|
605
|
-
"sha256": "
|
|
637
|
+
"sha256": "3c001efbaeeb680ff4de97365bb7bb12a34adb1118dd7059f3147051b2b1ad1f"
|
|
606
638
|
},
|
|
607
639
|
{
|
|
608
640
|
"path": "src/cli/doctor.ts",
|
|
@@ -618,7 +650,7 @@
|
|
|
618
650
|
},
|
|
619
651
|
{
|
|
620
652
|
"path": "src/cli/export-command.ts",
|
|
621
|
-
"sha256": "
|
|
653
|
+
"sha256": "083220ecfa3357e690abf6ad3024b621c40545ae2a642364e7b92b04763300ed"
|
|
622
654
|
},
|
|
623
655
|
{
|
|
624
656
|
"path": "src/cli/gui-pair-client.ts",
|
|
@@ -634,7 +666,7 @@
|
|
|
634
666
|
},
|
|
635
667
|
{
|
|
636
668
|
"path": "src/cli/index.ts",
|
|
637
|
-
"sha256": "
|
|
669
|
+
"sha256": "28f75e7e1b87e85cea387aad75c6f4cb39ff14547304cceedf2c6b13fa72a6e7"
|
|
638
670
|
},
|
|
639
671
|
{
|
|
640
672
|
"path": "src/cli/init.ts",
|
|
@@ -646,7 +678,7 @@
|
|
|
646
678
|
},
|
|
647
679
|
{
|
|
648
680
|
"path": "src/cli/integrations.ts",
|
|
649
|
-
"sha256": "
|
|
681
|
+
"sha256": "b9c85b2e6c5431b0598780920ea048ddb4d3d80ba003bcd2244cb5268b61656a"
|
|
650
682
|
},
|
|
651
683
|
{
|
|
652
684
|
"path": "src/cli/interactive-confirm.ts",
|
|
@@ -686,7 +718,7 @@
|
|
|
686
718
|
},
|
|
687
719
|
{
|
|
688
720
|
"path": "src/cli/opencode.ts",
|
|
689
|
-
"sha256": "
|
|
721
|
+
"sha256": "1b319ec1be28bee8645a2ee55037fdf5e641a285ed85bb66a1778fb86df6cbd6"
|
|
690
722
|
},
|
|
691
723
|
{
|
|
692
724
|
"path": "src/cli/provider-runtime.ts",
|
|
@@ -714,7 +746,7 @@
|
|
|
714
746
|
},
|
|
715
747
|
{
|
|
716
748
|
"path": "src/cli/runtime-api.ts",
|
|
717
|
-
"sha256": "
|
|
749
|
+
"sha256": "7339dfb8b0dbb8c3a5e70924efa79f5d65ac62ad6065b8c9fe3b5ac6d335dc14"
|
|
718
750
|
},
|
|
719
751
|
{
|
|
720
752
|
"path": "src/cli/star-prompt.ts",
|
|
@@ -748,6 +780,10 @@
|
|
|
748
780
|
"path": "src/cli/tray-proxy.ts",
|
|
749
781
|
"sha256": "35878717b3b9c9e9d7793fc88a72ddf21d7b2c9b41c3a6dd12f5bb5d5343a6d5"
|
|
750
782
|
},
|
|
783
|
+
{
|
|
784
|
+
"path": "src/cli/uninstall-client-state.ts",
|
|
785
|
+
"sha256": "9bff03c801a8de750e412c0d990f46b5a2f45fe31e82e7760736c2b240ab8608"
|
|
786
|
+
},
|
|
751
787
|
{
|
|
752
788
|
"path": "src/cli/uninstall-plan.ts",
|
|
753
789
|
"sha256": "786c9f754b76a8a7fbf11a1893f8eb9a228138e822eee50c21513ea248ece34e"
|
|
@@ -766,15 +802,19 @@
|
|
|
766
802
|
},
|
|
767
803
|
{
|
|
768
804
|
"path": "src/client/connect.ts",
|
|
769
|
-
"sha256": "
|
|
805
|
+
"sha256": "dd515f1baaa385696dda8e56756e1b5f293c19c20c814372a9c6b1dd86d79688"
|
|
770
806
|
},
|
|
771
807
|
{
|
|
772
808
|
"path": "src/client/hub-client.ts",
|
|
773
|
-
"sha256": "
|
|
809
|
+
"sha256": "f315abb35b39bfcd4199e7fc6741be6864901f64a732dedc047a86e2b91297dd"
|
|
774
810
|
},
|
|
775
811
|
{
|
|
776
812
|
"path": "src/client/hub-relay.ts",
|
|
777
|
-
"sha256": "
|
|
813
|
+
"sha256": "8a5cb8879067b0cef3c63ac05a56d69dc6db8276210fa91f8b98aa9ae02a17dc"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"path": "src/client/lifecycle-lock.ts",
|
|
817
|
+
"sha256": "e7ecce111807b7575a7e472d09c14f68e99d6f0ed86f89190d4040e106ba3ba4"
|
|
778
818
|
},
|
|
779
819
|
{
|
|
780
820
|
"path": "src/client/machine-api.ts",
|
|
@@ -794,7 +834,11 @@
|
|
|
794
834
|
},
|
|
795
835
|
{
|
|
796
836
|
"path": "src/client/state.ts",
|
|
797
|
-
"sha256": "
|
|
837
|
+
"sha256": "4ea17f7d26cbc18bf2373743027d71817d23b8b340d6a42147c633a4bb00ed10"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"path": "src/clients/aside-profiles.ts",
|
|
841
|
+
"sha256": "210335d697e3c9b8f61e653fda0b3a188233a60b36c19be681ada6d3bc31db79"
|
|
798
842
|
},
|
|
799
843
|
{
|
|
800
844
|
"path": "src/clients/config-export.ts",
|
|
@@ -842,7 +886,7 @@
|
|
|
842
886
|
},
|
|
843
887
|
{
|
|
844
888
|
"path": "src/codex/account-lifecycle.ts",
|
|
845
|
-
"sha256": "
|
|
889
|
+
"sha256": "8df5528db246c7e4e143039a2153d0ed02d5b8dc41442ea6d6204853fd2acb1e"
|
|
846
890
|
},
|
|
847
891
|
{
|
|
848
892
|
"path": "src/codex/account-namespace-match.ts",
|
|
@@ -890,7 +934,7 @@
|
|
|
890
934
|
},
|
|
891
935
|
{
|
|
892
936
|
"path": "src/codex/auth-api.ts",
|
|
893
|
-
"sha256": "
|
|
937
|
+
"sha256": "d95d4f42b9e5f56dbffa8f2c96a8132e44e1295cd5bc64fc79c329337480f42a"
|
|
894
938
|
},
|
|
895
939
|
{
|
|
896
940
|
"path": "src/codex/auth-collision.ts",
|
|
@@ -946,7 +990,7 @@
|
|
|
946
990
|
},
|
|
947
991
|
{
|
|
948
992
|
"path": "src/codex/catalog/metadata.ts",
|
|
949
|
-
"sha256": "
|
|
993
|
+
"sha256": "4e584b56f883d62ba2ce037d1cab618699f43fbc80b09f18c2ed56e48e209550"
|
|
950
994
|
},
|
|
951
995
|
{
|
|
952
996
|
"path": "src/codex/catalog/native-models.ts",
|
|
@@ -958,7 +1002,7 @@
|
|
|
958
1002
|
},
|
|
959
1003
|
{
|
|
960
1004
|
"path": "src/codex/catalog/provider-fetch.ts",
|
|
961
|
-
"sha256": "
|
|
1005
|
+
"sha256": "67c7916948b10ed77053217eb55eed71e4dd738370c5c7dd9f0fbaa4a0113737"
|
|
962
1006
|
},
|
|
963
1007
|
{
|
|
964
1008
|
"path": "src/codex/catalog/reserve.ts",
|
|
@@ -966,7 +1010,7 @@
|
|
|
966
1010
|
},
|
|
967
1011
|
{
|
|
968
1012
|
"path": "src/codex/catalog/sync.ts",
|
|
969
|
-
"sha256": "
|
|
1013
|
+
"sha256": "7edb13998aa9eac65bb9deea7ee1dc387909eefc6997759865fb7639936abc9f"
|
|
970
1014
|
},
|
|
971
1015
|
{
|
|
972
1016
|
"path": "src/codex/cli-install-provenance.ts",
|
|
@@ -982,7 +1026,7 @@
|
|
|
982
1026
|
},
|
|
983
1027
|
{
|
|
984
1028
|
"path": "src/codex/convergence.ts",
|
|
985
|
-
"sha256": "
|
|
1029
|
+
"sha256": "3f882ddb48a4d5a57e2697c0c116ebafc4b2ed309a899497471301a2fd378c0a"
|
|
986
1030
|
},
|
|
987
1031
|
{
|
|
988
1032
|
"path": "src/codex/coordinator-doctor.ts",
|
|
@@ -1062,7 +1106,7 @@
|
|
|
1062
1106
|
},
|
|
1063
1107
|
{
|
|
1064
1108
|
"path": "src/codex/inject.ts",
|
|
1065
|
-
"sha256": "
|
|
1109
|
+
"sha256": "4000bdc437279ac8f3c7b2a25dbf1828bb9b106286fd858f7c192307eeaf6990"
|
|
1066
1110
|
},
|
|
1067
1111
|
{
|
|
1068
1112
|
"path": "src/codex/injected-marker.ts",
|
|
@@ -1082,7 +1126,7 @@
|
|
|
1082
1126
|
},
|
|
1083
1127
|
{
|
|
1084
1128
|
"path": "src/codex/journal.ts",
|
|
1085
|
-
"sha256": "
|
|
1129
|
+
"sha256": "4135c280cbdf2349c25bfd09718a5e7f0fa06d35d35212b14c3f1157687f9ee1"
|
|
1086
1130
|
},
|
|
1087
1131
|
{
|
|
1088
1132
|
"path": "src/codex/legacy-config-keys.ts",
|
|
@@ -1284,6 +1328,10 @@
|
|
|
1284
1328
|
"path": "src/codex/quota-recovery-timing.ts",
|
|
1285
1329
|
"sha256": "b8c0c6911b8ef908bfc81919005942f73672e7e0d51a593200736d3557bfce43"
|
|
1286
1330
|
},
|
|
1331
|
+
{
|
|
1332
|
+
"path": "src/codex/quota-refresh-outcome.ts",
|
|
1333
|
+
"sha256": "cad44472c097db6ba85d5bdeae76b3ed778ea70479c4f4968dc9c36241c8ef75"
|
|
1334
|
+
},
|
|
1287
1335
|
{
|
|
1288
1336
|
"path": "src/codex/quota-rejection.ts",
|
|
1289
1337
|
"sha256": "610c38395e08eaeb318cfed5c8472d9c0c8f1b818dd79dc6f45c5b6fbdbce226"
|
|
@@ -1326,7 +1374,7 @@
|
|
|
1326
1374
|
},
|
|
1327
1375
|
{
|
|
1328
1376
|
"path": "src/codex/shim.ts",
|
|
1329
|
-
"sha256": "
|
|
1377
|
+
"sha256": "16cbf109b0c0057d058a8eccc1114201baa29d0444547a22b45c53bf6f15b3bc"
|
|
1330
1378
|
},
|
|
1331
1379
|
{
|
|
1332
1380
|
"path": "src/codex/subagent-defaults.ts",
|
|
@@ -1386,7 +1434,7 @@
|
|
|
1386
1434
|
},
|
|
1387
1435
|
{
|
|
1388
1436
|
"path": "src/combos/resolve.ts",
|
|
1389
|
-
"sha256": "
|
|
1437
|
+
"sha256": "30d60d32e5bb12939d04f57b042e75cc2f41016491b9f5237a986334106b56c5"
|
|
1390
1438
|
},
|
|
1391
1439
|
{
|
|
1392
1440
|
"path": "src/combos/types.ts",
|
|
@@ -1406,7 +1454,7 @@
|
|
|
1406
1454
|
},
|
|
1407
1455
|
{
|
|
1408
1456
|
"path": "src/config.ts",
|
|
1409
|
-
"sha256": "
|
|
1457
|
+
"sha256": "5fa1f245d0342663a5c0844c69252475a4130d73f01c5ac6592e9e9e772a3233"
|
|
1410
1458
|
},
|
|
1411
1459
|
{
|
|
1412
1460
|
"path": "src/config/atomic-write.ts",
|
|
@@ -1502,7 +1550,7 @@
|
|
|
1502
1550
|
},
|
|
1503
1551
|
{
|
|
1504
1552
|
"path": "src/images/loop.ts",
|
|
1505
|
-
"sha256": "
|
|
1553
|
+
"sha256": "3c66e28fdb84237da3fc365c6ae341a73e573d8e9d952ac12cb28bad7c13327d"
|
|
1506
1554
|
},
|
|
1507
1555
|
{
|
|
1508
1556
|
"path": "src/images/plan.ts",
|
|
@@ -1528,9 +1576,25 @@
|
|
|
1528
1576
|
"path": "src/index.ts",
|
|
1529
1577
|
"sha256": "89a4d0267a7a99c195b6c02eda4fa8ae7ac2bed2230ce1ffcd12f5e3db550621"
|
|
1530
1578
|
},
|
|
1579
|
+
{
|
|
1580
|
+
"path": "src/integrations/aside-profile-context.ts",
|
|
1581
|
+
"sha256": "7c89a9840433d5c7c07bfdd3ae517a0bd1ff5e2398180f997d964c384b77e394"
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"path": "src/integrations/aside-profile-journal.ts",
|
|
1585
|
+
"sha256": "69661e9974e396273209c1446325e92992a82c801723fc8d4541be0d4b0a296d"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"path": "src/integrations/aside-profiles.ts",
|
|
1589
|
+
"sha256": "053cfe61fa32cc433a3531389204d747b88f37d65fd4ed74e4b454b3116c2f00"
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"path": "src/integrations/catalog-refresh.ts",
|
|
1593
|
+
"sha256": "b18d9b2f907d4d9d4f5e01a5d375a03147a56ca193fbf5eea639b3ef1b5f3468"
|
|
1594
|
+
},
|
|
1531
1595
|
{
|
|
1532
1596
|
"path": "src/integrations/config-io.ts",
|
|
1533
|
-
"sha256": "
|
|
1597
|
+
"sha256": "e0b655f191525a83b441d6d46eff921d05c56a9cd263c8591100adf016ddb872"
|
|
1534
1598
|
},
|
|
1535
1599
|
{
|
|
1536
1600
|
"path": "src/integrations/cursor-detect.ts",
|
|
@@ -1566,7 +1630,7 @@
|
|
|
1566
1630
|
},
|
|
1567
1631
|
{
|
|
1568
1632
|
"path": "src/integrations/owned-refresh.ts",
|
|
1569
|
-
"sha256": "
|
|
1633
|
+
"sha256": "45ec0b341681ff077771c66f9e02c0c1490381a127e6c39eb03bf735d68f12e7"
|
|
1570
1634
|
},
|
|
1571
1635
|
{
|
|
1572
1636
|
"path": "src/integrations/ownership-policy.ts",
|
|
@@ -1586,7 +1650,7 @@
|
|
|
1586
1650
|
},
|
|
1587
1651
|
{
|
|
1588
1652
|
"path": "src/integrations/state.ts",
|
|
1589
|
-
"sha256": "
|
|
1653
|
+
"sha256": "7068adf0930d95aa29f3e375e76b0b6c1cd1c5fc2296962b30557f5319e1f68d"
|
|
1590
1654
|
},
|
|
1591
1655
|
{
|
|
1592
1656
|
"path": "src/integrations/store.ts",
|
|
@@ -1598,7 +1662,7 @@
|
|
|
1598
1662
|
},
|
|
1599
1663
|
{
|
|
1600
1664
|
"path": "src/integrations/writer.ts",
|
|
1601
|
-
"sha256": "
|
|
1665
|
+
"sha256": "521e04d5ecd8f519f1e3fda0114fdab1361fe2b738267f0c4b852632ddb597a9"
|
|
1602
1666
|
},
|
|
1603
1667
|
{
|
|
1604
1668
|
"path": "src/lab/artifacts/sanitize.ts",
|
|
@@ -1802,7 +1866,7 @@
|
|
|
1802
1866
|
},
|
|
1803
1867
|
{
|
|
1804
1868
|
"path": "src/lab/fabric/producer-isolate.ts",
|
|
1805
|
-
"sha256": "
|
|
1869
|
+
"sha256": "71fb160dc9be4444f11fbef768b62f6e2b0300c09188b362271dd7f61368d0ac"
|
|
1806
1870
|
},
|
|
1807
1871
|
{
|
|
1808
1872
|
"path": "src/lab/fabric/producer-protocol.ts",
|
|
@@ -2080,6 +2144,10 @@
|
|
|
2080
2144
|
"path": "src/lib/abort.ts",
|
|
2081
2145
|
"sha256": "303d4fef28a1fdf7c6a8f1feb612ff084d16f6a901648f1c768f518795ed2b26"
|
|
2082
2146
|
},
|
|
2147
|
+
{
|
|
2148
|
+
"path": "src/lib/account-selection-events.ts",
|
|
2149
|
+
"sha256": "a3397b42052052ab153b7abba43a814b882c4b51c129e91631fa8bbdad1ee855"
|
|
2150
|
+
},
|
|
2083
2151
|
{
|
|
2084
2152
|
"path": "src/lib/admin-secrets.ts",
|
|
2085
2153
|
"sha256": "4a2b0b36bbde05e58046c89d4b9a9a5ae5948b8329e71eabb365f81f519a88f9"
|
|
@@ -2150,7 +2218,7 @@
|
|
|
2150
2218
|
},
|
|
2151
2219
|
{
|
|
2152
2220
|
"path": "src/lib/errors.ts",
|
|
2153
|
-
"sha256": "
|
|
2221
|
+
"sha256": "73bbd2a7952639f11e24fdbb31c4bf983f88569f62e531441d060f00f2a78f0b"
|
|
2154
2222
|
},
|
|
2155
2223
|
{
|
|
2156
2224
|
"path": "src/lib/eventstream-decoder.ts",
|
|
@@ -2238,7 +2306,7 @@
|
|
|
2238
2306
|
},
|
|
2239
2307
|
{
|
|
2240
2308
|
"path": "src/lib/provider-outbound.ts",
|
|
2241
|
-
"sha256": "
|
|
2309
|
+
"sha256": "0c452e004dc82a5bff53949df04acce86cf5379e6c2e8c020e6764443b310044"
|
|
2242
2310
|
},
|
|
2243
2311
|
{
|
|
2244
2312
|
"path": "src/lib/provider-url.ts",
|
|
@@ -2246,7 +2314,7 @@
|
|
|
2246
2314
|
},
|
|
2247
2315
|
{
|
|
2248
2316
|
"path": "src/lib/proxy-env.ts",
|
|
2249
|
-
"sha256": "
|
|
2317
|
+
"sha256": "7624b73aef012e403121f4d4d3ed36b5a30df9768371953b6efc29af6a1276f4"
|
|
2250
2318
|
},
|
|
2251
2319
|
{
|
|
2252
2320
|
"path": "src/lib/redact-folding.ts",
|
|
@@ -2398,11 +2466,11 @@
|
|
|
2398
2466
|
},
|
|
2399
2467
|
{
|
|
2400
2468
|
"path": "src/oauth/account-quota-rank.ts",
|
|
2401
|
-
"sha256": "
|
|
2469
|
+
"sha256": "887bf27bf4684f43331aacc6ff1b1b9296d9f09f8227d14814ca7a33f8ece04d"
|
|
2402
2470
|
},
|
|
2403
2471
|
{
|
|
2404
2472
|
"path": "src/oauth/anthropic-routing.ts",
|
|
2405
|
-
"sha256": "
|
|
2473
|
+
"sha256": "fbf61f5b118f1d90a1a59dbe8970d4f635dde2960e386d2237666a1aa907fe87"
|
|
2406
2474
|
},
|
|
2407
2475
|
{
|
|
2408
2476
|
"path": "src/oauth/anthropic.ts",
|
|
@@ -2430,7 +2498,7 @@
|
|
|
2430
2498
|
},
|
|
2431
2499
|
{
|
|
2432
2500
|
"path": "src/oauth/generic-account-failover.ts",
|
|
2433
|
-
"sha256": "
|
|
2501
|
+
"sha256": "b29afbdea7c75b02945a0d4b0a5f28109496e4784d33a17d0d4543b8c072978b"
|
|
2434
2502
|
},
|
|
2435
2503
|
{
|
|
2436
2504
|
"path": "src/oauth/github-copilot.ts",
|
|
@@ -2446,7 +2514,7 @@
|
|
|
2446
2514
|
},
|
|
2447
2515
|
{
|
|
2448
2516
|
"path": "src/oauth/index.ts",
|
|
2449
|
-
"sha256": "
|
|
2517
|
+
"sha256": "ec4f27bd86a6da3d8ced1698bd868f1d127a02e963e1773e32b24deded9f4c6b"
|
|
2450
2518
|
},
|
|
2451
2519
|
{
|
|
2452
2520
|
"path": "src/oauth/key-providers.ts",
|
|
@@ -2494,11 +2562,11 @@
|
|
|
2494
2562
|
},
|
|
2495
2563
|
{
|
|
2496
2564
|
"path": "src/oauth/pool-settings-capability.ts",
|
|
2497
|
-
"sha256": "
|
|
2565
|
+
"sha256": "47ae68efaaef419a60bf56cc5ecc35524b17ce54678aed75c6732efbe325f5d2"
|
|
2498
2566
|
},
|
|
2499
2567
|
{
|
|
2500
2568
|
"path": "src/oauth/store.ts",
|
|
2501
|
-
"sha256": "
|
|
2569
|
+
"sha256": "09d92b83ef9c70a0c5d25562784d803633d6dd45569fb03f7dc9c8c86ca96344"
|
|
2502
2570
|
},
|
|
2503
2571
|
{
|
|
2504
2572
|
"path": "src/oauth/token-guardian.ts",
|
|
@@ -2506,7 +2574,7 @@
|
|
|
2506
2574
|
},
|
|
2507
2575
|
{
|
|
2508
2576
|
"path": "src/oauth/types.ts",
|
|
2509
|
-
"sha256": "
|
|
2577
|
+
"sha256": "c519696137b018881be64b76d75d8cb27666a234614afbd9a718e17cf1df7d3d"
|
|
2510
2578
|
},
|
|
2511
2579
|
{
|
|
2512
2580
|
"path": "src/oauth/xai.ts",
|
|
@@ -2532,9 +2600,13 @@
|
|
|
2532
2600
|
"path": "src/providers/antigravity-models.ts",
|
|
2533
2601
|
"sha256": "48d33a66f89b30ebbb3679341850ffa1e679994702bd9799b1af5c5c82432a9a"
|
|
2534
2602
|
},
|
|
2603
|
+
{
|
|
2604
|
+
"path": "src/providers/api-key-selection.ts",
|
|
2605
|
+
"sha256": "71d7c421b365fed18cf7d123bd0df94c6269519582f3da74249b25650c8b0d81"
|
|
2606
|
+
},
|
|
2535
2607
|
{
|
|
2536
2608
|
"path": "src/providers/api-keys.ts",
|
|
2537
|
-
"sha256": "
|
|
2609
|
+
"sha256": "926c5004b355edec7434afdef1e28fdbb9b01b7071a0ad3e3f02f13b7185e190"
|
|
2538
2610
|
},
|
|
2539
2611
|
{
|
|
2540
2612
|
"path": "src/providers/auto-compact-budget.ts",
|
|
@@ -2554,7 +2626,7 @@
|
|
|
2554
2626
|
},
|
|
2555
2627
|
{
|
|
2556
2628
|
"path": "src/providers/context-cap.ts",
|
|
2557
|
-
"sha256": "
|
|
2629
|
+
"sha256": "886a124b10f639f6f7761d570df0168f9150d89cdda4c421105735bb904a8c3d"
|
|
2558
2630
|
},
|
|
2559
2631
|
{
|
|
2560
2632
|
"path": "src/providers/cursor-pool.ts",
|
|
@@ -2594,7 +2666,7 @@
|
|
|
2594
2666
|
},
|
|
2595
2667
|
{
|
|
2596
2668
|
"path": "src/providers/key-failover.ts",
|
|
2597
|
-
"sha256": "
|
|
2669
|
+
"sha256": "d0d62b784a34c82cf436bcff2978b91a494545bb4fd1b281f00dececfaca2e13"
|
|
2598
2670
|
},
|
|
2599
2671
|
{
|
|
2600
2672
|
"path": "src/providers/key-store.ts",
|
|
@@ -2678,7 +2750,7 @@
|
|
|
2678
2750
|
},
|
|
2679
2751
|
{
|
|
2680
2752
|
"path": "src/providers/provider-id-rewrite.ts",
|
|
2681
|
-
"sha256": "
|
|
2753
|
+
"sha256": "a9dfea93d89163086e0c0c047c53b2902f7ca804a66c58e2f40333e28d6b9aa1"
|
|
2682
2754
|
},
|
|
2683
2755
|
{
|
|
2684
2756
|
"path": "src/providers/quota-key-accounts.ts",
|
|
@@ -2702,7 +2774,7 @@
|
|
|
2702
2774
|
},
|
|
2703
2775
|
{
|
|
2704
2776
|
"path": "src/providers/registry.ts",
|
|
2705
|
-
"sha256": "
|
|
2777
|
+
"sha256": "fdc9f2e605de777863f7372eedd8b401db80c4a6bb0032feddfa8a7f66c3cad7"
|
|
2706
2778
|
},
|
|
2707
2779
|
{
|
|
2708
2780
|
"path": "src/providers/request-pacing.ts",
|
|
@@ -2790,7 +2862,11 @@
|
|
|
2790
2862
|
},
|
|
2791
2863
|
{
|
|
2792
2864
|
"path": "src/responses/custom-tool-compat.ts",
|
|
2793
|
-
"sha256": "
|
|
2865
|
+
"sha256": "1545dee0ee7f29d0c489dc4bf3975984fd9648dbca5de50effc97f7df9adc024"
|
|
2866
|
+
},
|
|
2867
|
+
{
|
|
2868
|
+
"path": "src/responses/function-call-compat.ts",
|
|
2869
|
+
"sha256": "642c72c2d9aeaad9c6840059eaab33e3729733447ac746197ad122e3c18b779b"
|
|
2794
2870
|
},
|
|
2795
2871
|
{
|
|
2796
2872
|
"path": "src/responses/hosted-tool-policy.ts",
|
|
@@ -2798,7 +2874,7 @@
|
|
|
2798
2874
|
},
|
|
2799
2875
|
{
|
|
2800
2876
|
"path": "src/responses/namespace-tool-compat.ts",
|
|
2801
|
-
"sha256": "
|
|
2877
|
+
"sha256": "29ab7614e0757cde8bf81ad86da407afc8cb6d05027da22375fcca9a95de63b0"
|
|
2802
2878
|
},
|
|
2803
2879
|
{
|
|
2804
2880
|
"path": "src/responses/parser-content.ts",
|
|
@@ -2814,7 +2890,7 @@
|
|
|
2814
2890
|
},
|
|
2815
2891
|
{
|
|
2816
2892
|
"path": "src/responses/parser.ts",
|
|
2817
|
-
"sha256": "
|
|
2893
|
+
"sha256": "1c263b6b86a839bf8e75d00f6ab5210c96d47a8750e81e03a7fff4e7a346d66b"
|
|
2818
2894
|
},
|
|
2819
2895
|
{
|
|
2820
2896
|
"path": "src/responses/provider-continuation.ts",
|
|
@@ -2844,6 +2920,10 @@
|
|
|
2844
2920
|
"path": "src/responses/state.ts",
|
|
2845
2921
|
"sha256": "32178760039b27dcaef8d7288fc066bc81a1ee173b756cd3c4b3c9e97864a7cd"
|
|
2846
2922
|
},
|
|
2923
|
+
{
|
|
2924
|
+
"path": "src/responses/task-input.ts",
|
|
2925
|
+
"sha256": "f0b4a8c71b7acd5cc3b4bf2f747ee523bcb4295767d9c27e069de3f46c6d5759"
|
|
2926
|
+
},
|
|
2847
2927
|
{
|
|
2848
2928
|
"path": "src/responses/thought-signature-replay.ts",
|
|
2849
2929
|
"sha256": "4d1d65f8231af543f59e5493f2bb17f0a3c2f74f201e975812277462e5944843"
|
|
@@ -2852,6 +2932,10 @@
|
|
|
2852
2932
|
"path": "src/responses/tool-groups.ts",
|
|
2853
2933
|
"sha256": "b2750b33ec7bb5a7f76f27584bf99372fac4f253dd287849b2f3f9821db574cd"
|
|
2854
2934
|
},
|
|
2935
|
+
{
|
|
2936
|
+
"path": "src/responses/tool-name-aliases.ts",
|
|
2937
|
+
"sha256": "19338602099c6ea9947200310bddd36b1f86ee93f5d5def2019182d0e71255bd"
|
|
2938
|
+
},
|
|
2855
2939
|
{
|
|
2856
2940
|
"path": "src/responses/tool-search-compat.ts",
|
|
2857
2941
|
"sha256": "25ddbc4dd8f04ce43804aab64fdf5dcc402703529b8252d2c64bbb5749ece4a6"
|
|
@@ -2866,7 +2950,7 @@
|
|
|
2866
2950
|
},
|
|
2867
2951
|
{
|
|
2868
2952
|
"path": "src/router.ts",
|
|
2869
|
-
"sha256": "
|
|
2953
|
+
"sha256": "efa46cc81115575bc3c47ce4910adf75b4ffd34674f27661b5d2f3d1e3c08363"
|
|
2870
2954
|
},
|
|
2871
2955
|
{
|
|
2872
2956
|
"path": "src/routing/analytics.ts",
|
|
@@ -2874,11 +2958,11 @@
|
|
|
2874
2958
|
},
|
|
2875
2959
|
{
|
|
2876
2960
|
"path": "src/routing/capability.ts",
|
|
2877
|
-
"sha256": "
|
|
2961
|
+
"sha256": "4568de82d6aa92d53ca2c4ff6370650ce5c5d2b4e536e422d305e39c4c300ad7"
|
|
2878
2962
|
},
|
|
2879
2963
|
{
|
|
2880
2964
|
"path": "src/routing/compatibility/assemble.ts",
|
|
2881
|
-
"sha256": "
|
|
2965
|
+
"sha256": "5b870fa9b831ed5dc87815bb999d35e2c11912b0edee9a552675272ba2ed81c8"
|
|
2882
2966
|
},
|
|
2883
2967
|
{
|
|
2884
2968
|
"path": "src/routing/compatibility/behavior.ts",
|
|
@@ -2926,7 +3010,7 @@
|
|
|
2926
3010
|
},
|
|
2927
3011
|
{
|
|
2928
3012
|
"path": "src/routing/evaluator.ts",
|
|
2929
|
-
"sha256": "
|
|
3013
|
+
"sha256": "59b2b315820717b6f7220719a8f93fd850687e452b1df1ca83ff38b592357cdc"
|
|
2930
3014
|
},
|
|
2931
3015
|
{
|
|
2932
3016
|
"path": "src/routing/health.ts",
|
|
@@ -2970,7 +3054,7 @@
|
|
|
2970
3054
|
},
|
|
2971
3055
|
{
|
|
2972
3056
|
"path": "src/server/auth-cors.ts",
|
|
2973
|
-
"sha256": "
|
|
3057
|
+
"sha256": "a072500cd66fd889ad406b2934779cd736d2a0eed1a28c47ee17084662cc723b"
|
|
2974
3058
|
},
|
|
2975
3059
|
{
|
|
2976
3060
|
"path": "src/server/background-lifecycle.ts",
|
|
@@ -2990,11 +3074,11 @@
|
|
|
2990
3074
|
},
|
|
2991
3075
|
{
|
|
2992
3076
|
"path": "src/server/chat-native.ts",
|
|
2993
|
-
"sha256": "
|
|
3077
|
+
"sha256": "f48d57bb19656e5a6fb8075a67485f5acaec68d76817cd1b29752ed6cb01d734"
|
|
2994
3078
|
},
|
|
2995
3079
|
{
|
|
2996
3080
|
"path": "src/server/claude-messages.ts",
|
|
2997
|
-
"sha256": "
|
|
3081
|
+
"sha256": "056a68fdb75af41a62b2d737df63d17b9e6375f22b6f8c1769f955cb68869fdb"
|
|
2998
3082
|
},
|
|
2999
3083
|
{
|
|
3000
3084
|
"path": "src/server/direct-local-http.ts",
|
|
@@ -3016,6 +3100,10 @@
|
|
|
3016
3100
|
"path": "src/server/github-copilot-responses-repair.ts",
|
|
3017
3101
|
"sha256": "7cff66ca0b8e1b4ff64e29c3b353d876d053a9612a0c357ea5af9603c8400629"
|
|
3018
3102
|
},
|
|
3103
|
+
{
|
|
3104
|
+
"path": "src/server/grok-responses-snapshot-repair.ts",
|
|
3105
|
+
"sha256": "d5a84a2fb2b8707a30fb5cde48342968af2a0898a5e92cd843faa53e0cb73ef6"
|
|
3106
|
+
},
|
|
3019
3107
|
{
|
|
3020
3108
|
"path": "src/server/gui-session.ts",
|
|
3021
3109
|
"sha256": "20cfd02871fdac992f1b5a25149eedffc8b7a962d0fe6b52d5b59e2ed1fb0464"
|
|
@@ -3034,7 +3122,7 @@
|
|
|
3034
3122
|
},
|
|
3035
3123
|
{
|
|
3036
3124
|
"path": "src/server/index.ts",
|
|
3037
|
-
"sha256": "
|
|
3125
|
+
"sha256": "310eea35bb2b472b162cbff9d74440fa7fdae194f033d0e6512dbf8ad2ff0ae2"
|
|
3038
3126
|
},
|
|
3039
3127
|
{
|
|
3040
3128
|
"path": "src/server/lifecycle.ts",
|
|
@@ -3058,7 +3146,11 @@
|
|
|
3058
3146
|
},
|
|
3059
3147
|
{
|
|
3060
3148
|
"path": "src/server/management-auth.ts",
|
|
3061
|
-
"sha256": "
|
|
3149
|
+
"sha256": "4e3829e484be143121a332287e15251bdc19f7fe720851a15886b28e4bfece02"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"path": "src/server/management/account-selection-stream.ts",
|
|
3153
|
+
"sha256": "98a26a5d3a75ae81c8c1f9e21e202ddb97a3d18566a61b8b37316bd69835117c"
|
|
3062
3154
|
},
|
|
3063
3155
|
{
|
|
3064
3156
|
"path": "src/server/management/agent-settings-routes.ts",
|
|
@@ -3076,6 +3168,10 @@
|
|
|
3076
3168
|
"path": "src/server/management/api-key-usage.ts",
|
|
3077
3169
|
"sha256": "b43e83b249ad82ba1f4f04504c0a19ddd5d7e4f5a23292eaf2309dec58838a3f"
|
|
3078
3170
|
},
|
|
3171
|
+
{
|
|
3172
|
+
"path": "src/server/management/aside-profile-routes.ts",
|
|
3173
|
+
"sha256": "5004537275dc7ba0c40d218ab85a5d1de10e64649fb0ba1ac79fed10080a3f9e"
|
|
3174
|
+
},
|
|
3079
3175
|
{
|
|
3080
3176
|
"path": "src/server/management/body.ts",
|
|
3081
3177
|
"sha256": "3839e768c3a698faca0d3213eca9187d113f38ad60b5c47fa1849347ca96e20a"
|
|
@@ -3090,11 +3186,11 @@
|
|
|
3090
3186
|
},
|
|
3091
3187
|
{
|
|
3092
3188
|
"path": "src/server/management/config-routes.ts",
|
|
3093
|
-
"sha256": "
|
|
3189
|
+
"sha256": "ea2861451b393aeb027c525585b46a0e2e0e071c09894106c4fc1e1560e88231"
|
|
3094
3190
|
},
|
|
3095
3191
|
{
|
|
3096
3192
|
"path": "src/server/management/context.ts",
|
|
3097
|
-
"sha256": "
|
|
3193
|
+
"sha256": "e5b56be133796f0c8d942e0912e499c465e7fa7bf06203e0e59929b561791a19"
|
|
3098
3194
|
},
|
|
3099
3195
|
{
|
|
3100
3196
|
"path": "src/server/management/cursor-integration-routes.ts",
|
|
@@ -3102,7 +3198,7 @@
|
|
|
3102
3198
|
},
|
|
3103
3199
|
{
|
|
3104
3200
|
"path": "src/server/management/integration-routes.ts",
|
|
3105
|
-
"sha256": "
|
|
3201
|
+
"sha256": "9455ba483dfc83bf3fc7b359a5543875f98c0440b433dfabd3539e2cbe77f433"
|
|
3106
3202
|
},
|
|
3107
3203
|
{
|
|
3108
3204
|
"path": "src/server/management/lab-automation-routes.ts",
|
|
@@ -3114,15 +3210,15 @@
|
|
|
3114
3210
|
},
|
|
3115
3211
|
{
|
|
3116
3212
|
"path": "src/server/management/logs-usage-routes.ts",
|
|
3117
|
-
"sha256": "
|
|
3213
|
+
"sha256": "bc8b1a0c0a491443fc40ca0cc4176442bce9c1b0ee95e7798c3a9a83878ec911"
|
|
3118
3214
|
},
|
|
3119
3215
|
{
|
|
3120
3216
|
"path": "src/server/management/model-routes.ts",
|
|
3121
|
-
"sha256": "
|
|
3217
|
+
"sha256": "1a74253441dffbc9464c0b7aade7b81dadaba301ea9c7361c4d2b6cdf5907afd"
|
|
3122
3218
|
},
|
|
3123
3219
|
{
|
|
3124
3220
|
"path": "src/server/management/model-rows.ts",
|
|
3125
|
-
"sha256": "
|
|
3221
|
+
"sha256": "37e15d85246360bb5d9a86818feedecc5258904784e2df427c35968911d1bac0"
|
|
3126
3222
|
},
|
|
3127
3223
|
{
|
|
3128
3224
|
"path": "src/server/management/native-integration-routes.ts",
|
|
@@ -3130,7 +3226,7 @@
|
|
|
3130
3226
|
},
|
|
3131
3227
|
{
|
|
3132
3228
|
"path": "src/server/management/oauth-account-routes.ts",
|
|
3133
|
-
"sha256": "
|
|
3229
|
+
"sha256": "32da2e55849e717b8e7024bd216969cb50f1b17b9c92afa5d713d4a0bc8abfa2"
|
|
3134
3230
|
},
|
|
3135
3231
|
{
|
|
3136
3232
|
"path": "src/server/management/provider-capability-config.ts",
|
|
@@ -3138,7 +3234,7 @@
|
|
|
3138
3234
|
},
|
|
3139
3235
|
{
|
|
3140
3236
|
"path": "src/server/management/provider-routes.ts",
|
|
3141
|
-
"sha256": "
|
|
3237
|
+
"sha256": "36c11b34e5fda7487fdd36a8bced165b6ca96cac57ca2ae7b986bddb1ef9ffe8"
|
|
3142
3238
|
},
|
|
3143
3239
|
{
|
|
3144
3240
|
"path": "src/server/management/quota-reset-routes.ts",
|
|
@@ -3150,7 +3246,7 @@
|
|
|
3150
3246
|
},
|
|
3151
3247
|
{
|
|
3152
3248
|
"path": "src/server/management/route-registry.ts",
|
|
3153
|
-
"sha256": "
|
|
3249
|
+
"sha256": "71fc42094743a07bb6ddc2912fe34be686e71bbbb4e61192a10ed0cd7e1c730a"
|
|
3154
3250
|
},
|
|
3155
3251
|
{
|
|
3156
3252
|
"path": "src/server/management/routing-analytics-routes.ts",
|
|
@@ -3238,11 +3334,11 @@
|
|
|
3238
3334
|
},
|
|
3239
3335
|
{
|
|
3240
3336
|
"path": "src/server/relay-eager.ts",
|
|
3241
|
-
"sha256": "
|
|
3337
|
+
"sha256": "fdb94f2b2433d23bc273e785e325f190ba1cba447a427d54696356e2ea830921"
|
|
3242
3338
|
},
|
|
3243
3339
|
{
|
|
3244
3340
|
"path": "src/server/relay.ts",
|
|
3245
|
-
"sha256": "
|
|
3341
|
+
"sha256": "0fd1843a6cfef03ac35ce43976b89a22a70bd9631bfb327d8605414d2f78c223"
|
|
3246
3342
|
},
|
|
3247
3343
|
{
|
|
3248
3344
|
"path": "src/server/request-decompress.ts",
|
|
@@ -3254,11 +3350,15 @@
|
|
|
3254
3350
|
},
|
|
3255
3351
|
{
|
|
3256
3352
|
"path": "src/server/request-log.ts",
|
|
3257
|
-
"sha256": "
|
|
3353
|
+
"sha256": "9918e39e25c4f0004ce560e0fd758c21b5e44525260c6fec0f1a2e72c88c87bd"
|
|
3258
3354
|
},
|
|
3259
3355
|
{
|
|
3260
3356
|
"path": "src/server/responses-custom-tool-repair.ts",
|
|
3261
|
-
"sha256": "
|
|
3357
|
+
"sha256": "9b29bc429d83cd5ab46b358eed46356514b88f9508716afa8080b93dca848f84"
|
|
3358
|
+
},
|
|
3359
|
+
{
|
|
3360
|
+
"path": "src/server/responses-function-tool-repair.ts",
|
|
3361
|
+
"sha256": "e32fc0a7669cc6c085c3a6287f3382bfc12223dc78ff96cea90927fc3bbaa0a6"
|
|
3262
3362
|
},
|
|
3263
3363
|
{
|
|
3264
3364
|
"path": "src/server/responses-image-gen-repair.ts",
|
|
@@ -3284,9 +3384,13 @@
|
|
|
3284
3384
|
"path": "src/server/responses-self-named-namespace-scrub.ts",
|
|
3285
3385
|
"sha256": "fe4a833cbc6ba27664fb7f4892a9ac6982b1dc3c84d5a950f08955dbbdd7560a"
|
|
3286
3386
|
},
|
|
3387
|
+
{
|
|
3388
|
+
"path": "src/server/responses-snapshot-codec.ts",
|
|
3389
|
+
"sha256": "37bd6288b65d0bfe1cba21d9608412ab64ab8c4e6a386e94e340497eba5ede8d"
|
|
3390
|
+
},
|
|
3287
3391
|
{
|
|
3288
3392
|
"path": "src/server/responses-snapshot-repair.ts",
|
|
3289
|
-
"sha256": "
|
|
3393
|
+
"sha256": "082997b9c23a1238aee5ad341d7e083cf86ea3c8d62126c035e4c0c63bacc55b"
|
|
3290
3394
|
},
|
|
3291
3395
|
{
|
|
3292
3396
|
"path": "src/server/responses-terminal-repair.ts",
|
|
@@ -3298,7 +3402,7 @@
|
|
|
3298
3402
|
},
|
|
3299
3403
|
{
|
|
3300
3404
|
"path": "src/server/responses-undeclared-tool-guard.ts",
|
|
3301
|
-
"sha256": "
|
|
3405
|
+
"sha256": "8570d91b8a5a2a4b636de2af8b75855d59fd28905783fad24da6fb2d43303ace"
|
|
3302
3406
|
},
|
|
3303
3407
|
{
|
|
3304
3408
|
"path": "src/server/responses.ts",
|
|
@@ -3306,11 +3410,11 @@
|
|
|
3306
3410
|
},
|
|
3307
3411
|
{
|
|
3308
3412
|
"path": "src/server/responses/agent-task-recovery-cache.ts",
|
|
3309
|
-
"sha256": "
|
|
3413
|
+
"sha256": "355cd82be77db1d588f433c7337d04961f58f45048b98832b0db0b1d917d48b3"
|
|
3310
3414
|
},
|
|
3311
3415
|
{
|
|
3312
3416
|
"path": "src/server/responses/agent-task-recovery.ts",
|
|
3313
|
-
"sha256": "
|
|
3417
|
+
"sha256": "c4f6d898fb097ad83b0a69de8b95a01f4a4873c416f6cd6b443b2b20e77d7b69"
|
|
3314
3418
|
},
|
|
3315
3419
|
{
|
|
3316
3420
|
"path": "src/server/responses/codex-auth-error.ts",
|
|
@@ -3330,7 +3434,7 @@
|
|
|
3330
3434
|
},
|
|
3331
3435
|
{
|
|
3332
3436
|
"path": "src/server/responses/codex-ws-pool.ts",
|
|
3333
|
-
"sha256": "
|
|
3437
|
+
"sha256": "c9573ac68b1d9ca9626d4b0892d05cd3012d216fc69c343405eb899e1286bebb"
|
|
3334
3438
|
},
|
|
3335
3439
|
{
|
|
3336
3440
|
"path": "src/server/responses/codex-ws-request.ts",
|
|
@@ -3338,7 +3442,7 @@
|
|
|
3338
3442
|
},
|
|
3339
3443
|
{
|
|
3340
3444
|
"path": "src/server/responses/codex-ws-session.ts",
|
|
3341
|
-
"sha256": "
|
|
3445
|
+
"sha256": "3471205712bf7105971df4f06759e2816e74443190cdbd4befd877dc587c3c7a"
|
|
3342
3446
|
},
|
|
3343
3447
|
{
|
|
3344
3448
|
"path": "src/server/responses/codex-ws-wire.ts",
|
|
@@ -3346,11 +3450,11 @@
|
|
|
3346
3450
|
},
|
|
3347
3451
|
{
|
|
3348
3452
|
"path": "src/server/responses/collaboration.ts",
|
|
3349
|
-
"sha256": "
|
|
3453
|
+
"sha256": "031603ccc5195ea7d74df7349464ad949739c0020f9cf179a4da36f566b5d921"
|
|
3350
3454
|
},
|
|
3351
3455
|
{
|
|
3352
3456
|
"path": "src/server/responses/combo-stream-preflight.ts",
|
|
3353
|
-
"sha256": "
|
|
3457
|
+
"sha256": "5e3d4cf23dc3cdc67ed49ad7c4a185419844a01e65d68e523b5a98b51120d406"
|
|
3354
3458
|
},
|
|
3355
3459
|
{
|
|
3356
3460
|
"path": "src/server/responses/compact.ts",
|
|
@@ -3362,7 +3466,7 @@
|
|
|
3362
3466
|
},
|
|
3363
3467
|
{
|
|
3364
3468
|
"path": "src/server/responses/core.ts",
|
|
3365
|
-
"sha256": "
|
|
3469
|
+
"sha256": "31cb091db2d14317e12ae16342fa7e264d4243d65d1a78a65787e56cc017eaf5"
|
|
3366
3470
|
},
|
|
3367
3471
|
{
|
|
3368
3472
|
"path": "src/server/responses/empty-completion-guard.ts",
|
|
@@ -3374,7 +3478,7 @@
|
|
|
3374
3478
|
},
|
|
3375
3479
|
{
|
|
3376
3480
|
"path": "src/server/responses/fetch-helpers.ts",
|
|
3377
|
-
"sha256": "
|
|
3481
|
+
"sha256": "4ae8b74a711002c3a050ff6a011ffd9847efdfa4340e4a18e27f098f9c828452"
|
|
3378
3482
|
},
|
|
3379
3483
|
{
|
|
3380
3484
|
"path": "src/server/responses/input-admission.ts",
|
|
@@ -3410,7 +3514,7 @@
|
|
|
3410
3514
|
},
|
|
3411
3515
|
{
|
|
3412
3516
|
"path": "src/server/responses/ws-upstream.ts",
|
|
3413
|
-
"sha256": "
|
|
3517
|
+
"sha256": "47a1ca10d4697fafc07d7d9547959c4643a22fc3ff18bac8393b06474a40f0eb"
|
|
3414
3518
|
},
|
|
3415
3519
|
{
|
|
3416
3520
|
"path": "src/server/safe-response-headers.ts",
|
|
@@ -3426,7 +3530,7 @@
|
|
|
3426
3530
|
},
|
|
3427
3531
|
{
|
|
3428
3532
|
"path": "src/server/sse-payload-rewrite.ts",
|
|
3429
|
-
"sha256": "
|
|
3533
|
+
"sha256": "c1f631a601557f630d27caa95a9676e95c2aec509b4a76c7022bef8d7e878600"
|
|
3430
3534
|
},
|
|
3431
3535
|
{
|
|
3432
3536
|
"path": "src/server/startup-action-control.ts",
|
|
@@ -3474,7 +3578,7 @@
|
|
|
3474
3578
|
},
|
|
3475
3579
|
{
|
|
3476
3580
|
"path": "src/service.ts",
|
|
3477
|
-
"sha256": "
|
|
3581
|
+
"sha256": "5ab1a11d5c5b6ad49d1e1c0e057d565600032765b71fe182ff0f2175d3b07dba"
|
|
3478
3582
|
},
|
|
3479
3583
|
{
|
|
3480
3584
|
"path": "src/sidecar/auth.ts",
|
|
@@ -3566,15 +3670,15 @@
|
|
|
3566
3670
|
},
|
|
3567
3671
|
{
|
|
3568
3672
|
"path": "src/types/config.ts",
|
|
3569
|
-
"sha256": "
|
|
3673
|
+
"sha256": "ea6d2d64f91a5e1be026f8f7182bd28a5823db9005f0bbe803ed05cbed0358de"
|
|
3570
3674
|
},
|
|
3571
3675
|
{
|
|
3572
3676
|
"path": "src/types/provider.ts",
|
|
3573
|
-
"sha256": "
|
|
3677
|
+
"sha256": "f0d5339cbf20f82d31fbf403700729040f4376984769477daf5e0143c6df26d2"
|
|
3574
3678
|
},
|
|
3575
3679
|
{
|
|
3576
3680
|
"path": "src/types/request.ts",
|
|
3577
|
-
"sha256": "
|
|
3681
|
+
"sha256": "ab409fcbf3068411f35d4192e42e8994e49ea1dd1ff4eca4c065017495e5c13b"
|
|
3578
3682
|
},
|
|
3579
3683
|
{
|
|
3580
3684
|
"path": "src/types/tools.ts",
|
|
@@ -3682,7 +3786,7 @@
|
|
|
3682
3786
|
},
|
|
3683
3787
|
{
|
|
3684
3788
|
"path": "src/usage/log.ts",
|
|
3685
|
-
"sha256": "
|
|
3789
|
+
"sha256": "891e5f077334e6703aefc6ef600fa0b45c5e91a1e0416416e550e1775a6c3a60"
|
|
3686
3790
|
},
|
|
3687
3791
|
{
|
|
3688
3792
|
"path": "src/usage/model-identity.ts",
|
|
@@ -3774,7 +3878,7 @@
|
|
|
3774
3878
|
},
|
|
3775
3879
|
{
|
|
3776
3880
|
"path": "src/web-search/loop.ts",
|
|
3777
|
-
"sha256": "
|
|
3881
|
+
"sha256": "8de82a4764dee1208a9cb01bf3e1ee962f4f1d8b19ac6513d14a15b4faefb532"
|
|
3778
3882
|
},
|
|
3779
3883
|
{
|
|
3780
3884
|
"path": "src/web-search/parse.ts",
|