@bitkyc08/opencodex 2.12.0 → 2.13.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 +1 -1
- package/gui/dist/assets/index-BHldBl6_.js +76 -0
- package/gui/dist/index.html +1 -1
- package/package.json +1 -1
- package/src/adapters/anthropic-output-schema.ts +137 -0
- package/src/adapters/anthropic.ts +15 -0
- package/src/adapters/google-antigravity-replay.ts +269 -5
- package/src/adapters/openai-chat.ts +25 -18
- package/src/adapters/openai-responses.ts +63 -17
- package/src/bridge.ts +11 -5
- package/src/claude/inbound.ts +24 -3
- package/src/cli/account-api.ts +2 -0
- package/src/cli/account-extended.ts +262 -1
- package/src/cli/account.ts +3 -1
- package/src/cli/dispatch.ts +532 -0
- package/src/cli/doctor.ts +26 -21
- package/src/cli/help.ts +9 -278
- package/src/cli/index.ts +45 -506
- package/src/cli/lab.ts +171 -65
- package/src/cli/registry.ts +384 -0
- package/src/cli/root.ts +86 -0
- package/src/cli/status.ts +9 -2
- package/src/cli/v2.ts +37 -2
- package/src/codex/account-label.ts +14 -1
- package/src/codex/account-store.ts +12 -1
- package/src/codex/admission.ts +2 -1
- package/src/codex/auth-api.ts +3 -2
- package/src/codex/catalog/metadata.ts +6 -4
- package/src/codex/catalog/parsing.ts +31 -7
- package/src/codex/catalog/provider-fetch.ts +2 -1
- package/src/codex/catalog/sync.ts +65 -11
- package/src/codex/features.ts +437 -31
- package/src/codex/history-job.ts +6 -11
- package/src/codex/history-provider.ts +10 -9
- package/src/codex/inject.ts +14 -1
- package/src/codex/native-profile-startup.ts +49 -3
- package/src/codex/native-residue.ts +14 -2
- package/src/codex/paths.ts +75 -1
- package/src/codex/reset-credit-recovery.ts +1044 -0
- package/src/codex/shim.ts +876 -16
- package/src/codex/sync.ts +27 -2
- package/src/config.ts +148 -10
- package/src/generated/compatibility-version.json +2572 -0
- package/src/images/loop.ts +1 -1
- package/src/lab/artifacts/sanitize.ts +3 -3
- package/src/lab/automation/budgets.ts +78 -0
- package/src/lab/automation/config-persistence.ts +256 -0
- package/src/lab/automation/constants.ts +39 -0
- package/src/lab/automation/cooldown.ts +103 -0
- package/src/lab/automation/dispatch.ts +211 -0
- package/src/lab/automation/index.ts +13 -0
- package/src/lab/automation/orchestrator.ts +480 -0
- package/src/lab/automation/persistence.ts +512 -0
- package/src/lab/automation/planner.ts +371 -0
- package/src/lab/automation/policy.ts +136 -0
- package/src/lab/automation/queue.ts +191 -0
- package/src/lab/automation/recovery.ts +24 -0
- package/src/lab/automation/route-context.ts +21 -0
- package/src/lab/automation/run-key.ts +44 -0
- package/src/lab/automation/runs-query.ts +34 -0
- package/src/lab/automation/types.ts +160 -0
- package/src/lab/conformance/types.ts +23 -0
- package/src/lab/events/types.ts +2 -1
- package/src/lab/events/validate.ts +2 -1
- package/src/lab/fabric/constants.ts +40 -0
- package/src/lab/fabric/executor.ts +492 -0
- package/src/lab/fabric/index.ts +80 -0
- package/src/lab/fabric/manifest.ts +222 -0
- package/src/lab/fabric/observe.ts +454 -0
- package/src/lab/fabric/patch.ts +79 -0
- package/src/lab/fabric/producer-child.ts +139 -0
- package/src/lab/fabric/producer-isolate.ts +276 -0
- package/src/lab/fabric/producer-protocol.ts +61 -0
- package/src/lab/fabric/scratch.ts +439 -0
- package/src/lab/fabric/subject.ts +106 -0
- package/src/lab/fabric/types.ts +134 -0
- package/src/lab/fabric/verifier.ts +98 -0
- package/src/lab/index.ts +2 -0
- package/src/lab/ledger/store.ts +173 -0
- package/src/lab/live/executor.ts +29 -4
- package/src/lab/live/transport.ts +3 -1
- package/src/lab/observe/from-conformance.ts +12 -57
- package/src/lab/observe/from-live.ts +9 -1
- package/src/lab/paths.ts +74 -9
- package/src/lab/projection/schema.ts +14 -1
- package/src/lab/projection/verdicts.ts +89 -53
- package/src/lab/projection/verification.ts +83 -3
- package/src/lab/query/catalog.ts +34 -5
- package/src/lab/query/freshness.ts +53 -0
- package/src/lab/query/index.ts +11 -0
- package/src/lab/query/latest-observation.ts +59 -0
- package/src/lab/query/passive-production.ts +159 -0
- package/src/lab/subject/installation-salt.ts +24 -4
- package/src/lab/subject/protocol-subject.ts +80 -0
- package/src/lab/subject/route-subject.ts +2 -1
- package/src/lib/fabric-task-execution-authority.ts +7 -0
- package/src/lib/fabric-task-host.ts +29 -0
- package/src/lib/lab-live-route-production.ts +130 -0
- package/src/lib/local-management-capability.ts +100 -0
- package/src/lib/server-resource-ownership.ts +71 -0
- package/src/lib/windows-elevation.ts +8 -1
- package/src/lib/windows-user-principal.ts +62 -2
- package/src/lib/winsw.ts +8 -2
- package/src/oauth/account-import/google-antigravity-adapter.ts +74 -0
- package/src/oauth/account-import/index.ts +15 -0
- package/src/oauth/account-import/parser.ts +83 -0
- package/src/oauth/account-import/registry.ts +18 -0
- package/src/oauth/account-import/service.ts +75 -0
- package/src/oauth/account-import/types.ts +91 -0
- package/src/oauth/anthropic.ts +12 -1
- package/src/oauth/callback-server.ts +8 -2
- package/src/oauth/chatgpt.ts +12 -1
- package/src/oauth/google-antigravity.ts +27 -0
- package/src/oauth/health.ts +12 -48
- package/src/oauth/index.ts +122 -0
- package/src/oauth/kimi.ts +16 -2
- package/src/oauth/nous.ts +749 -0
- package/src/oauth/store.ts +56 -3
- package/src/providers/codex-capacity.ts +1 -0
- package/src/providers/registry.ts +161 -16
- package/src/responses/custom-tool-compat.ts +182 -0
- package/src/responses/parser.ts +22 -0
- package/src/responses/reasoning-replay-cache.ts +168 -11
- package/src/responses/schema.ts +1 -1
- package/src/router.ts +5 -20
- package/src/routing/capability.ts +9 -3
- package/src/routing/compatibility/assemble.ts +159 -0
- package/src/routing/compatibility/behavior.ts +224 -0
- package/src/routing/compatibility/catalog.ts +99 -0
- package/src/routing/compatibility/endpoint.ts +52 -0
- package/src/routing/compatibility/policy.ts +181 -0
- package/src/routing/compatibility/reader.ts +110 -0
- package/src/routing/compatibility/subject.ts +191 -0
- package/src/routing/compatibility/types.ts +64 -0
- package/src/routing/compatibility/version.ts +104 -0
- package/src/routing/evaluator.ts +27 -32
- package/src/routing/profile.ts +118 -4
- package/src/routing/trace.ts +82 -28
- package/src/server/auth-cors.ts +7 -0
- package/src/server/background-lifecycle.ts +20 -7
- package/src/server/chat-completions.ts +2 -2
- package/src/server/claude-messages.ts +6 -3
- package/src/server/direct-local-http.ts +343 -0
- package/src/server/index.ts +80 -18
- package/src/server/lifecycle.ts +12 -4
- package/src/server/local-management-read-client.ts +90 -0
- package/src/server/management/agent-settings-routes.ts +27 -3
- package/src/server/management/lab-automation-routes.ts +206 -0
- package/src/server/management/lab-routes.ts +13 -0
- package/src/server/management/logs-usage-routes.ts +1 -0
- package/src/server/management/oauth-account-routes.ts +57 -1
- package/src/server/management/provider-routes.ts +16 -0
- package/src/server/management/routing-profile-routes.ts +12 -24
- package/src/server/management-api.ts +2 -0
- package/src/server/management-auth.ts +68 -3
- package/src/server/proxy-liveness.ts +3 -2
- package/src/server/request-decompress.ts +9 -3
- package/src/server/request-log.ts +53 -4
- package/src/server/responses/collaboration.ts +93 -17
- package/src/server/responses/compact.ts +3 -0
- package/src/server/responses/core.ts +202 -15
- package/src/server/responses/policy-fallback.ts +1 -0
- package/src/server/responses-custom-tool-repair.ts +280 -0
- package/src/server/responses-terminal-repair.ts +342 -0
- package/src/server/startup-action-control.ts +8 -1
- package/src/service.ts +278 -12
- package/src/types.ts +49 -3
- package/src/usage/expected-prices.ts +30 -0
- package/src/usage/log.ts +30 -4
- package/src/usage/summary.ts +153 -2
- package/src/web-search/loop.ts +1 -1
- package/gui/dist/assets/index-Cw1_mxO8.js +0 -70
- package/src/cli/internal-dispatch.ts +0 -20
|
@@ -0,0 +1,2572 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"assertionDslVersion": "1.0.0",
|
|
4
|
+
"evidenceSchemaVersion": "1.0.0",
|
|
5
|
+
"bunRuntimeVersion": "1.3.14",
|
|
6
|
+
"files": [
|
|
7
|
+
{
|
|
8
|
+
"path": "bun.lock",
|
|
9
|
+
"sha256": "a22537a6b5f7c67c3043c1c112d90122e0a1874d0704b5ce997f8e855975d103"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"path": "package.json",
|
|
13
|
+
"sha256": "1ff3c1bce888f5c8ef7f93955fcb1fcaf4dcdb36ad1c0a1c703ead55d9f0e278"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"path": "scripts/model-metadata.source.json",
|
|
17
|
+
"sha256": "7a9351238123fe98ebef43ca5345584792720a0c37c47a17954588eaaf2c2c2a"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"path": "src/AGENTS.md",
|
|
21
|
+
"sha256": "7fbf7040194413654fcd20db73349b348687b3c3dde46f7424741aaa0c988b42"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "src/adapters/anthropic-image-guard.ts",
|
|
25
|
+
"sha256": "ee4d66e70b7445f6ed946bbe058fc59dbd6d5844e6064eeb72e776648ccb89ab"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"path": "src/adapters/anthropic-image-normalize.ts",
|
|
29
|
+
"sha256": "f06b85a4428d46c842fc91ba94babc4da0ea6706d6bbdc99734c610a2fd2b406"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"path": "src/adapters/anthropic-output-schema.ts",
|
|
33
|
+
"sha256": "ee07b2e75242100805a72f59271a52a6008d587013f871b777ed91e706fd8d6b"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "src/adapters/anthropic.ts",
|
|
37
|
+
"sha256": "7245f5ae5b5b32444fcd50144d5f752f6fde39c471b30b355d44c27531a8059a"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"path": "src/adapters/azure.ts",
|
|
41
|
+
"sha256": "9eeea6a4138c92c5bf895cb23b2cd714b9b21c3571e47a9281f68ced40a91b9d"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"path": "src/adapters/base.ts",
|
|
45
|
+
"sha256": "67f50a3e0e45514f55f08d19726acfcab6fe4a9bd5e88bb7455b5af236a10663"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "src/adapters/client-fingerprint.ts",
|
|
49
|
+
"sha256": "6954cdf0885a7b55d179926117239c90e7f938b23ffd8c1b02392d183df4a253"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"path": "src/adapters/command-code.ts",
|
|
53
|
+
"sha256": "15fbd5b5caf01708823e75855e0159965b10b7604ee61c4e5dc9bd94bc143513"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"path": "src/adapters/cursor.ts",
|
|
57
|
+
"sha256": "07c69b13f646cc8568de5b075fd23792ad70e325368bf45710b4f98280fcbfd6"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"path": "src/adapters/cursor/arg-codec.ts",
|
|
61
|
+
"sha256": "607316e8f490421b81432498875da03f353dd189c71d112c4222a8fbea621c43"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"path": "src/adapters/cursor/arg-normalize.ts",
|
|
65
|
+
"sha256": "22653d0079149de74d3b2d2b8af13768a3e1e0e9e676a9452c987f723cbe40b6"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"path": "src/adapters/cursor/cursor-errors.ts",
|
|
69
|
+
"sha256": "456766d2be7d4859707c7ae666000f74d81357bde59a2b283027ee256d395b9e"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"path": "src/adapters/cursor/discovery.ts",
|
|
73
|
+
"sha256": "5369563e9b396e84a71798ca5631462d7408c53b13834b5cc7ac112db18303d2"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"path": "src/adapters/cursor/effort-map.ts",
|
|
77
|
+
"sha256": "f0f0cf87793635b4947189a9ca4ee8a8e2efae9de2d5566aca2c43eb323a2087"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"path": "src/adapters/cursor/exec-policy.ts",
|
|
81
|
+
"sha256": "737d62a9b4006ccbc54744472614f6f557d02738aa7bf525ec70c1abeadd5350"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"path": "src/adapters/cursor/framing.ts",
|
|
85
|
+
"sha256": "c6fb07b8df6c1b7282be52e8bf34364f358d67c7cedc174a32011011063edaba"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"path": "src/adapters/cursor/gen/agent_pb.ts",
|
|
89
|
+
"sha256": "819da889962a89f5b761cb14e76786f6e455e85bb49f59fdaf6778474b106012"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"path": "src/adapters/cursor/kv-store.ts",
|
|
93
|
+
"sha256": "9699c3b4bf5c61f42f2a6653755dc46d662513b728e0e284ca2b46a1006c57ed"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"path": "src/adapters/cursor/live-models.ts",
|
|
97
|
+
"sha256": "48d7e9bf63f512086ba5ec5324e355776948802dec29f30d9403e23d1b5cc6f9"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"path": "src/adapters/cursor/live-smoke-gate.ts",
|
|
101
|
+
"sha256": "717f742f7a8b777826170075d28d863601868cec13fbaf0464ae88a8dd985b64"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"path": "src/adapters/cursor/live-transport.ts",
|
|
105
|
+
"sha256": "7cc03eea3bb6b8ebd99dd134546e997d3eaf10e7c430a1bd7a0e3e283607ccef"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"path": "src/adapters/cursor/mcp-config.ts",
|
|
109
|
+
"sha256": "3ef083c37f6488881bf7da3ca8c0b6bb6a4ccb71d26231a07fd039c023df6468"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"path": "src/adapters/cursor/mcp-manager.ts",
|
|
113
|
+
"sha256": "be7b78c97606b2138fae0c4dfb5f5dcc71c17b93d7619a1bb16d5a934f92d587"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"path": "src/adapters/cursor/message-mapper.ts",
|
|
117
|
+
"sha256": "aa83d8db1616a8f43badb15dfc6ee8601e0604a50cb91569555f0f4488418f1c"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"path": "src/adapters/cursor/native-exec-common.ts",
|
|
121
|
+
"sha256": "e2329e2d9c55d1eca82486e209338a4eaf0c203491c5e1b26b25c3390357de8a"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"path": "src/adapters/cursor/native-exec-desktop.ts",
|
|
125
|
+
"sha256": "399541ed40019438df8cb670428db86a780ee3077fa8277a8663b1bbcd7361d0"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"path": "src/adapters/cursor/native-exec-fs.ts",
|
|
129
|
+
"sha256": "5bd07f38f2db1d0a384d8b37bb57c9f8b639c5257ee8dfb1606bf3491b203251"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"path": "src/adapters/cursor/native-exec-mcp.ts",
|
|
133
|
+
"sha256": "ee3707def79833823fe00d018da7a7faf3465a774f85965c89a38f74ddb85d15"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"path": "src/adapters/cursor/native-exec-network.ts",
|
|
137
|
+
"sha256": "16a4e4e14f3e835f72c34da7c2817bd5251ba4f1bd7d67cd044cf8222a59e6fc"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"path": "src/adapters/cursor/native-exec-shell.ts",
|
|
141
|
+
"sha256": "2748422bf6836f00e401f3e7a674dd29e2d85712596c2a9cc0e46ab48d334497"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"path": "src/adapters/cursor/native-exec-tools.ts",
|
|
145
|
+
"sha256": "3e19b4308c9fd12251f1e22e88f474fad16ca5d2f8f3ba7785cc7353ac519b16"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"path": "src/adapters/cursor/native-exec.ts",
|
|
149
|
+
"sha256": "0a9599735b9d3fc1d623b6595f9044818c161370dd87ae4d17d2e6bae344f01f"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"path": "src/adapters/cursor/protobuf-events.ts",
|
|
153
|
+
"sha256": "a5732084a5562242b7184321723ecf1a6e0009080d69f82fbea3ac66969d135f"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"path": "src/adapters/cursor/protobuf-request.ts",
|
|
157
|
+
"sha256": "0d82660ab54e2bc0b29c7b4524bf1a56a55c14c08ce11ed8dc0da4c69ed805bd"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"path": "src/adapters/cursor/request-builder.ts",
|
|
161
|
+
"sha256": "9613d5b38fef9cf689665905785ac4a0a6f674336e35fb22b430968032d02734"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"path": "src/adapters/cursor/thread-continuity.ts",
|
|
165
|
+
"sha256": "56972b722418dc54dfb58136abd3d36fc87e630dc6f3e7c87d2a569c54b0bcf8"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"path": "src/adapters/cursor/tool-definitions.ts",
|
|
169
|
+
"sha256": "66f6c5c6b6f25c0d58cd63f6a23b8e3bf4192ac8f3608b1cfe37c9bec7d5901c"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"path": "src/adapters/cursor/transport-retry.ts",
|
|
173
|
+
"sha256": "e3fa409982c0e35caa9bca1471f8b66e8218ecb02b562db7b0e41aecc14af55f"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"path": "src/adapters/cursor/transport.ts",
|
|
177
|
+
"sha256": "8f1b4b8576c6e0d33121e2d6fa01b79740aeb41b1355cc0c7f409459f669bc31"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"path": "src/adapters/cursor/types.ts",
|
|
181
|
+
"sha256": "04e67c565768384d327be7dceb66d52562bba0f956c4d84e45e82c0d9e6453a0"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"path": "src/adapters/google-antigravity-replay.ts",
|
|
185
|
+
"sha256": "230da5cd5c6a94c2f520eeea2905294df6320e95e6f6e42569a4bfe04724193d"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"path": "src/adapters/google-antigravity-wire.ts",
|
|
189
|
+
"sha256": "1d4b78e8002aba15e94e222ab5e0b4adf1a1a2754922ff967c5be2acaa16a3dc"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"path": "src/adapters/google-errors.ts",
|
|
193
|
+
"sha256": "e83696181b6bb454f7c2adcd85446bd79debadd94a7f3fcebb4c76267e4f4aad"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"path": "src/adapters/google-http.ts",
|
|
197
|
+
"sha256": "f4a37ec650af594d902c7028ea3fce01d7747c61670b93df10a349d89bc82ada"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"path": "src/adapters/google-tool-schema.ts",
|
|
201
|
+
"sha256": "d5bcf65418bfade8a3d98a26c7ffc1b657f943eca0e44528e8817a9ef4f5e4ac"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"path": "src/adapters/google-truncation.ts",
|
|
205
|
+
"sha256": "9e8d317ec04b6c11314a3a47bc14cd57c4e1f8cc5bbe7dbbe91a1e787d1928a6"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"path": "src/adapters/google-wire-compiler.ts",
|
|
209
|
+
"sha256": "23e981c264293f5c6d4839f6e14fdb1428e37af8f91a918ef0e92fd8ffa4637d"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"path": "src/adapters/google.ts",
|
|
213
|
+
"sha256": "01df2062d6902ad506bd3b35301ce186fff61a502096e2830ae2d3382dd94b51"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"path": "src/adapters/identity.ts",
|
|
217
|
+
"sha256": "ee5ecb8164e70da97e2e75495a3abc909abcf058e49609325d6b473c3634110f"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"path": "src/adapters/image.ts",
|
|
221
|
+
"sha256": "c66ec73b4ef79b725cc3ca38f1188a4973bf5ce3e46733733011a27ee6e5799a"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"path": "src/adapters/kiro-constants.ts",
|
|
225
|
+
"sha256": "395523ffa10de86f531874e98c6c43ec7c56d7c037b42ef5884b471ec7dc802a"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"path": "src/adapters/kiro-errors.ts",
|
|
229
|
+
"sha256": "9ea0e3cdf55c307453493e0e2c3276f1efd4bdd60769df11a1d5bba49c02931c"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"path": "src/adapters/kiro-events.ts",
|
|
233
|
+
"sha256": "5db4ca3ba61f97075667acde07aa686389ee9534bb15d48b742f5393d06928c7"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"path": "src/adapters/kiro-images.ts",
|
|
237
|
+
"sha256": "3eb03461d85d2f11ecc53870a953737ff2836b093e4bd0881b5d4e0b40ed03d7"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"path": "src/adapters/kiro-retry.ts",
|
|
241
|
+
"sha256": "8d8ee6d26ffb95226978d4191721b32b4cd531f502833be42aa66d9f40c9a4df"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"path": "src/adapters/kiro-thinking.ts",
|
|
245
|
+
"sha256": "d4016e1314c8b91bada92fff3ec4b94d0e1d88c4e51db49c29a482584844dfe0"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"path": "src/adapters/kiro-tool-fallback.ts",
|
|
249
|
+
"sha256": "2dd54a3b3f3c2abb3a6c2fa6d2653d6bb2e56d000be3bf4c64ec52763a10d69e"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"path": "src/adapters/kiro-tools.ts",
|
|
253
|
+
"sha256": "74820aaa19ca00a9b28d8d862b068a29fd489c74b739acaacaa68f3ec1b0ab35"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"path": "src/adapters/kiro-truncation.ts",
|
|
257
|
+
"sha256": "3dccd7bce574b3a9a57ef01677e7354cc5fa7db7671863434afebb97626bcfaa"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"path": "src/adapters/kiro-wire.ts",
|
|
261
|
+
"sha256": "3e50d4e073e7b5b61794231e9d3bde9437539456f7b013342e65c08e5858f003"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"path": "src/adapters/kiro.ts",
|
|
265
|
+
"sha256": "a134e30227b79c9ee6c64124f40f86150b06b5f1175dde565f31f14679a499e8"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"path": "src/adapters/mimo-free.ts",
|
|
269
|
+
"sha256": "d267d57747f6208850c64b695ee0028748ad1e352a1fd488799e6b4abdb736ef"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"path": "src/adapters/openai-chat.ts",
|
|
273
|
+
"sha256": "af2905f797cee387f090ec3edcda34611b61c1339f84384297c2be8816a59e28"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"path": "src/adapters/openai-responses.ts",
|
|
277
|
+
"sha256": "80ebaba83efabafa0035b5a091dfed8c10dccdeda2f1ea270415ac16e113f374"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"path": "src/adapters/run-turn-queue.ts",
|
|
281
|
+
"sha256": "7599ccc46be13507bdec6e27095092efb0b6d84976bcffe0cca972ce08a6da62"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"path": "src/adapters/tool-catalog-nudge.ts",
|
|
285
|
+
"sha256": "b20b726a97b85e4199ad2bcf2dfebf4040b392224e9f3b9671b00abb2c54ca81"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"path": "src/adapters/upstream-http-error.ts",
|
|
289
|
+
"sha256": "4875e77e46d96131e7a3e6c0feb15a54ffcb3901efceac2360abe28b7a0f414b"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"path": "src/bridge.ts",
|
|
293
|
+
"sha256": "20c2c4b1f40828b01a223e64c415dd34c98acb0fcd78ece6dab7bfee333a5b22"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"path": "src/chat/inbound.ts",
|
|
297
|
+
"sha256": "747105ce3fb5cff8d5a8020e5df2a481fa218321a957717c2f6db0417e9fe690"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"path": "src/chat/outbound.ts",
|
|
301
|
+
"sha256": "a2a20c8ffc4c91e71a3bf7f18e0dc7380b218ca219a03139c0c1ae318f77e3de"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"path": "src/claude/agents-inject.ts",
|
|
305
|
+
"sha256": "fb338b3a3290589ae91f52e6fe60bbec85e71cc4eaea8ace8588519a89c26e4d"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"path": "src/claude/alias.ts",
|
|
309
|
+
"sha256": "da8ab081e174938525d73d3e4c87b788f17404746dd1bdffb2261b209598b4db"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"path": "src/claude/auth-detect.ts",
|
|
313
|
+
"sha256": "6a4382a820a42fd9cb5a9cc7e150eaebc4fe70bdff7883c4e519c1756f81a009"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"path": "src/claude/auth-mode-migration.ts",
|
|
317
|
+
"sha256": "9452420e404aed3fba631efeb1e2afc0caf626bf05b839d658f4bb6bf3a824d8"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"path": "src/claude/auth-mode.ts",
|
|
321
|
+
"sha256": "ff6363e214b7bca0d2edc80ecd92d1f2b22401ba015e7b1a65c5c6ff76be94bc"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"path": "src/claude/context-windows.ts",
|
|
325
|
+
"sha256": "0f0313dda8693598cdb05f88f083835f960914ac91e1431af3745fcc5206976f"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"path": "src/claude/desktop-3p-guard.ts",
|
|
329
|
+
"sha256": "4f072b87224221b777b8faf8e302da9eb5e985daf78e6dff566a05b506fd8cbd"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"path": "src/claude/desktop-3p-paths.ts",
|
|
333
|
+
"sha256": "a2416122048a269af4e1a57edd0d300af7d182bf8f6c145df19eece06b809836"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"path": "src/claude/desktop-3p.ts",
|
|
337
|
+
"sha256": "90899339e6bacde190c6ebe8e1af063e3e4604d62b5f03cc0693a9eeac1a7aa0"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"path": "src/claude/desktop-health.ts",
|
|
341
|
+
"sha256": "5709154ad0b0677db31519799b6f2c6e4fe6aaeacebcc69a13a990020d25545f"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"path": "src/claude/desktop-profile.ts",
|
|
345
|
+
"sha256": "392abbfd43576779187ebfde50d9e14f78d6b63b99497d4459f80a08ef4e6c4d"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"path": "src/claude/gateway-cache.ts",
|
|
349
|
+
"sha256": "134e7b5b18045a1909fbfcf26d952475df4057d4a6538f659dcc3d3c28be6968"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"path": "src/claude/inbound-debug.ts",
|
|
353
|
+
"sha256": "fe1951e34e834ef08c2fe9392f72ff67692fc0bc3beba5e3bad83a27ef2d6514"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"path": "src/claude/inbound.ts",
|
|
357
|
+
"sha256": "05027f9f6388bb3e66db5a26d2b4d665fe5dc545b0880b09aa805a5accc26ba3"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"path": "src/claude/model-info.ts",
|
|
361
|
+
"sha256": "ada4c6917f37361f7ac7e22672b3ddd456c897fee734c76aecf58f0c30bf4183"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"path": "src/claude/outbound.ts",
|
|
365
|
+
"sha256": "5919bcda60e036f295ffcdb13f14c9c6b3e4d87e40b84cba6bbc82eb8748ae74"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"path": "src/cli.ts",
|
|
369
|
+
"sha256": "ec685a5c12830138fc9a388655e8401c2fc792e69d2dff75d9f15dc39b6ada13"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"path": "src/cli/access.ts",
|
|
373
|
+
"sha256": "c2a5f7c72741b687aa67bc7fc47ed8f3e2ea78ec693be649a475e1f0ec5f5ea0"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"path": "src/cli/account-api.ts",
|
|
377
|
+
"sha256": "e192189ffe01a7c1fb0a5cb3d007ffee7717304a2644514f1f61f24126d48b4d"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"path": "src/cli/account-auth.ts",
|
|
381
|
+
"sha256": "6144462a5dbd94a2da1942ac0266a633eb977601ba3f316044ab503af802672b"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"path": "src/cli/account-catalog-refresh.ts",
|
|
385
|
+
"sha256": "fcca845b4fbd3732ae70f608a3bd577e62341ff812d43475bc056cc5baab6b48"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"path": "src/cli/account-extended.ts",
|
|
389
|
+
"sha256": "b995011342fc4eb8f0d0d9c3d2c170bf6725dc070f83acf7ed03e9d962014f24"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"path": "src/cli/account-main.ts",
|
|
393
|
+
"sha256": "056dff0b1ffefc1ad59f4822bc354e41f31b0c05ac2dad1ce5425f5dbcc5c9ce"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"path": "src/cli/account.ts",
|
|
397
|
+
"sha256": "8a46fe38dfa92a93e218a4086296ccc0cda65409ee63b6d88696ca938e1cba7b"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"path": "src/cli/agent-driven.ts",
|
|
401
|
+
"sha256": "4ec164d37c3953c43078de3123747ab17491e3f46e2abfd5e42fbba63fd5fadc"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"path": "src/cli/agent.ts",
|
|
405
|
+
"sha256": "fde2273c1d7583bfedcc6034344b3295052761e6e92513e237e98433291b5904"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"path": "src/cli/catalog-prewarm.ts",
|
|
409
|
+
"sha256": "e8361fe04f7f97615b6446e91e1e11b0372f90e14cbcebf7ab5792949e1bf266"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"path": "src/cli/claude-desktop.ts",
|
|
413
|
+
"sha256": "787ef85865cc4383e4947dc50b5027d7ab998b3b3e7a486b9f4ee62f726d47f4"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"path": "src/cli/claude.ts",
|
|
417
|
+
"sha256": "cab47b0c25fbf1231e609432aeadac723f7355b26d71e8b2c5a389ff22ae3f49"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"path": "src/cli/codex-shim-autorestore.ts",
|
|
421
|
+
"sha256": "9c6787a2a41f696eca1fbd95905a3f7b90718cf044dd21cb5e47f789fea48b44"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"path": "src/cli/codex-shim-readiness.ts",
|
|
425
|
+
"sha256": "bed0c8348dcd5440734cf003512bd5ef8cc0283e1cbacbf0f7950983a34ba7e2"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"path": "src/cli/combo.ts",
|
|
429
|
+
"sha256": "0fd9c7f55feabc91bcbbca9eb2f130c2fbf2494696e8eccb3cde73befa5c787f"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"path": "src/cli/config-command.ts",
|
|
433
|
+
"sha256": "1dfa5934103c6cff76cd8b712660ef6d8b74f3ae2ac570a296a844f287d04405"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"path": "src/cli/debug.ts",
|
|
437
|
+
"sha256": "5a9506da313a5ebd5778530935117f57a54f90cdb496130e32516fb3d1d576ec"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"path": "src/cli/dispatch.ts",
|
|
441
|
+
"sha256": "2cba2f25e64bef2b08f1299a8b94757517bdf8bcd56e9ce2c7d46e50be3cce47"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"path": "src/cli/doctor.ts",
|
|
445
|
+
"sha256": "fa21147f61cfaf78e5b23e22638cf679e939d54e5377f9a37d4973dbd0b828b3"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"path": "src/cli/export-command.ts",
|
|
449
|
+
"sha256": "c00b92f6cdaa188334e1635aa98b161bfbb2ce269f4435c4cfacff263478264d"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"path": "src/cli/help.ts",
|
|
453
|
+
"sha256": "a696a035ce31447412ff5f025d07019ed445dd12c253c8a83ac5ee6c4679d1cb"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"path": "src/cli/index.ts",
|
|
457
|
+
"sha256": "8e3e096dac1115ae5a1a8c12d740b72766f4a1a1ece1e96c7e05d11b83080adb"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"path": "src/cli/init.ts",
|
|
461
|
+
"sha256": "211045465b1ecf46b0653234b8339425d42ee2fbcbdf216525ec6ed57ab20b3e"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"path": "src/cli/integrations.ts",
|
|
465
|
+
"sha256": "21a9f9a1496bfe8ae281cbd4139479a9fba161b6561a31d5daac0f5e5ecf74f8"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"path": "src/cli/interactive-confirm.ts",
|
|
469
|
+
"sha256": "9fdc081a5f8e7a8c74612371e044f34054151a20b9692c0fd81a2bb41e86f9e5"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"path": "src/cli/lab.ts",
|
|
473
|
+
"sha256": "eb8c2ca91142f717e5118526ad3202b1f0182206dc8051d8adf67c9e1a5ba83f"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"path": "src/cli/launcher-context.ts",
|
|
477
|
+
"sha256": "fa5657ae359beb71306ed9ff5247a57ff1ed71c2afdafe2d212bdd6cf65a133a"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"path": "src/cli/models-runtime.ts",
|
|
481
|
+
"sha256": "3632b8ce6d888ab7dc9a89a1bdfa981d5eba1818a6da3708ae280931010fac1a"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"path": "src/cli/models.ts",
|
|
485
|
+
"sha256": "3401dfd13876e96fbf791198705905aaf27b2466c4061f986a01672793897b30"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"path": "src/cli/observe.ts",
|
|
489
|
+
"sha256": "bacc427239130ab80e94d6450b946d50011035e7d50015f323cc3cb352a0d101"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"path": "src/cli/opencode.ts",
|
|
493
|
+
"sha256": "a645f65e1a38374c7ffa805a2c14f6d2ccc5f977c7c17a47fa97af955bd94c15"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"path": "src/cli/provider-runtime.ts",
|
|
497
|
+
"sha256": "0e5e03d3e8619b36304c23bd159dd07b911945fd33164595db4d582f80c0627c"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"path": "src/cli/provider.ts",
|
|
501
|
+
"sha256": "80efaa85893257d61935c5f3322ef98cb908c63ad7407c43425563b06d31ccaa"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"path": "src/cli/ready.ts",
|
|
505
|
+
"sha256": "644005f263c4a0394aac287c5b448b130588afc733c8707cf8d7490bef003e41"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"path": "src/cli/registry.ts",
|
|
509
|
+
"sha256": "cf65a3022a6b8c97f7926f6057b69c47a9cdc71540798420fc5a06b861e64588"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"path": "src/cli/root.ts",
|
|
513
|
+
"sha256": "19c8d84e3d829d07a9ac8e3115e0cd1a3f3fd7d04416aa8a4754a057104b1ee2"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"path": "src/cli/route-policy.ts",
|
|
517
|
+
"sha256": "1a37d07d7e2dd1fadff66a445cf3b1cde0f295e3bb4664a8c40f25a66110c865"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"path": "src/cli/runtime-api.ts",
|
|
521
|
+
"sha256": "2ddea9c613c25ca34a7c1daecac8e21315dd4a98542a5c4833c0aaf63c745f6b"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"path": "src/cli/star-prompt.ts",
|
|
525
|
+
"sha256": "92f0c26cb9e20868dab3329dd82073c3601d41f13ffef2c512961e124a2fbe7d"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"path": "src/cli/status-oauth.ts",
|
|
529
|
+
"sha256": "9f1523a644083c9371b6e8d95b4724ecc12ef54338991648a8c37183a1bfa86a"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"path": "src/cli/status.ts",
|
|
533
|
+
"sha256": "61bf8d589a3346298c20ae5e4a25f38cfd743823598cdbf0b10e9d1d7ce8bb6f"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"path": "src/cli/system-command.ts",
|
|
537
|
+
"sha256": "932f7bb02e3ad4a42eb1728e75f9d0b13d64173eeeb043be1a2d12775495e53b"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"path": "src/cli/system-restart-client.ts",
|
|
541
|
+
"sha256": "31e639416b47444e3e2b7df3fe12dda68755a06d408e058e79711f16274e9977"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"path": "src/cli/tray-proxy.ts",
|
|
545
|
+
"sha256": "35878717b3b9c9e9d7793fc88a72ddf21d7b2c9b41c3a6dd12f5bb5d5343a6d5"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"path": "src/cli/v2.ts",
|
|
549
|
+
"sha256": "28dc0d12a8edcf49821655e6dc242bbab72afdfec3a67e84143a08fb42363d64"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"path": "src/clients/config-export.ts",
|
|
553
|
+
"sha256": "65344216431c824d1e38d4cee44d955ac4d6115e19e3ff784582bfabec2df70a"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"path": "src/codex/account-id.ts",
|
|
557
|
+
"sha256": "beaa9a9fe8a2588cd1f98fc4c4d16b39b3f224dcced1b5e1c3dd10eb8fe5c8a3"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"path": "src/codex/account-label.ts",
|
|
561
|
+
"sha256": "7475f09c67f548a8f09e5597c3677a8da6cc330ae9e27b793e67da6a74d26b1b"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"path": "src/codex/account-lifecycle.ts",
|
|
565
|
+
"sha256": "1cadb7614d15fa60dea718cfc9cf8845c86416054b16b1f93d52a579f0531c9a"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"path": "src/codex/account-namespace-match.ts",
|
|
569
|
+
"sha256": "4e59b699166bdbdf7d8c2ec0ca1205b83e7d42477147b45adae3352d8ed39656"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"path": "src/codex/account-namespaces.ts",
|
|
573
|
+
"sha256": "7e6bac76b6695e8dd697f96a69d1070774b06aadec587dfafbee589a77d7b99e"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"path": "src/codex/account-pause.ts",
|
|
577
|
+
"sha256": "2fe015b44bf5dba8e5087c53060a5628272fe4b162ed025f774ec6ca9cd16150"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"path": "src/codex/account-priority.ts",
|
|
581
|
+
"sha256": "64cf9058236d761cf5ed170bb85a780c44a6d767254fac8e34c866ddf79fee04"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"path": "src/codex/account-runtime-state.ts",
|
|
585
|
+
"sha256": "6866f72d4a4b51a41a72f708eb0ca4777c9b21ee6460a7298d22af7843d9b93c"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"path": "src/codex/account-store.ts",
|
|
589
|
+
"sha256": "dbfe9d4ed38248fb3e83ae0fda18cb0f4975218bc1226cc21ec327fe766ec260"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"path": "src/codex/account-usability.ts",
|
|
593
|
+
"sha256": "3f377034f5bbc74a25d431cf9a02f137089dc39cf696dfe42342086f60148b75"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"path": "src/codex/admission.ts",
|
|
597
|
+
"sha256": "4578fbcee3cf4367c300480efb2aee2c230bc7776d528636923784c8534b59d2"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"path": "src/codex/app-server-processes.ts",
|
|
601
|
+
"sha256": "66f866e499edc75d7530a1a9230e77e7d9f6553579c64141ba73630f6ea91a7d"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"path": "src/codex/auth-api.ts",
|
|
605
|
+
"sha256": "97574253fcd338991070c295871373254ebf6d5924a41c7aca96cecfc865b3ea"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"path": "src/codex/auth-collision.ts",
|
|
609
|
+
"sha256": "2a12112a87c06613ff47fe34b4bde8f3ca6f07bae3fec0733dcd25c2607b802c"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"path": "src/codex/auth-context.ts",
|
|
613
|
+
"sha256": "137606d112ab4a836c92cb8750b7633d74f7b2adface33207e21371df46c5303"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"path": "src/codex/autostart-health.ts",
|
|
617
|
+
"sha256": "b91e91d7dd2a0373b4da9a6955e714ba79326046dc1d45b4ce129e955bc069e0"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"path": "src/codex/catalog-admission.ts",
|
|
621
|
+
"sha256": "7410dcb4e9ebfab045144d383d91655dc6be3c4fd3d57a8b2414fd1b2db6cb8d"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"path": "src/codex/catalog-refresh-status.ts",
|
|
625
|
+
"sha256": "decc74b0c92855ce4ab12317796d4c19390edf1395cf242199de0ac4d8c7ff9d"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"path": "src/codex/catalog-write-serialization.ts",
|
|
629
|
+
"sha256": "462e8fa4acff845e61c6498d91cb0f84549b92f0893b0fcbe49e0aa7673d9fbe"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"path": "src/codex/catalog.ts",
|
|
633
|
+
"sha256": "f1490f679d430d015eafae668017eb40a2fda72959419794a91ee9d0a6434952"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"path": "src/codex/catalog/account-models.ts",
|
|
637
|
+
"sha256": "d1cfc4e3e7daa333d6c505a654fb0be3276901b7e91833db680c2daba0b07c4e"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"path": "src/codex/catalog/aggregation.ts",
|
|
641
|
+
"sha256": "9c2ea7b8f9fb9adfe0add8037bed082565f9c0a8f6037ce0fc9b9ab4a18ffe66"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"path": "src/codex/catalog/bundled.ts",
|
|
645
|
+
"sha256": "a33a7981d6c3a1dd3200a8e311ae37308fe5fc84a292df26b9bc91aa0426204b"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"path": "src/codex/catalog/effort.ts",
|
|
649
|
+
"sha256": "f76a68fa34639b16c044990af869b4be5e6dd326741b7c0e3f0f9655f22f4da3"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"path": "src/codex/catalog/filesystem-evidence.ts",
|
|
653
|
+
"sha256": "fde4b84ebda1835a10b753ff58b9c161127ef8d75dd3f73ae89b650e747ae8ff"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"path": "src/codex/catalog/kinds.ts",
|
|
657
|
+
"sha256": "83803872b38d618f7d4f75ac6389cdf36de49c301d49cacc44f1a32f0ffe1f7d"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"path": "src/codex/catalog/metadata.ts",
|
|
661
|
+
"sha256": "fc103af095eb6dfc88ec805cb9e71b4b2d405ef41ba932f2b7f51caf9515595d"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"path": "src/codex/catalog/native-models.ts",
|
|
665
|
+
"sha256": "86d7789553db1b2d70f7183c39fab59921dd704403370a0a8a7909adeff78e02"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"path": "src/codex/catalog/parsing.ts",
|
|
669
|
+
"sha256": "70ddc9e2a0aa9719255fddc30680c6286b6c383509283fa5abce35d3672ee6d7"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"path": "src/codex/catalog/provider-fetch.ts",
|
|
673
|
+
"sha256": "9f2bb70bcc8efe942b13c7b94cb06387948a2db8baba9042114787f3a5de8931"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"path": "src/codex/catalog/sync.ts",
|
|
677
|
+
"sha256": "9eb9969c8dab31ee2879d6a2cc13247f9ea56dba756c8fae3a6f1b9f553a5be7"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"path": "src/codex/codex-write-lock.ts",
|
|
681
|
+
"sha256": "7d0b080b9ce56419b05d56eeff48d0eb8f2c1260a682794996b4966e290807a8"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"path": "src/codex/convergence-types.ts",
|
|
685
|
+
"sha256": "cf2337127e2ac36c56f01e333a4c80cd80d4427e3a2600c918cb9e917da369fa"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"path": "src/codex/convergence.ts",
|
|
689
|
+
"sha256": "d5c7d5554c3b5aead1472e0392eae18e6011d8c14b43ea4d611db5f1ecb80f81"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"path": "src/codex/custom-model-catalog-migration.ts",
|
|
693
|
+
"sha256": "eb6c1420bc61b27c67772255a20192cb94605c988f6b597608e69b6346464c77"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"path": "src/codex/data/upstream-models.json",
|
|
697
|
+
"sha256": "2d28f78b08a76006a738a325c7983b184a488efdea045544b9dbf959e558b15f"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"path": "src/codex/desired-state.ts",
|
|
701
|
+
"sha256": "6f9f526d81f9f93013ed0c43eca0514b54e5eab77a72054d3d8ca84d0f04ce08"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"path": "src/codex/exec-invocation.ts",
|
|
705
|
+
"sha256": "bbcc07eb26ce53fb1b1447d2351b4122e0314cffffcff85ffe5af956a70da1ce"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"path": "src/codex/features.ts",
|
|
709
|
+
"sha256": "5a3aade98f3aaeb40e8e86c46c1b95f194f67ad27aa12152a0ce1ebf29cae0d2"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"path": "src/codex/generation.ts",
|
|
713
|
+
"sha256": "16cf25ab05fe2b9eceb146304ed2f6f4c794fb375d8258f92b638c7203cc81b1"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"path": "src/codex/history-job.ts",
|
|
717
|
+
"sha256": "16a94424187494b0f4cc2191cb055725c2cf61bbe511688d4efc8aa61aed78a2"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"path": "src/codex/history-lock.ts",
|
|
721
|
+
"sha256": "d927dafdcc839ae987ad95cf08ae7b8f04bb8ba4d0479554b712fdf29669304e"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"path": "src/codex/history-migration-guardian.ts",
|
|
725
|
+
"sha256": "5fffa2aa87239633b5463b492394d627405efa5aa5b5b5288341d79bdfbb39f5"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"path": "src/codex/history-provider.ts",
|
|
729
|
+
"sha256": "560896f1ab0570445cc4b6a3d75f08bdef1583564f04a0e104c41fc08ed7d0e8"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"path": "src/codex/history-transition.ts",
|
|
733
|
+
"sha256": "1b82496f6b93618d44431b8c0185cb858358bf5b6e4818b8089afe4f6aa6f84d"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"path": "src/codex/history-worker.ts",
|
|
737
|
+
"sha256": "7da1b485833cc96320f4d0689a9cc4f463f17d853d2c0fe9cca1029e3936506a"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"path": "src/codex/home.ts",
|
|
741
|
+
"sha256": "5f2fc9d901e77e81de1d343fa53a451025f8086c5d175104685739e1f81a0a43"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"path": "src/codex/inject-coordination.ts",
|
|
745
|
+
"sha256": "2b64a277f342eaf806ac4eadabe694bd7e64fe984c514d815bfdd4d2ce4f80f5"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"path": "src/codex/inject.ts",
|
|
749
|
+
"sha256": "9d83aedcc214dba9c850fc904f38395d47df429a0587a677125a75b07d5f19ef"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"path": "src/codex/injected-marker.ts",
|
|
753
|
+
"sha256": "9c024cdaa9f51c4e8bc1e79baf9df3619924497448e059d473d91a675fa27717"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"path": "src/codex/integration-record.ts",
|
|
757
|
+
"sha256": "82ba30523b926fa78dd13e80972f061d7f16423f0f0b99f82fad98b7bbb29d20"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"path": "src/codex/internal/catalog-writer.ts",
|
|
761
|
+
"sha256": "a38a3b3b0735997cac608eb0f0a2147e15d5d3a2bf8bbd73f3bb4b538fc47517"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"path": "src/codex/internal/history-writer.ts",
|
|
765
|
+
"sha256": "b6bea4e9156d5981f3b471e548fe885f40bc9b0e90b588b66ef9c13aaf658237"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"path": "src/codex/journal.ts",
|
|
769
|
+
"sha256": "f90fcb039ff2ca8ddbdfe8e9101b431e4c8d864cc18923bbbc98c671b1b7adb0"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"path": "src/codex/main-account-cache.ts",
|
|
773
|
+
"sha256": "1fe336e582bce085b1e37d8a1925b60e91ec667706f80d939974d41062673f6e"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"path": "src/codex/main-account.ts",
|
|
777
|
+
"sha256": "d15e130b2aea5b75f8d9672cfa9c1504e200e29b02f4f044c2315a22681d0e8c"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"path": "src/codex/management-convergence.ts",
|
|
781
|
+
"sha256": "b080721ecdda70d87f74959c7b1aa67ebc0b10da568ac9fd180ddfa8e9635944"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"path": "src/codex/model-cache.ts",
|
|
785
|
+
"sha256": "26c3b39ad812d8d102bd418486e9902b56e6280369a03a40cf34b0f4b6b5bd27"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"path": "src/codex/native-main-admission.ts",
|
|
789
|
+
"sha256": "1f4956299bf243980bb06c7ddcfdadf71497cd874d3c1c49cb28465f27f6c85f"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"path": "src/codex/native-main-auth-temp.ts",
|
|
793
|
+
"sha256": "3671239d275a6ad13b55dd2bc123a2780dd4ba7d7e78f09752dd1c06c89dbbab"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"path": "src/codex/native-main-claim.ts",
|
|
797
|
+
"sha256": "565253a6bcf94e2444f75bf4bda9bdd713af17ad7330c4677571792cbcd75590"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"path": "src/codex/native-main-lock-file.ts",
|
|
801
|
+
"sha256": "96248ccb3b7352b3ad70ba73a75cadccaf5a5463162f721e600621b2e0ffa9b1"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"path": "src/codex/native-main-owner.ts",
|
|
805
|
+
"sha256": "a16ef678a47530d6e190263d26407365c3ffe47ca4e285c4f136072740cf2d9b"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"path": "src/codex/native-profile-api.ts",
|
|
809
|
+
"sha256": "19f3ad9555cc0c0ce107d2fdc092473c5637b55003de2015c3ea7d3f90fd895c"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"path": "src/codex/native-profile-manager.ts",
|
|
813
|
+
"sha256": "b87e7393c56c8c6c650cdabc80b91790d674c680056baffcdd8a67db853cd9f9"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"path": "src/codex/native-profile-processes.ts",
|
|
817
|
+
"sha256": "91c26933154a2993093775caf47fe68b13c15d9af3376f0bcd01c5679d8019d1"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"path": "src/codex/native-profile-recovery.ts",
|
|
821
|
+
"sha256": "3bdb25ce98a98ff98a6420af43555c9a1ac0da657cf19fb33b12985752e88218"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"path": "src/codex/native-profile-stage-store.ts",
|
|
825
|
+
"sha256": "40a1e81d40db577ab2e7fb3f0eb4e8fceb8904510d36cbb742c2e3c61d69359b"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"path": "src/codex/native-profile-startup.ts",
|
|
829
|
+
"sha256": "1417a440aa78a84f04c4e45dbcd6c3d47c04270844275292b9dbd1bf9b6c8146"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"path": "src/codex/native-profile-store.ts",
|
|
833
|
+
"sha256": "f98588f979ead973cf4e3b325f04059562605455deffd47edcf0aef00bd40664"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"path": "src/codex/native-profile-types.ts",
|
|
837
|
+
"sha256": "e5bf51bb3f11c44ff62c2ebaf722afcf5b87c3e3c85da20806bbe789bcaee7be"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"path": "src/codex/native-residue.ts",
|
|
841
|
+
"sha256": "8622a739e8472576ab8be1fe61385bd6b6eee1a8c152d099a6f1b923170df248"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"path": "src/codex/paths.ts",
|
|
845
|
+
"sha256": "8137c05a2ef4d15094d0dd53b8ebe2d2324dfd005f4b74ecd390a8454c67f2c2"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"path": "src/codex/plan.ts",
|
|
849
|
+
"sha256": "3f92eab66ca4d2bc2608125b89156d1b695326d1093b3df8b99cdf0805edbf20"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"path": "src/codex/plugins-doctor.ts",
|
|
853
|
+
"sha256": "8e43ea761676d4e93f53461f689995143c4c123e7c83d7948906af0a29cd0540"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"path": "src/codex/pool-rotation.ts",
|
|
857
|
+
"sha256": "993ae5806a1125b66bb8836578d35749e2df2e81f49567669047e44e1654d383"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"path": "src/codex/project-config-warnings.ts",
|
|
861
|
+
"sha256": "801d2308cef14ee36ae7740a1a94d54876331b6878d5b2c23a1a1f4bdfd6d93a"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"path": "src/codex/prompt-journal.ts",
|
|
865
|
+
"sha256": "b24a810efe080505c69736177f0a86e65bf8e8c8f5d2facffbb93e3197145ab7"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"path": "src/codex/prompt-layers.ts",
|
|
869
|
+
"sha256": "c8f68d86bab9e102aae25b7e59f15c1d272d1b6fc4e72e3c331b8a4e54e938f5"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"path": "src/codex/prompt-lock.ts",
|
|
873
|
+
"sha256": "640c7acca611269353e550dede9ae9b0611d81846ad43eb89c1572dd1207d664"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"path": "src/codex/quota-rejection.ts",
|
|
877
|
+
"sha256": "b6030d577644f71a92335dba29cd6aec1d540cd2efbda28b07d2804ec7ea8fad"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"path": "src/codex/quota.ts",
|
|
881
|
+
"sha256": "3fb2130263e2fcb753229f2a3981a834d0311ac3599bd62d425fbc75b4145292"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"path": "src/codex/refresh.ts",
|
|
885
|
+
"sha256": "cecd56d95eedd5a96a86513bb4cc2df0b3dc6f0a37753b764f0ad45f8bd5f41e"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"path": "src/codex/reset-credit-recovery.ts",
|
|
889
|
+
"sha256": "af44b9c6b3e13cd86774f440c777ebe4b1c80a6e8f76bf22b386116d73356d93"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"path": "src/codex/routing.ts",
|
|
893
|
+
"sha256": "881524cfb978020dd2da516458ac6a62dedbad8cc89eb3efb94759f9f4037ff6"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"path": "src/codex/runtime.ts",
|
|
897
|
+
"sha256": "27d644691608952ea8162aeb3bee18bfb6f142ec8b2ba203a2cf9d5718d486dd"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"path": "src/codex/shim.ts",
|
|
901
|
+
"sha256": "f39249f3748a1c35b116677a0583704cba02cc99e3f320ac46356a24983d250c"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"path": "src/codex/subagent-defaults.ts",
|
|
905
|
+
"sha256": "66ac781355642d64e6926676f05d8e44f68bc27cc26c2edd66c9e0ffd19d5613"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"path": "src/codex/subagent-model-fallback.ts",
|
|
909
|
+
"sha256": "f93550e5f7a7a48b3d93455747f9bacc6e100b455336dc16a5706714f1a0cc6b"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"path": "src/codex/sync.ts",
|
|
913
|
+
"sha256": "055759eddb7e2c67770318d9c10beb81d38cb068be33209f9279a93929bf1835"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"path": "src/codex/transition-state.ts",
|
|
917
|
+
"sha256": "f249df83f9f3366d18c868f51a04d3a85bcc0d659b437593186532e47b7d8586"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"path": "src/codex/upstream-host-health.ts",
|
|
921
|
+
"sha256": "fcdf4fc3285d3c522f965b32793fe2e916c71e8094f795f1702f6aa75ccb9150"
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"path": "src/codex/user-identity.ts",
|
|
925
|
+
"sha256": "f16cc31184e7e00128545f9c6b59664ed17f0a5f08c606cf3731f752493a1f23"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"path": "src/codex/warmup.ts",
|
|
929
|
+
"sha256": "85b5aa7af1f4bd95628fd89db09582fcc71100cc9b5693b7151136befdfc9c39"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"path": "src/codex/websocket-registry.ts",
|
|
933
|
+
"sha256": "739b0b64aa4a2f788a1092de0b0b5f753570430206246c2fd057cbe3b49637ed"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"path": "src/codex/write-coordination.ts",
|
|
937
|
+
"sha256": "af62b71a2638bb5f288b0b4ef0bf0d4566f2cba18808b7bedaeec02e37eaea68"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"path": "src/combos/failover.ts",
|
|
941
|
+
"sha256": "d71e85ead518a5e30a0932f7140dfd48528778afd88b82aef5200c5e2b68b910"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"path": "src/combos/index.ts",
|
|
945
|
+
"sha256": "a2dbc31d22522748c3dfb7dac858cd4ac28c388b1f1ed35f015a1e781b135b5d"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"path": "src/combos/request.ts",
|
|
949
|
+
"sha256": "16861e1aeab11f1a17c262bc132c669fc61ac75808fc1d0f37b76d22aca0fd63"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"path": "src/combos/resolve.ts",
|
|
953
|
+
"sha256": "ab7b0defa2f424f280d4533e4b08254266fea8e27b6282233503729db0c5b853"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"path": "src/combos/types.ts",
|
|
957
|
+
"sha256": "e5b8b369ef9dfd33069d83873b5f2058bf66da7a46c387a28b5c70b50ba7edd9"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"path": "src/config.ts",
|
|
961
|
+
"sha256": "85cb62d598162e66356cc685ad701850f09bb57c6d9c47463146af0ed409cde4"
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"path": "src/generated/model-metadata.ts",
|
|
965
|
+
"sha256": "6c072475b28762a71214bc5323304f528e072782784d76332548622c6785a39d"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"path": "src/github/star-state.ts",
|
|
969
|
+
"sha256": "b9da7a4c5757685d227a9981112096608036fbccde9e1889149a9bd150777cbc"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"path": "src/grok/inject.ts",
|
|
973
|
+
"sha256": "223ca19a42ea4ec35207b83faf140ecf523ebf630520bc630ebacb99571f1a26"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"path": "src/grok/inspect.ts",
|
|
977
|
+
"sha256": "b47f64f43ff8a7dc6b9c36b94b19188c2e362e1083eb949ab4f5f40d161d6914"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"path": "src/grok/status.ts",
|
|
981
|
+
"sha256": "0a6f3b0fa94417bd9a53a321e8c2766c25d44ee93cbb8048b33886fef267a3ba"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"path": "src/grok/sync.ts",
|
|
985
|
+
"sha256": "da93914d9c8619f8c1f67fe338e3ebc9e0dc9862466bc04516d412a146f848c7"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"path": "src/images/artifacts.ts",
|
|
989
|
+
"sha256": "08541453a149c38127ee702944f9b8e3cbfdf3e019adaa33073466060dba3714"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"path": "src/images/fulfill-video.ts",
|
|
993
|
+
"sha256": "ee33e95f28fa853c34df6583df49bc8ab4cc71d94c1ba7e563c3ee39f9bc8da1"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"path": "src/images/fulfill.ts",
|
|
997
|
+
"sha256": "7bab6b0adbde2e8534d75df22656a64a64287dd03735f8ef73c4d5dc85a146a0"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"path": "src/images/index.ts",
|
|
1001
|
+
"sha256": "8b7f90d8ad0af89be64af898922540e9be426056cb5d700a24233fbcc9259ba8"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"path": "src/images/loop.ts",
|
|
1005
|
+
"sha256": "540e1d784d09eeaaad4abc2f52166d9cf61ac85cf68c4bcc65049eb2d4b68467"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"path": "src/images/plan.ts",
|
|
1009
|
+
"sha256": "e1ed6ae92c614aca28e8685c1ff665c22641e9eaf1a44e8be0cf5b5960961195"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"path": "src/images/synthetic-tool.ts",
|
|
1013
|
+
"sha256": "f0d66ba87052e3f71185a909929a7c95e47550ded6bc8a4c59a8765f1ea2a9f2"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"path": "src/images/types.ts",
|
|
1017
|
+
"sha256": "1fd24cb1b05b71dc1320c08499d0a0d4b0d2e3257ec7225e26797a3cfeccc755"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"path": "src/images/xai-client.ts",
|
|
1021
|
+
"sha256": "c8cb9a694656966d5dec75fa4a08166c68a6963afca13287c2de29f24aa1194c"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"path": "src/images/xai-video-client.ts",
|
|
1025
|
+
"sha256": "29188796179c163367f1dd4528093d516f92dbfbbc63da594fda0d7f1dd36cb2"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"path": "src/index.ts",
|
|
1029
|
+
"sha256": "89a4d0267a7a99c195b6c02eda4fa8ae7ac2bed2230ce1ffcd12f5e3db550621"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"path": "src/integrations/config-io.ts",
|
|
1033
|
+
"sha256": "5193f6718cab71d9b7117faec5feb3a413bc1ccfc1b1f5649451cba909b5bf15"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"path": "src/integrations/journal.ts",
|
|
1037
|
+
"sha256": "51a2a759aa383093bf6d73d2b48a3ca0fc86839641a5c350187eb214bc57c68c"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"path": "src/integrations/merge.ts",
|
|
1041
|
+
"sha256": "517941efb221549a2b61f4ff3621d24de6eda8769a994049a7d9d83a77943944"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"path": "src/integrations/native/ownership-preflight.ts",
|
|
1045
|
+
"sha256": "684eeed394ad7f91de539c6162b747751fa26757471d00fd50395c4c29b526c3"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"path": "src/integrations/omp-yaml-source.ts",
|
|
1049
|
+
"sha256": "b9e4355893d74cfff01892c2b2a0e164420d07beb5222818e14cddaff0c3d718"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"path": "src/integrations/ownership.ts",
|
|
1053
|
+
"sha256": "8db1e8a883b693fd2db596c0912e874f6946e4005cdc0e45ad9ead426afb67c2"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"path": "src/integrations/registry.ts",
|
|
1057
|
+
"sha256": "5666d2e9e1a9086074cd99a9ad66cb6c649a470182b3c7bad4e8cc785b3d87f2"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"path": "src/integrations/serialize.ts",
|
|
1061
|
+
"sha256": "e7a23ead6a5a6445ddc7803af9aa8cfebc745e2d6ab325828b95689a50c9b29d"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"path": "src/integrations/state.ts",
|
|
1065
|
+
"sha256": "65dd695356bce8ac9593e4cbec64ab85ca9d54784a0e7c8ae7294b9e9a81fba0"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"path": "src/integrations/store.ts",
|
|
1069
|
+
"sha256": "195fe1af41fdaf567bfdaef5c457ee2452a77c43fc13475fccc7968676a2b199"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"path": "src/integrations/writer.ts",
|
|
1073
|
+
"sha256": "e2857bcc0351f1b6de8ba7d2fb6da27eff621e35ff69d40138e789ac24b116d6"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"path": "src/lab/artifacts/sanitize.ts",
|
|
1077
|
+
"sha256": "d6c4f5811b2e7e86404d3c0a4cc086a9a2dadc78c20eeb958d9b005eab14092e"
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"path": "src/lab/artifacts/secure-fs.ts",
|
|
1081
|
+
"sha256": "3bcb1d15436df4101e4eb3a37c2e5d1471dde09ffa32f31b037b04d6f35e7592"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"path": "src/lab/artifacts/store.ts",
|
|
1085
|
+
"sha256": "1fc47ea9052087793aee0fab654bb71c898be945c687e11459f9b6796894d413"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"path": "src/lab/automation/budgets.ts",
|
|
1089
|
+
"sha256": "d55766298d74530293927fb9fcf6a6706b33a1cb7a6efe1c93df0c9a42145ed0"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"path": "src/lab/automation/config-persistence.ts",
|
|
1093
|
+
"sha256": "44393c81f61fcd8604b0123dff7f6d7a85c8dbd0a3a41ccb08495df339206a83"
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"path": "src/lab/automation/constants.ts",
|
|
1097
|
+
"sha256": "c1f7b6496d8244f0c9d1acbcf1a30ea23e39cf35d177b74271c1424baf8f42a6"
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"path": "src/lab/automation/cooldown.ts",
|
|
1101
|
+
"sha256": "8420b44acaac9b22d6e1be15d4ab9091476f8fa37d750f3ab1346a69861f5c98"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"path": "src/lab/automation/dispatch.ts",
|
|
1105
|
+
"sha256": "ee1e48c8e8c3eefad98cf5662f16e67ca31a0203e2af75d489db4d787f312cf4"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"path": "src/lab/automation/index.ts",
|
|
1109
|
+
"sha256": "ee9158ccda643191dc476982fb10254e2724b775c6fc8ffd4fa55dcfbbcaabe4"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"path": "src/lab/automation/orchestrator.ts",
|
|
1113
|
+
"sha256": "ea12b23eceb13af13e6139a90ecd6b62ddd9485be118ef15027aff8c75621b6b"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"path": "src/lab/automation/persistence.ts",
|
|
1117
|
+
"sha256": "68b82309888665db51eac22a31e771fbafa215b5ce22b246065acbf0c969e4fe"
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"path": "src/lab/automation/planner.ts",
|
|
1121
|
+
"sha256": "3ecb49b9d45444be491325b4b3a54a62db66519e9e9a1d624248d19fd5fa8c90"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"path": "src/lab/automation/policy.ts",
|
|
1125
|
+
"sha256": "8cfc6c30034838a04c9a77cdd70630d78758982a6b2cc691a60d8cd9b8ecc0bd"
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"path": "src/lab/automation/queue.ts",
|
|
1129
|
+
"sha256": "7fceec660bc2470c92cccde0c333acfaffc550dca702ce46ec5ac3c6d1c82e4c"
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"path": "src/lab/automation/recovery.ts",
|
|
1133
|
+
"sha256": "b1008ab1cd7259e19a8b1218779713666b9a3c74d6d2cc9ef6e1dc343f6fc708"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"path": "src/lab/automation/route-context.ts",
|
|
1137
|
+
"sha256": "28fcfb20a91c598282e34f9ab30bfb89602e37910326cf61e4fd0083f8b31575"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"path": "src/lab/automation/run-key.ts",
|
|
1141
|
+
"sha256": "9d0ad83795ffe990254c81e2400cb886869ff9bcaf560b8a58baa918f89f6bd6"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"path": "src/lab/automation/runs-query.ts",
|
|
1145
|
+
"sha256": "67ae149e8c45bb017d4ad11429bc24fe7cfb946f811631379f76d7e5ec67a71c"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"path": "src/lab/automation/types.ts",
|
|
1149
|
+
"sha256": "3476e6259f927ce29d2e048572b21fb4068a9bcc8d6839112b3dc1fb35822b19"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"path": "src/lab/conformance/assertion.ts",
|
|
1153
|
+
"sha256": "f28d47b93b6237028d8a070911a3a7105f0a95330098a941c7e89dfa091a1946"
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"path": "src/lab/conformance/digest.ts",
|
|
1157
|
+
"sha256": "3381d42470656d4714f715bff0fca922b298b49152512a2817a208b70446bee3"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"path": "src/lab/conformance/executor.ts",
|
|
1161
|
+
"sha256": "653f9434d3d1f886728c5adb001d145c32f5244dc1a909de5fdc406a08c957fa"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"path": "src/lab/conformance/fixture-provider.ts",
|
|
1165
|
+
"sha256": "8ebd3b7f1d27a6aba95fce3149bac4dc919b9d3dd0d7184393a2005aca96495f"
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"path": "src/lab/conformance/fixtures/live-v1-cases.json",
|
|
1169
|
+
"sha256": "00844c7ded7a00265ee5ee7d520588ca182ac65a17e94d08d6d21f9a2cf6ccc0"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"path": "src/lab/conformance/fixtures/protocol-v1-cases.json",
|
|
1173
|
+
"sha256": "61eeb396092eb0a9b846e217d38933b3913353b116ac448a439eed152fd9dccd"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"path": "src/lab/conformance/harness-budget.ts",
|
|
1177
|
+
"sha256": "dafb6816b3ebc80ed1f7878c24a29dc812eea8e7ef620bfe798a228d02579822"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"path": "src/lab/conformance/index.ts",
|
|
1181
|
+
"sha256": "b7e480643369b1dbc3652c15e54d1c235e19352a1aebc03982ed740c3c9ba821"
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"path": "src/lab/conformance/jcs.ts",
|
|
1185
|
+
"sha256": "d5e5fad8fa47b5a7073b079d925b3b1cba62a9d30ecc6aaddbd136146d7b252e"
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"path": "src/lab/conformance/json-pointer.ts",
|
|
1189
|
+
"sha256": "c591395ca444cbc2d0a54a44fb2156a428c05da893968caa3c3780eed4c28b11"
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"path": "src/lab/conformance/manifest.ts",
|
|
1193
|
+
"sha256": "b61a5693c50ba14858e436596c0bde790550b7c37370d5f1561391ff793496b3"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"path": "src/lab/conformance/mcp-stub.ts",
|
|
1197
|
+
"sha256": "e5e50b0358a592778d7a914b6dabf348431912f1ffd2b9d44b5e9e42fe8caa77"
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"path": "src/lab/conformance/negative-controls.ts",
|
|
1201
|
+
"sha256": "934e812626fbab33a50f08099a6b675dc75bbcbac95260b155496065fec8a8e9"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"path": "src/lab/conformance/observation.ts",
|
|
1205
|
+
"sha256": "9a0dc654d98fb401f87284ada889c2c291e508d78d6468265d36fe92a8ac57b5"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"path": "src/lab/conformance/runner.ts",
|
|
1209
|
+
"sha256": "7c3bf4c3f603d27253b5021a954673895ce5316211a623ceda92b61e73ca7759"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"path": "src/lab/conformance/sse-normalize.ts",
|
|
1213
|
+
"sha256": "eaf1ce1a4d3de55a6dac9dd729f64baa73e48fa018259445cb5157c9525e5b46"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"path": "src/lab/conformance/suite-manifest.ts",
|
|
1217
|
+
"sha256": "5cbf6378275318b4ecd063ab47c62b0dfe1f4b112f0da7ebca3362022d035fd4"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"path": "src/lab/conformance/types.ts",
|
|
1221
|
+
"sha256": "bd055d9332dac5d83fe990dbd814555712998d270dff55d80de4d2b889cafd14"
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"path": "src/lab/constants.ts",
|
|
1225
|
+
"sha256": "59654eedddda0f17824d3c8d19a9c4b5c00f88e7b890405d97ce1706e03981fb"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"path": "src/lab/digest.ts",
|
|
1229
|
+
"sha256": "5a9a966df6ed5a8f90edb9f49206ba85f08d4cb9a79b84785a64da47c11eb558"
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"path": "src/lab/events/errors.ts",
|
|
1233
|
+
"sha256": "e025e756b938c4b504e050e8fcad8ae9ed857d51e10f75a5835c8cb0ab75fc5b"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"path": "src/lab/events/limits.ts",
|
|
1237
|
+
"sha256": "0335d3fefd430469b8b42e0a1eb324f0980e2fd87a2a4304b0153e911b3d2b40"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"path": "src/lab/events/types.ts",
|
|
1241
|
+
"sha256": "69cece45c8e01fd59e56dd105916772d10af66770425409aca0250376a564184"
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"path": "src/lab/events/validate.ts",
|
|
1245
|
+
"sha256": "effbe30dc8d8a2a1c9cd7a45bca32156de0ad44468248589e7711d015f4524b3"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"path": "src/lab/fabric/constants.ts",
|
|
1249
|
+
"sha256": "658e7daa585d47fb3115dff06d9f41e903df4c391910128fbd570050d8f402cc"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"path": "src/lab/fabric/executor.ts",
|
|
1253
|
+
"sha256": "0ef9546bbbff1ca242ee6f3a2776b08ccd8c35acfe4df2ca805cbe6abce75220"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"path": "src/lab/fabric/index.ts",
|
|
1257
|
+
"sha256": "cb270b6341c759078f17dbd0166ea2faefa2bbe477d3ec8ac04ce8e67df9606e"
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"path": "src/lab/fabric/manifest.ts",
|
|
1261
|
+
"sha256": "d893e349ed0a9afd7567313ce025b0e2fe502e155d1396ff4b136fd55eef2c25"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"path": "src/lab/fabric/observe.ts",
|
|
1265
|
+
"sha256": "453dbf7eb72ec7c16cfb4d14bedba77c32bcbe279e286937b69e5edc8aac5c5c"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"path": "src/lab/fabric/patch.ts",
|
|
1269
|
+
"sha256": "b2acfe7761dc63899a4a587bf9d9c9dff75beb8087fbdcf43734a69fbe773695"
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"path": "src/lab/fabric/producer-child.ts",
|
|
1273
|
+
"sha256": "1f8a53c262a63a557dcffd7e84dbba0ee4602bfa4cfd3759d097dbf512634acf"
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"path": "src/lab/fabric/producer-isolate.ts",
|
|
1277
|
+
"sha256": "bb4479f1de60226802d8d55f27ecfe14f61cf5cad94810b69c934bee298f7bb2"
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"path": "src/lab/fabric/producer-protocol.ts",
|
|
1281
|
+
"sha256": "3c032f55c28606fdb956b0728663e09316442a77b3283b17ac1282dbb3acadf4"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"path": "src/lab/fabric/scratch.ts",
|
|
1285
|
+
"sha256": "928715d9e299337f855230027593f87aba45dad372e7842a2b31d63461ba3bda"
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"path": "src/lab/fabric/subject.ts",
|
|
1289
|
+
"sha256": "6f74da7559bac3dd16f07665cd7d5371fed9a3442c139eb41f7977bacc30d117"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"path": "src/lab/fabric/types.ts",
|
|
1293
|
+
"sha256": "39ffb693b6c893745ab61eba51b91b10df74fc141a8e8ef4919db3ed5356414b"
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"path": "src/lab/fabric/verifier.ts",
|
|
1297
|
+
"sha256": "6df6fdc3a19f1c6c6bd669bcdbda85dcad84f682bf9d2205d2a55c74716c0aef"
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"path": "src/lab/index.ts",
|
|
1301
|
+
"sha256": "0e64356ed7aed12caef8410fdbddb0bed90a277fec97ffb34bb3e481345ae622"
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
"path": "src/lab/ledger/artifact-refs.ts",
|
|
1305
|
+
"sha256": "ff45f38dbd2feb6396d2725288b5b8428dbf6403f133956d96f98ad982fa92c0"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"path": "src/lab/ledger/invalidation.ts",
|
|
1309
|
+
"sha256": "8cae25ead7ba0b28f18d06ab71de56736bf9c4e777bae3294c05316c22706cfe"
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"path": "src/lab/ledger/purge.ts",
|
|
1313
|
+
"sha256": "016593c37cb7aba9dd85d2540d7722ba7e356a988e95b5388edeb0de9dc3cc29"
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"path": "src/lab/ledger/store.ts",
|
|
1317
|
+
"sha256": "a81290c3d76479d303f66dc75d45f3bbd7b68d3a3f5dc04b5ab20f96a63bf2fb"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"path": "src/lab/live/credential-lease.ts",
|
|
1321
|
+
"sha256": "98dd56ae7a0d0164478f99dd2dc4cd3799246354e9ade8559d399826b54c6003"
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"path": "src/lab/live/destination.ts",
|
|
1325
|
+
"sha256": "003432b3302dbbc9c71a343b19e50ebf74a8c70441c2c1a0a1862dd618cb5944"
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"path": "src/lab/live/executor.ts",
|
|
1329
|
+
"sha256": "f98a3755b75b36f9d7def03760789f388c4236b7c818c51adf70e0c4a3e99ccc"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"path": "src/lab/live/inert-tools.ts",
|
|
1333
|
+
"sha256": "4ef4beb0470eacb4835bf6c4020aca07c42cfe882af79a31e634e06a0196a4db"
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"path": "src/lab/live/manifest.ts",
|
|
1337
|
+
"sha256": "1b2b6364b25738feff31bc0608a873db01b16591572ca0b2c96e85bbcf28a724"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
"path": "src/lab/live/mcp-loopback.ts",
|
|
1341
|
+
"sha256": "a09a43d410d9c482185e7ae3bd960abd36f3460e868f3ee5b6af28ac9479115e"
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
"path": "src/lab/live/runner.ts",
|
|
1345
|
+
"sha256": "377a9750b4cbabe2c9a8e9afb4cdd97c127a0f026e6e50987aa63ffb2da2af35"
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"path": "src/lab/live/sandbox.ts",
|
|
1349
|
+
"sha256": "12695dbf4da2818e7b5b31a3613ceb056e3b2c8b14185f7212d43a32d8100e80"
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"path": "src/lab/live/suite-manifest.ts",
|
|
1353
|
+
"sha256": "c740a8b118bb3901584b96593c1d1773630873791015176adf08faef5a66d0c9"
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"path": "src/lab/live/transport.ts",
|
|
1357
|
+
"sha256": "bab59e2980b99decdf983898e671b7868e7d51f8759f59b8e439c9d71c9b17ae"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"path": "src/lab/live/types.ts",
|
|
1361
|
+
"sha256": "c521f069d495576a848929a10cfb5679f13691fa47657aef0561cd7f9bcd1676"
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"path": "src/lab/observe/from-conformance.ts",
|
|
1365
|
+
"sha256": "d190642782a807474270f2e0ffb934fcb5d1f657d853ccc41c16daf93d91253a"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"path": "src/lab/observe/from-live.ts",
|
|
1369
|
+
"sha256": "2947d6c1095641f1a55706bd84175957109823f328dd34399f389af47baa4116"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"path": "src/lab/paths.ts",
|
|
1373
|
+
"sha256": "afa1eb68615a4133a70e65911458a171712646973c6d8eee726908fa24bb828c"
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
"path": "src/lab/projection/rebuild.ts",
|
|
1377
|
+
"sha256": "ad3e71676d7c259b6b5993a87c5af367a7910fc86d228b37bc7cf10481eed21c"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"path": "src/lab/projection/schema.ts",
|
|
1381
|
+
"sha256": "5c02a7ee33ff94699cd3f618409a977503967757590257e0ed1c8286db3fde85"
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"path": "src/lab/projection/verdicts.ts",
|
|
1385
|
+
"sha256": "702686a432b271cd848c12f2c0a71700f7b91da2155595c88195f0059fec906f"
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"path": "src/lab/projection/verification.ts",
|
|
1389
|
+
"sha256": "c6158165da7bf5256af00c4a261cebffe1aa8d3b781dfd8c130a8e375593f39d"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"path": "src/lab/query/catalog.ts",
|
|
1393
|
+
"sha256": "e98d9f5e5b66d609bcff45abf81d23e63e4049028245462d833bd5b0ba803575"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"path": "src/lab/query/connection.ts",
|
|
1397
|
+
"sha256": "ba0489e284c8d1f48ccbab3d7d89392ca65dd2d632fc5fe7039905d8a99a1070"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"path": "src/lab/query/constants.ts",
|
|
1401
|
+
"sha256": "c1b9eddb3d510ebe70fbfe44e296d633ac51a1f689084f1a551fd320d80a3275"
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
"path": "src/lab/query/cursor.ts",
|
|
1405
|
+
"sha256": "57459fa1d7074deb4b20253dc78c20ad2c91fc1a46ef57a6bc191bccec18bb83"
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"path": "src/lab/query/dto-map.ts",
|
|
1409
|
+
"sha256": "1e3892e627bf7a2aa15876411c5429cc8db2b65a8afd45ffecf856ebc157cfe0"
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"path": "src/lab/query/errors.ts",
|
|
1413
|
+
"sha256": "8ce8a900a20f8cd5491ada22bbcb744deb792f5b948ad2ba2b005c49403cb2bf"
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"path": "src/lab/query/freshness.ts",
|
|
1417
|
+
"sha256": "5f88e7af150bccf1004c67b6bea5306c197f330abb894bc8852a0b87717ea744"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"path": "src/lab/query/index.ts",
|
|
1421
|
+
"sha256": "6fe717611eb2d2c94968d7504af3424a83604456f1df8dd0ba7ccb9df6ba4222"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"path": "src/lab/query/latest-observation.ts",
|
|
1425
|
+
"sha256": "5a3c62823399fee40455bd4e93c4bc76cce584555e7aa3e0ae2fd710ca6ae6b0"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"path": "src/lab/query/passive-production.ts",
|
|
1429
|
+
"sha256": "0f3dc4bb455f7429d73a4663f7175b698a82f9463f7b778e965a1686323df326"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"path": "src/lab/query/queries.ts",
|
|
1433
|
+
"sha256": "0608e8daa20439d008e371c9d6807fbb877879ad868fda2a2af13f120e453684"
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"path": "src/lab/query/types.ts",
|
|
1437
|
+
"sha256": "1b5db1b861b2bdf7942dd5b4126215d7ad6d57110221d71b5560d1de02d9ec81"
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
"path": "src/lab/subject/behavior-fingerprint.ts",
|
|
1441
|
+
"sha256": "413f3b9f8f91b58f951a60c3ac26469fc986ff46524b19d8e67b4bf46b8e65a9"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"path": "src/lab/subject/installation-salt.ts",
|
|
1445
|
+
"sha256": "6decbe8942ba547b7e59d4e4eeb6216d9b733bb5e2ddc3c601777dc9f58fa2ac"
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
"path": "src/lab/subject/protocol-subject.ts",
|
|
1449
|
+
"sha256": "3f57e59f805bfb88315648ee72f7753eafb5f7eb7245587a9392b4b62be761ef"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"path": "src/lab/subject/route-subject.ts",
|
|
1453
|
+
"sha256": "3c99427afe6c0eac88363d1346c5743ab6c056fd65becd5ee98f49a88fad2933"
|
|
1454
|
+
},
|
|
1455
|
+
{
|
|
1456
|
+
"path": "src/lib/abort.ts",
|
|
1457
|
+
"sha256": "303d4fef28a1fdf7c6a8f1feb612ff084d16f6a901648f1c768f518795ed2b26"
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
"path": "src/lib/admin-secrets.ts",
|
|
1461
|
+
"sha256": "779f1ebba088b017945acafd2d1ee960ae95b93065cddb00eba0f6b26a395fa2"
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"path": "src/lib/admission.ts",
|
|
1465
|
+
"sha256": "d10a13bbb09f7d8bdffac9b120bd75373ac7938a0bb333f3ee2f43a457727fb3"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"path": "src/lib/app-owned-memory-stores.ts",
|
|
1469
|
+
"sha256": "d4852d93145f8a765bf0374bd37e734970e2eb50bb559ea8a42f3921aa05e8c9"
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
"path": "src/lib/app-owned-memory.ts",
|
|
1473
|
+
"sha256": "9602393dfd51ecb695d4adf018399bd77d33f364d8f463eebadbc4ab77692e66"
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"path": "src/lib/bounded-body.ts",
|
|
1477
|
+
"sha256": "5b3f390988b74ee179d1474952953b524650e195953035088e63d76f2ca28b21"
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"path": "src/lib/bun-binary-validator.d.mts",
|
|
1481
|
+
"sha256": "dec6eb67be41660293d373603ba2c886a3d6411213d42dca3c36a17aaa3a59e5"
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"path": "src/lib/bun-binary-validator.mjs",
|
|
1485
|
+
"sha256": "aff2c48484e29c3a67aff9726425c2c6e123e58ba51e775bb6df5ac85399ebc3"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"path": "src/lib/bun-runtime.ts",
|
|
1489
|
+
"sha256": "bf632fe6098afaba4386c1aa80834e9b13d87827ab6dcb73090cd6a0eb12088f"
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"path": "src/lib/bun-stream-caps.ts",
|
|
1493
|
+
"sha256": "e1523443bb2aefcb59cf2759e9f41b5e5e3ca54b8e5cef0d421a22e8e35ac35c"
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"path": "src/lib/config-ownership.ts",
|
|
1497
|
+
"sha256": "7055c5a2c882b796831acbc32c35654d57f7ce8d810511854469ee51bf3ddda9"
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"path": "src/lib/crash-guard.ts",
|
|
1501
|
+
"sha256": "4cdeab19b61d8cf912b57d815c64ddb061150e83d0291fac0834066717a6aceb"
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"path": "src/lib/debug-log-buffer.ts",
|
|
1505
|
+
"sha256": "2c6a5592716ee67b871306b90912ff17b8edf68ad206c63924533bc8a4ed0757"
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"path": "src/lib/debug-settings.ts",
|
|
1509
|
+
"sha256": "6b7c20b98114ad5309b3143af12475233c58c6097eba145af78d22a471e0ee68"
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
"path": "src/lib/debug.ts",
|
|
1513
|
+
"sha256": "c99495ef25013882e7d5e3207579a45d236e8126ae930dcdb41566f98783e4a5"
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"path": "src/lib/destination-policy.ts",
|
|
1517
|
+
"sha256": "95db43037f16e47dbb8809b823b6965ecadd49c3925c07226291e5d0b8e64f60"
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"path": "src/lib/errors.ts",
|
|
1521
|
+
"sha256": "0e0a2b5117cf32f981256ec550e1fcf43dc181c026258736a9ef65ec9046a47d"
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
"path": "src/lib/eventstream-decoder.ts",
|
|
1525
|
+
"sha256": "c39ebd4a206fdefbd76814ffe1eab003305356b89490f3dafbeb01ae0145d265"
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"path": "src/lib/fabric-task-execution-authority.ts",
|
|
1529
|
+
"sha256": "a75156b9e28419b9ecf4041f3cb2d360ec126af13900799fdf49357a1fc2db1c"
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
"path": "src/lib/fabric-task-host.ts",
|
|
1533
|
+
"sha256": "211c6acaa29cac405f2ee8f608b9961ae2975c58573668ff792820f65446d316"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"path": "src/lib/gcp-adc.ts",
|
|
1537
|
+
"sha256": "09de636d27b8b122088cf1322235567e54ce1a8cf6b00dd349e59856733045da"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"path": "src/lib/injection-debug-log.ts",
|
|
1541
|
+
"sha256": "ab3b8e53c546c0ff43dc129d29c0b11c2d258f86e9d12475d87bf55510eb02c9"
|
|
1542
|
+
},
|
|
1543
|
+
{
|
|
1544
|
+
"path": "src/lib/lab-live-execution-authority.ts",
|
|
1545
|
+
"sha256": "7a4c488521b861ad70a87f560d85cb5c9f552e16493c5d44e19734947b4ac714"
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"path": "src/lib/lab-live-host.ts",
|
|
1549
|
+
"sha256": "d4304ca28e3b5ab72f146d564447c57074a318302d4bd2448bfd1d3f337f1dda"
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"path": "src/lib/lab-live-pinned-sender.ts",
|
|
1553
|
+
"sha256": "f182a3175cc4b371362984b67cdc23ff225376da0bfe23593b326ffae9ed721f"
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
"path": "src/lib/lab-live-route-production.ts",
|
|
1557
|
+
"sha256": "fb890cceb6390cd2d846c86c97e0d490ea8b58783cd7410d032b6d8573a07f49"
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
"path": "src/lib/local-management-attestation.ts",
|
|
1561
|
+
"sha256": "1bccf8f85ecd89cb017224024ca3d199d97c8ce88f5ac936dbc1419845a77f6e"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"path": "src/lib/local-management-capability.ts",
|
|
1565
|
+
"sha256": "1150af62dd3f0d45337d5b3b681224bea89eab293d42d6e3c9dba3c8245fbb67"
|
|
1566
|
+
},
|
|
1567
|
+
{
|
|
1568
|
+
"path": "src/lib/open-url.ts",
|
|
1569
|
+
"sha256": "a6db7ec7181ccb4e95411b2c7499fdd00f3dd48bebcdaca099da086c0dae2e59"
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"path": "src/lib/pinned-http.ts",
|
|
1573
|
+
"sha256": "27a69c4eac63db31ef754c84d7f5f2e2949221b5fe27e066420f91b40fcc51d7"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"path": "src/lib/privacy.ts",
|
|
1577
|
+
"sha256": "6c92a50b0843ffa1ca8300a078309caca4ade94f38ae63aa701e9685ae33c617"
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"path": "src/lib/process-control.ts",
|
|
1581
|
+
"sha256": "33120d8dd2af029d68bd31450c3537a20dd5eaee0d9a44b92a68aa5590331e07"
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"path": "src/lib/provider-outbound.ts",
|
|
1585
|
+
"sha256": "ee6e9c182c8049f445b975c58fd45d78dd76b0b556fca92b7d1b647614989637"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"path": "src/lib/provider-url.ts",
|
|
1589
|
+
"sha256": "0949cf528110343b532512ab5660752c12db1944a26a714938ed24e4ad5e864f"
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"path": "src/lib/proxy-env.ts",
|
|
1593
|
+
"sha256": "361cc67bd4ca1dc81589e7b877e3df6c6c62a3165c7308f75505f0c4aa57b26f"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"path": "src/lib/redact.ts",
|
|
1597
|
+
"sha256": "d2d0b01df03bf19a9344d233641fd7a279cab834dd48eb14555fa14c6f95727f"
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"path": "src/lib/retry-after.ts",
|
|
1601
|
+
"sha256": "dfbffd50f527cb251f2c20f5191f0c6eb34975fe43d2e91dd8b326e143c937de"
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"path": "src/lib/server-resource-ownership.ts",
|
|
1605
|
+
"sha256": "8248c3758eccbc6abc9150fe041e89fb2d05f114f9fc26cb1fb70a6c3b7403ed"
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"path": "src/lib/service-secrets.ts",
|
|
1609
|
+
"sha256": "53e83f9865943855c0a5489a9f9fafceb52ca63913fe5a84e4ba1ae83cea095f"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
"path": "src/lib/shadow-call.ts",
|
|
1613
|
+
"sha256": "c7e58016fa10385efb4acf23660859f7739afd945c25f593fc774da550316197"
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"path": "src/lib/sidecar-tracker.ts",
|
|
1617
|
+
"sha256": "a28d7c7be69d972d4919f726ceb76f257d575fed090ab1f119c366e229681892"
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"path": "src/lib/sse-decoder.ts",
|
|
1621
|
+
"sha256": "97cdfbdafe03dc2f8ba2b0b5fd7069313d73042c23b4737b2beee82982a28b67"
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"path": "src/lib/state-store-registrations.ts",
|
|
1625
|
+
"sha256": "45b2a7b0a0fe8a1e6fb630e0b6540f723c7b9e330ddc767fd0adccde05e38b89"
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"path": "src/lib/state-store-sweeper.ts",
|
|
1629
|
+
"sha256": "f90bf9131614a1df77b52c99791b5f9dcab49f458fadc162825cc73489a0eb0e"
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"path": "src/lib/system-restart-contract.ts",
|
|
1633
|
+
"sha256": "5bd6d639da7571788922bfa90757bd0edf82f3bfaa5f347c927bb8d0978d10e4"
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"path": "src/lib/test-home-guard.ts",
|
|
1637
|
+
"sha256": "da554cdbad6dcadc4bfac238eea77e71629c53b28232017756d8546df92d9603"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"path": "src/lib/token-estimate.ts",
|
|
1641
|
+
"sha256": "2c3cc4b8193166ca100197ca22202b06ac98c02547ffe32f3e0f8720190b9897"
|
|
1642
|
+
},
|
|
1643
|
+
{
|
|
1644
|
+
"path": "src/lib/translator-budget.ts",
|
|
1645
|
+
"sha256": "872d5d35eb0d2ee099fc4ab4bf3b9331c6207d4282f61f2c1b11a5a36c00d981"
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"path": "src/lib/upstream-reachability.ts",
|
|
1649
|
+
"sha256": "57f3d64fec31bdd62fbe84ec60f9b2a32f11136252e79fdeb3e856ee484d35d0"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"path": "src/lib/upstream-retry.ts",
|
|
1653
|
+
"sha256": "f90a0c74429e77b859d5c6a97da808ad193b51e77b82ba958bdbd07c60158d85"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"path": "src/lib/win-exec.ts",
|
|
1657
|
+
"sha256": "96b9c3bfc48aabb7506e060ae81b6ab1b3de0dba4f3d0538d4ff226abfd2881d"
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"path": "src/lib/win-paths.ts",
|
|
1661
|
+
"sha256": "83a0d8c32865a5fc3ed34dd10520f2c5f99db7356aaf5f856a0a24a10790ca9c"
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"path": "src/lib/windows-elevation.ts",
|
|
1665
|
+
"sha256": "9ef8a94484a6c4a95d3270aa10302f8e747ce54efed926c640f0cbdac13e6c27"
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"path": "src/lib/windows-secret-acl.ts",
|
|
1669
|
+
"sha256": "beefa22c1aef684743785fecd75cad6cd84bf8acdf035a16e64930ac3402da4c"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"path": "src/lib/windows-user-principal.ts",
|
|
1673
|
+
"sha256": "4830ed6cfeb040fb25603cd0f98079b56c46b8e325dc4bac0771ecd118a51cd4"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"path": "src/lib/winsw.ts",
|
|
1677
|
+
"sha256": "d4e1db7f179f8fd7674039fd2a69d61db8c7c63f33b7dd7e44a05c1599a7b16b"
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
"path": "src/oauth/account-import/google-antigravity-adapter.ts",
|
|
1681
|
+
"sha256": "3989c5cb9436468f839d245b967d8feb55015eae11ff25b3e0ad004ee0f77e35"
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"path": "src/oauth/account-import/index.ts",
|
|
1685
|
+
"sha256": "9547c25faf13f26baf8069c1b2ecb263fe74aed50958dd8b8818f75692679bcb"
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
"path": "src/oauth/account-import/parser.ts",
|
|
1689
|
+
"sha256": "6ae10cac85be7a133324f8239b12900e42573617b4e67cc389c95044771960ca"
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"path": "src/oauth/account-import/registry.ts",
|
|
1693
|
+
"sha256": "70b34ada3942e835108a369377f010eeedb51d040036875a926ab74f79db81fa"
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
"path": "src/oauth/account-import/service.ts",
|
|
1697
|
+
"sha256": "b11410b3370118af33d0e40a01fd3ea0f1f96d80b71924f55fdb017c784eec87"
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
"path": "src/oauth/account-import/types.ts",
|
|
1701
|
+
"sha256": "157cf151ff51f28ba569f00ded3164d141987ac082b778a67150d1baa3e4d1e0"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"path": "src/oauth/anthropic-routing.ts",
|
|
1705
|
+
"sha256": "af0a2ffde5c630030e06b829033be65b91af11fae108cf9a4fab04659a8fce42"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"path": "src/oauth/anthropic.ts",
|
|
1709
|
+
"sha256": "e09817a0f46855c12678bb919d01611f5815357ace010940c67533945a0eff62"
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"path": "src/oauth/callback-server.ts",
|
|
1713
|
+
"sha256": "35c7f440cec98b32fd62a065e23370916d0d61118bbb54ae4542a2c74e22669f"
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"path": "src/oauth/chatgpt.ts",
|
|
1717
|
+
"sha256": "96bb2c747effa78b35d8a7d8f61647ee3c190a852077e29cdc3d7b6a36dd8d1f"
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
"path": "src/oauth/command-code.ts",
|
|
1721
|
+
"sha256": "75ef37ec5186139f0a6d976c64b376ec1d7865463e97e5946ada291b194ad0be"
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"path": "src/oauth/cursor.ts",
|
|
1725
|
+
"sha256": "cb252292687c7cc79956c880de49c8a7cbeb6b9ee2c3f4eaab2dda9b8d640e36"
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"path": "src/oauth/github-copilot.ts",
|
|
1729
|
+
"sha256": "e0bfa9fa518ffc9b04ec81090540cf614ca217ca7ca3f356bc6f74efb6b1e38f"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"path": "src/oauth/google-antigravity.ts",
|
|
1733
|
+
"sha256": "a46a2aa7c5aafc51d631e1d02d84f90e2b6fc32c8000c7a84dd1c5a76018635c"
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"path": "src/oauth/health.ts",
|
|
1737
|
+
"sha256": "a8d7735ed5f54b74d3058fa31da2bf23480efd4c1be97a03370b820557e1635f"
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
"path": "src/oauth/index.ts",
|
|
1741
|
+
"sha256": "7fa04901697288bb21689e6cfbd32956f1240aa40bf485bb1328904f85695aa8"
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"path": "src/oauth/key-providers.ts",
|
|
1745
|
+
"sha256": "194d03867a965a336638598b6cd9d80d2ee48832e0efbc4ab83fce736558a237"
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"path": "src/oauth/kimi.ts",
|
|
1749
|
+
"sha256": "58fb57aab767941d89247e6d38b23e0dc6c4f15693504dc4040a5402265780af"
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"path": "src/oauth/kiro-credentials.ts",
|
|
1753
|
+
"sha256": "240cbc9a961e2c5a0fb09b727ce88fbf33162df47d7f1de1bc39606a46ace267"
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"path": "src/oauth/kiro.ts",
|
|
1757
|
+
"sha256": "40af08099c2b418ac6a0a1b708cf6cf2c61965ea4b56d3677cff41ecf35e13a9"
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"path": "src/oauth/local-token-detect.ts",
|
|
1761
|
+
"sha256": "528369fcd23bc88a7ee444a1a6f0dd7a4601ab5403819d3e0a9acf1fc84f44b3"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"path": "src/oauth/log.ts",
|
|
1765
|
+
"sha256": "72818ca5780319d2a5ec37de26caaf7fb253cbe7715089699605013f093aeccd"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"path": "src/oauth/login-cli.ts",
|
|
1769
|
+
"sha256": "82657a857638fe05ef4ec79d4dc641a2780d3be3f92253b9fe45fb589ac6b23e"
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"path": "src/oauth/nous.ts",
|
|
1773
|
+
"sha256": "76013229a77a53b3eab34d14f73e84ecef693f4e7939e37414570cb5ff751549"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"path": "src/oauth/pkce.ts",
|
|
1777
|
+
"sha256": "8e2798e44de278bc4db99ceaeded806e4d80a141f4d81bd81e4ab6fd22189509"
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"path": "src/oauth/store.ts",
|
|
1781
|
+
"sha256": "dda6e0d1d63ef43291aba437fc63749808a85ca039bfbf3e98b82b0368718f4a"
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
"path": "src/oauth/token-guardian.ts",
|
|
1785
|
+
"sha256": "61ab6a126dfec880425247cbe1c09ae387777f5a44cadfd47a96f59b6faf3274"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"path": "src/oauth/types.ts",
|
|
1789
|
+
"sha256": "deedfae3e29d24f7951c08c3b49d6741f90878dfbd6509a64aecec5fe0cc1866"
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"path": "src/oauth/xai.ts",
|
|
1793
|
+
"sha256": "4dad067c9efba0a966621f94da96decc3b5bc35cf4e076536eced0abb9fa8c88"
|
|
1794
|
+
},
|
|
1795
|
+
{
|
|
1796
|
+
"path": "src/providers/alibaba-region-backup.ts",
|
|
1797
|
+
"sha256": "dad4ff4e385764335557a1584d351097028cbc6acebc0e7080167ab3ba9276bb"
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"path": "src/providers/alibaba-region-migration.ts",
|
|
1801
|
+
"sha256": "92dfc8a11e4037ae8b2d03bc8ea6c76f79ddfbb3df7cbf50ed21ec432c71bf96"
|
|
1802
|
+
},
|
|
1803
|
+
{
|
|
1804
|
+
"path": "src/providers/alibaba-region-startup.ts",
|
|
1805
|
+
"sha256": "310b2a0575bdaea6bd7fb5d5ac8dba1228f8e383e258755b7e93c72f7ef01ec1"
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"path": "src/providers/antigravity-models.ts",
|
|
1809
|
+
"sha256": "85a21f0548358ce3d74085bb8872bc4d8e2c770644dca3d93ccbe8020e81a620"
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"path": "src/providers/api-keys.ts",
|
|
1813
|
+
"sha256": "53be86c657fa5f4ad3605f0098312df7186072637f8fe4d16667a64ec853e19e"
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
"path": "src/providers/base-url-choices.ts",
|
|
1817
|
+
"sha256": "ec5f3f084616f79dde7149d1bb5dc88bb9b3c406cd08698e499863c15c375c7f"
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
"path": "src/providers/codex-capacity.ts",
|
|
1821
|
+
"sha256": "f50cf1ca4965b09dcd57e95aa7047c32043fe42682309c5170f9233a460d69ec"
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
"path": "src/providers/command-code-efforts.ts",
|
|
1825
|
+
"sha256": "437845ad99e09307450889f149dd7770a69770dbcd4d024506f560e739804292"
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"path": "src/providers/context-cap.ts",
|
|
1829
|
+
"sha256": "822d0b79091723ef582984d350389b1786ce57a7776d4fe74adf237827ab9e15"
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"path": "src/providers/derive.ts",
|
|
1833
|
+
"sha256": "e3c05c3f115a5917af763e5c372d5f2629be3620cfa257ab25c4e38c7631981f"
|
|
1834
|
+
},
|
|
1835
|
+
{
|
|
1836
|
+
"path": "src/providers/free-directory.ts",
|
|
1837
|
+
"sha256": "cdcdb72b65bf2655bf9a8dd0a9b77d76ac35ebc8082c1065816a4fc9d785d2c4"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"path": "src/providers/github-copilot-transport.ts",
|
|
1841
|
+
"sha256": "78c11415c8423eaf89a5a4e5fe8cf46b55a6c13078cd035ba9662369f895954c"
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
"path": "src/providers/google-vertex-location.ts",
|
|
1845
|
+
"sha256": "0e30a1dfd3dafa742f710c38d1c856d3f016c9b9ac15e748edb6965b93c59a5e"
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
"path": "src/providers/key-failover.ts",
|
|
1849
|
+
"sha256": "45a1d4170731bad8dfec63ceb07ce3f6e47e89c911ae3f9e8eae9c9f77a60f5e"
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"path": "src/providers/kiro-models.ts",
|
|
1853
|
+
"sha256": "81a323255ab20e27b1040178b01b9cf567d0411b4171107bd47cc9a7ba46be4d"
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"path": "src/providers/label.ts",
|
|
1857
|
+
"sha256": "89977ce42ab3de1554dc03ee913281cdcc6829f15ec7ea73343bb5c0d8eec5c5"
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
"path": "src/providers/model-discovery-limits.ts",
|
|
1861
|
+
"sha256": "bb6870dd31ec3f5336471f71f5ac4e80c4346c67665fe1f94c00f5db5413227d"
|
|
1862
|
+
},
|
|
1863
|
+
{
|
|
1864
|
+
"path": "src/providers/model-discovery.ts",
|
|
1865
|
+
"sha256": "298d6f169883bfd5de3b6059fb3ae71c07328d0cec85cf4e188b80e78a50edc6"
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
"path": "src/providers/openai-sidecar.ts",
|
|
1869
|
+
"sha256": "52201dcd58b7658e75e9765edbdb58a90f2faefa2b89a387b10e918f4be00f1d"
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"path": "src/providers/openai-tier-startup.ts",
|
|
1873
|
+
"sha256": "5dc89dd548d71a5f5e25b85a5f924125f4faeb74c23a327f74294eb40ba414d0"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"path": "src/providers/openai-tiers.ts",
|
|
1877
|
+
"sha256": "acef1f63fa3c7bd2228e3fa65b4274aec90596d49a817f664d249932ba8c30ea"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"path": "src/providers/openai-virtual-models.ts",
|
|
1881
|
+
"sha256": "ecfc4e44a6b19342a5822dae75c84baef2fda29c716f0e0aff505d2173939cbf"
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"path": "src/providers/opencode-zen-rate-limit.ts",
|
|
1885
|
+
"sha256": "4ee0c55013e77ed825188f998d422f263e8129436a63e811f98083725825e1eb"
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"path": "src/providers/openrouter-routing.ts",
|
|
1889
|
+
"sha256": "1e39e9f483af63213b152f65fdd2be04cdc6c76f64424bbcff80ae38083e7521"
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
"path": "src/providers/provider-id-rewrite.ts",
|
|
1893
|
+
"sha256": "4bfa1670711f2e66317ffb5a5305e52dc89f1e0d189c85ef3ed38dfce1d5d8e9"
|
|
1894
|
+
},
|
|
1895
|
+
{
|
|
1896
|
+
"path": "src/providers/quota.ts",
|
|
1897
|
+
"sha256": "bb60eb09ce4970d6e865229981a91b5e5d1f4f4196106b65a602a14b815dfc3e"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"path": "src/providers/registry.ts",
|
|
1901
|
+
"sha256": "fcee740159250616dfd16f3cf8c998fd12f29f25f1b4b760d1b8b2b1724e1d98"
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"path": "src/providers/slug-codec.ts",
|
|
1905
|
+
"sha256": "01a82a23ee8046e280d9fdc85769233ccc7bc67d1866fe475f4f2efe33136aca"
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
"path": "src/providers/xai-transport.ts",
|
|
1909
|
+
"sha256": "469bae4776ca5a4e49c2e1c55b4dcc5c38918d9dd69d179266fdfe79704a644c"
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"path": "src/reasoning-effort.ts",
|
|
1913
|
+
"sha256": "b079cbced2ca1168d4be7598622d7113439777c9a12f73534ba0703c81e43d6d"
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
"path": "src/responses/compaction.ts",
|
|
1917
|
+
"sha256": "2f152fd0e219958be7d7cec38eeab63e2d4efdd89d2428867e3842692dea0cac"
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
"path": "src/responses/custom-tool-compat.ts",
|
|
1921
|
+
"sha256": "8e082bf45123416643f7071211e36a8ad4b3e21d19a44e01c1fe5aa3dc2aa213"
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"path": "src/responses/hosted-tool-policy.ts",
|
|
1925
|
+
"sha256": "d447912374048637f0c6974522bd52921f157aecfbd733280fad94ae1545acaf"
|
|
1926
|
+
},
|
|
1927
|
+
{
|
|
1928
|
+
"path": "src/responses/parser.ts",
|
|
1929
|
+
"sha256": "255aab86fab5d6b2beedfcae1aced4cb69406b2c1d1e72bb6c0ca56337bfb0f1"
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
"path": "src/responses/reasoning-envelope.ts",
|
|
1933
|
+
"sha256": "1f06da19739c3fd946e54b81e7c5d87d1677d4335fec35b1e7264662a5725d10"
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"path": "src/responses/reasoning-replay-cache.ts",
|
|
1937
|
+
"sha256": "28fa9e047741251734d3c39a6183e2465cae3c610e31de4f2a1bd4e4333e8e00"
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
"path": "src/responses/schema.ts",
|
|
1941
|
+
"sha256": "25b063cae8ed65348ab6f5fe2df67d16b63f7432c7c6db154b2a9fbe8b467653"
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
"path": "src/responses/spill-store.ts",
|
|
1945
|
+
"sha256": "f16559b63a214861cbbc47908653b831ae7ade2aa88f1cfd3c0907373d668f99"
|
|
1946
|
+
},
|
|
1947
|
+
{
|
|
1948
|
+
"path": "src/responses/state.ts",
|
|
1949
|
+
"sha256": "930af89127963316f092a68e4af8a0987a89a9bdcb22584e5018d25c635c55c4"
|
|
1950
|
+
},
|
|
1951
|
+
{
|
|
1952
|
+
"path": "src/responses/tool-groups.ts",
|
|
1953
|
+
"sha256": "b2750b33ec7bb5a7f76f27584bf99372fac4f253dd287849b2f3f9821db574cd"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"path": "src/router.ts",
|
|
1957
|
+
"sha256": "a47d5b2cd1c0a47fea5b808333643ad8ccdb7dd0ebf2a43a07df4fbf7e0977ab"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"path": "src/routing/analytics.ts",
|
|
1961
|
+
"sha256": "6b356e72e698e9a25a760e42a78d19236133e376eda3ff3da9220b027603e3b1"
|
|
1962
|
+
},
|
|
1963
|
+
{
|
|
1964
|
+
"path": "src/routing/capability.ts",
|
|
1965
|
+
"sha256": "bb83b664e6dc8698341a987a5335bc3a721b65d9eb057e8e610d3a0329241ac5"
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
"path": "src/routing/compatibility/assemble.ts",
|
|
1969
|
+
"sha256": "00f0802e3ef8a2bf79779fbe27b62a73e92a94cff11bf5594784fef35dbda495"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"path": "src/routing/compatibility/behavior.ts",
|
|
1973
|
+
"sha256": "ce691231c6a23eda270cf8adefaec8c19834ca1bf2eabeeb1bb58649670be623"
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"path": "src/routing/compatibility/catalog.ts",
|
|
1977
|
+
"sha256": "06671fb5599debd9e0833f686451e7adee3517952278d649136c6edd613dd9b0"
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"path": "src/routing/compatibility/endpoint.ts",
|
|
1981
|
+
"sha256": "38578440e02ce712f8d84fa97ec2d1bc3396f31983be9b6e5b0010ef6edd146b"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"path": "src/routing/compatibility/policy.ts",
|
|
1985
|
+
"sha256": "d903d561ef2ae16c86d16c7ec157556ee0c78557aaa7e83dad46c1abc0e6530c"
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"path": "src/routing/compatibility/reader.ts",
|
|
1989
|
+
"sha256": "c48943c0b660609bbdf4d47896de6338cd46b2c9144f1c916646221fe437a678"
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
"path": "src/routing/compatibility/subject.ts",
|
|
1993
|
+
"sha256": "af2c43d2c593d119bb3fdbceb81757f17fce44165f16a795eda0259b9bd8d25a"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"path": "src/routing/compatibility/types.ts",
|
|
1997
|
+
"sha256": "287448ce2c6efa68d68656fff89574b414b7c3a1d401820be1f59ff6c4170536"
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"path": "src/routing/compatibility/version.ts",
|
|
2001
|
+
"sha256": "32b97a1fb10447309f5c4788df6154e1264f27efbf5ba498722559d69f07d56b"
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"path": "src/routing/cost.ts",
|
|
2005
|
+
"sha256": "bbec36250ff804aee460ec08f2d9a9b8dcfe101e51dd512205f88ba391c6afcc"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"path": "src/routing/evaluator.ts",
|
|
2009
|
+
"sha256": "81b207ce57ffec2851a919885866a1345c98500e3706a2f08c6992386ef77ce2"
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
"path": "src/routing/health.ts",
|
|
2013
|
+
"sha256": "42c795303cffdc197b20756c862700140fbf584bc159c430d29244e544b96d3e"
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"path": "src/routing/history/cursor.ts",
|
|
2017
|
+
"sha256": "5437f295133cdd7a1817b3c3dd220cdd4bb43a7a250c740dcf4037172c32f6dc"
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
"path": "src/routing/history/indexer.ts",
|
|
2021
|
+
"sha256": "bc5265d4e33a8b2c1fd8bfbbf3479c6f31c6455c74a59edfbb42fef7c8eec459"
|
|
2022
|
+
},
|
|
2023
|
+
{
|
|
2024
|
+
"path": "src/routing/history/schema.ts",
|
|
2025
|
+
"sha256": "1bb8999af1caad02cd9a81e8907b058dda7319881e38e5a9e1a90597dacf96c5"
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"path": "src/routing/profile-namespace.ts",
|
|
2029
|
+
"sha256": "aa27a35e3002359c1425c2a76f224e415238ddc215b3e59535010afaf72b1c4e"
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"path": "src/routing/profile.ts",
|
|
2033
|
+
"sha256": "5e8cd20b9f8a9c0ef3537c96158b59e93c13593ad07841e18b71ee36923bb867"
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"path": "src/routing/quota.ts",
|
|
2037
|
+
"sha256": "41a259063e1b8a472902060a8724c6293841d775ff59641c6f2b0f740d9213e2"
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"path": "src/routing/request-evidence.ts",
|
|
2041
|
+
"sha256": "ccc282cdddf6f6803b6d061abeab5dba312447ba2348139160ff18834cb88a4b"
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
"path": "src/routing/trace.ts",
|
|
2045
|
+
"sha256": "4d629c9786083ada25876deadfb5ddaed03a0d207fb0683721c1f983619eb020"
|
|
2046
|
+
},
|
|
2047
|
+
{
|
|
2048
|
+
"path": "src/server/adapter-resolve.ts",
|
|
2049
|
+
"sha256": "a7a4e24c6ad5f86539a728c0eb508d4cd79f8b33325cd914f4505da06a5f03d0"
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"path": "src/server/auth-cors.ts",
|
|
2053
|
+
"sha256": "05f32d48da65b7ab6eabb877a5fbf85c0aae3a45799c1fcfa7c37f4fe44cdaaf"
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"path": "src/server/background-lifecycle.ts",
|
|
2057
|
+
"sha256": "9a94ad8358ec0276af2c2f515b5390fea9b07fafe044cf3787eb30a5bd183d7c"
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"path": "src/server/chat-completions.ts",
|
|
2061
|
+
"sha256": "7f3b9b2f0e9850e687d672266f7e6976f634b151ddbcf729b2373c5d31ef51cc"
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"path": "src/server/claude-messages.ts",
|
|
2065
|
+
"sha256": "64be4290b7cff0729754ff092110acf6f89759106f9742c5f2919bd56c9fcbde"
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"path": "src/server/direct-local-http.ts",
|
|
2069
|
+
"sha256": "5415d320edde225d0c3d545d0fc7e6e49baede992a8c86939ace51d06a98971d"
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
"path": "src/server/effort-policy.ts",
|
|
2073
|
+
"sha256": "7ca86f1bdd5ab6e6cd58cf3fbb65a6c076359f4bc05a6c790ccceb05d071e350"
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"path": "src/server/github-copilot-responses-repair.ts",
|
|
2077
|
+
"sha256": "7cff66ca0b8e1b4ff64e29c3b353d876d053a9612a0c357ea5af9603c8400629"
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
"path": "src/server/gui-static.ts",
|
|
2081
|
+
"sha256": "caeddf5c22d22437023f6d00a5f08a7208f7e02906e531f3d4f0adb211c12ee9"
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
"path": "src/server/image-retry.ts",
|
|
2085
|
+
"sha256": "c7024f3da1578d35bef3ce06770051ceabec15a04300b41b3dcf640f28c82b55"
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"path": "src/server/images.ts",
|
|
2089
|
+
"sha256": "91fb82ae4c955f39b0ed2fd76724030c8f4b8a4e4245abfbfe86f35e504e1d5d"
|
|
2090
|
+
},
|
|
2091
|
+
{
|
|
2092
|
+
"path": "src/server/index.ts",
|
|
2093
|
+
"sha256": "82ebf4973cc31922ddb25b9c85f659d2e8eaa6d45755b279885b30749a86e474"
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
"path": "src/server/lifecycle.ts",
|
|
2097
|
+
"sha256": "ee926ab2c5bb9925f91ce908ba8ce707859690bae1d07227afc38b259f40ea73"
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
"path": "src/server/live.ts",
|
|
2101
|
+
"sha256": "d92bf6e4a4eeeb144b48fb5ec99d2068fc3327ff49fc7dff755f7e9a9c1b457c"
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"path": "src/server/local-management-read-client.ts",
|
|
2105
|
+
"sha256": "af2b5e25ed8b8aa063426ed3a82f0a526d193fd3f0c6168f65adfcd8e14362fe"
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
"path": "src/server/management-api.ts",
|
|
2109
|
+
"sha256": "ccd670a1618afc1ec6611771ec2519ea6c216d0ef43aa9e1114a3a98a9f0e030"
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"path": "src/server/management-auth.ts",
|
|
2113
|
+
"sha256": "344c758702a52a59a2d2ccf8461fb3d479d866d9672766000a5177512cbe55a2"
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"path": "src/server/management/agent-settings-routes.ts",
|
|
2117
|
+
"sha256": "2e470534a00bfe47ca3c76688373c72650c60032d7d1ff56d3b57f3cadff3907"
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
"path": "src/server/management/api-access.ts",
|
|
2121
|
+
"sha256": "e7a7787be79dc93a1edb9a618847c705f12a24bc1bbcdd94dd5197be14f7a4a1"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"path": "src/server/management/api-key-usage.ts",
|
|
2125
|
+
"sha256": "37ef0b22cb1b7b2a03177c39cf609ebe40183aeadeab11462a17e67cc2e6848f"
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"path": "src/server/management/body.ts",
|
|
2129
|
+
"sha256": "3839e768c3a698faca0d3213eca9187d113f38ad60b5c47fa1849347ca96e20a"
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"path": "src/server/management/combo-routes.ts",
|
|
2133
|
+
"sha256": "67be6867d70c9f3cfe21e4dee19ed3c2cf8cc6814a46277b6cf3dd33cecb5068"
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
"path": "src/server/management/config-routes.ts",
|
|
2137
|
+
"sha256": "1cac8721830682d209128de59b9a6245defbe74e0e98611dbbdd4fecb853892e"
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"path": "src/server/management/context.ts",
|
|
2141
|
+
"sha256": "2ea6cf30e84c14a9bc0e0610954e41eaf8e651d4c13634bd4f174142708c9f07"
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"path": "src/server/management/integration-routes.ts",
|
|
2145
|
+
"sha256": "37d1cdb0e3f993c0cc190e7079dea20ba6daafcfcde314f4f37fdc93bcdcbf79"
|
|
2146
|
+
},
|
|
2147
|
+
{
|
|
2148
|
+
"path": "src/server/management/lab-automation-routes.ts",
|
|
2149
|
+
"sha256": "74e94c24c5a7480c5d5a81dec472840abc8318875e29c55e07ea6c21efd08462"
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
"path": "src/server/management/lab-routes.ts",
|
|
2153
|
+
"sha256": "2c97391360553c6ae883027ff5743b6b3934b634f57cadabc0fc2fbdb1dc4a2e"
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"path": "src/server/management/logs-usage-routes.ts",
|
|
2157
|
+
"sha256": "3a84d93d6c45e533a3fd84991f683eb256cc0dfa25d584e42cc67df74fd65ac0"
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"path": "src/server/management/model-routes.ts",
|
|
2161
|
+
"sha256": "d137a22b3122778f2b8db6e25a2d9eb4f377d35c37f5afb5ef1e2bba71b2490d"
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"path": "src/server/management/model-rows.ts",
|
|
2165
|
+
"sha256": "043ea58af5b284f5c3913626cfadedb289eabc2f992b28a085ad405ff6027ad0"
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
"path": "src/server/management/native-integration-routes.ts",
|
|
2169
|
+
"sha256": "7bc9a5b90ed4b0a949dd1b97fdbdef8aec26ce21b13c3ca1e58bb03db6005dbc"
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
"path": "src/server/management/oauth-account-routes.ts",
|
|
2173
|
+
"sha256": "cf6c3ca20fe873e982bbb0695b67fbe79eabeb7b8a04c5f2e23817979ed59459"
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
"path": "src/server/management/provider-routes.ts",
|
|
2177
|
+
"sha256": "2ee58ba4f6f2a9de6bc458dc4e78ae1eb1b095ada1de8f3e3922dec25301cc80"
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"path": "src/server/management/request-history-routes.ts",
|
|
2181
|
+
"sha256": "cdc658830f272b3e92151c2cf0a1c2130618075972b9390bf8b263500aae4afb"
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"path": "src/server/management/routing-analytics-routes.ts",
|
|
2185
|
+
"sha256": "d6cff11ef0a4844095c4b6008b2dfe745ee3c3c5d3ef02fd70518cfee15c6258"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"path": "src/server/management/routing-profile-routes.ts",
|
|
2189
|
+
"sha256": "1185f47d963c31efa7da224baf9f2a447a15a7afee0705c05e6c110e75b465ff"
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
"path": "src/server/management/shared.ts",
|
|
2193
|
+
"sha256": "93920432e6b8ef3fbe5dd583e335d023929c8f348459a17541c5646916b2f7dc"
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"path": "src/server/management/sidebar-routes.ts",
|
|
2197
|
+
"sha256": "0926c61288d6344456516c4208ea788192739d5d4c47c5566baf861313b75301"
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"path": "src/server/management/sync-response.ts",
|
|
2201
|
+
"sha256": "580cd5b67c1b1c7ac2a25262da00dc4dd31c7959e506622fc13a2f240d800786"
|
|
2202
|
+
},
|
|
2203
|
+
{
|
|
2204
|
+
"path": "src/server/management/system-restart.ts",
|
|
2205
|
+
"sha256": "492597ae475fdc62b12d0ff727a85d6dd52e751bb13b5ef32b8b39238b7ecf1c"
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"path": "src/server/management/system-routes.ts",
|
|
2209
|
+
"sha256": "616350db40ee90d26039b7c9f7a96d9e1e5d8d4998090b602ec111f5c8a5d939"
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
"path": "src/server/management/usage-summary-cache.ts",
|
|
2213
|
+
"sha256": "fb1b889f645afb2efb02f49d78f3390c504d073867af627ace9d29f97318fc9f"
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"path": "src/server/management/vision-sidecar-options.ts",
|
|
2217
|
+
"sha256": "f20c7f245d7cbaac7fa6359f1a67d947e9f7603329296f43b7bc421e8960fe28"
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
"path": "src/server/memory-watchdog.ts",
|
|
2221
|
+
"sha256": "d2f7f5cd03316cdfb0bd23abd77b4c28d87986a9a1cb9e0f53e3890695f07f4c"
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
"path": "src/server/port-reclaim.ts",
|
|
2225
|
+
"sha256": "5b1a9e7e5e3d752ee7dd0dca1ea8737eeaf7945e2c9a4e3a0aed9805cc72d253"
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"path": "src/server/ports.ts",
|
|
2229
|
+
"sha256": "cc4cf1866a1b9d61343be5a0f822f24a44a78bb9b20723c4fdf52a65a93fb879"
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
"path": "src/server/proxy-liveness.ts",
|
|
2233
|
+
"sha256": "722454703ac2aa710ae0568a2ada618e350bbe250bb16a8feda3829ef4950e74"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"path": "src/server/readiness.ts",
|
|
2237
|
+
"sha256": "d7a0cc4581ad8da8c06bc85182a02c2052f7ce6ddbc27ac5b2185e94ddc9a8cb"
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"path": "src/server/relay-eager.ts",
|
|
2241
|
+
"sha256": "95dd51335a287b27d2c63f21298f2faa9aa3687713fd44efed1a38e14da65fb6"
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
"path": "src/server/relay.ts",
|
|
2245
|
+
"sha256": "86caa14f6b6a45b128b42c094f102fa8a969943db86179212c359e28a5b727eb"
|
|
2246
|
+
},
|
|
2247
|
+
{
|
|
2248
|
+
"path": "src/server/request-decompress.ts",
|
|
2249
|
+
"sha256": "239636dd0e8bbac8b9351643bd6f6223509085f17c88d547c52e3d438de503bd"
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
"path": "src/server/request-log-conversation.ts",
|
|
2253
|
+
"sha256": "89a0658d834b6f05d292e02c093e5fa317d2b5e7a60404fb2b4ab88ced8c47cc"
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"path": "src/server/request-log.ts",
|
|
2257
|
+
"sha256": "036af24421d796ba82cd52c8ed97dbead949a471c9a212fe74f1aed2b87edf8a"
|
|
2258
|
+
},
|
|
2259
|
+
{
|
|
2260
|
+
"path": "src/server/responses-custom-tool-repair.ts",
|
|
2261
|
+
"sha256": "e1ee25f14bc40e12dcf5cdf3ad247eccbaa90d7b5c27226aca971ed29336eaea"
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
"path": "src/server/responses-image-gen-repair.ts",
|
|
2265
|
+
"sha256": "c6e6e60e6ed87c17058f3f19f8c3ac159a11eb0d9dc90da536906a7b78524afd"
|
|
2266
|
+
},
|
|
2267
|
+
{
|
|
2268
|
+
"path": "src/server/responses-item-id-repair.ts",
|
|
2269
|
+
"sha256": "02341fe16358093c2b57f816a5ae583d49f3b48c486cba8e9066175fe7678e39"
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
"path": "src/server/responses-json-events.ts",
|
|
2273
|
+
"sha256": "1e713e30e76ccc0b657adb18fdc2ad814bea4158df944cb41346f08e9e0faefa"
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"path": "src/server/responses-model-rewrite.ts",
|
|
2277
|
+
"sha256": "78ccff83ff54f7687d1f5ed04e326a17a9a37187ec470947ee960f4266a34a4f"
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"path": "src/server/responses-snapshot-repair.ts",
|
|
2281
|
+
"sha256": "f916614f2654a21e10ea4d2e18c810a378d345417380e1b0b6fd3eee984baf8a"
|
|
2282
|
+
},
|
|
2283
|
+
{
|
|
2284
|
+
"path": "src/server/responses-terminal-repair.ts",
|
|
2285
|
+
"sha256": "d7467f1c5e0c93236c27fd3b9edab289f14cca6d15d07dfe00b3fb6f1f04e0ae"
|
|
2286
|
+
},
|
|
2287
|
+
{
|
|
2288
|
+
"path": "src/server/responses.ts",
|
|
2289
|
+
"sha256": "13b7d051380ff7ce29e7a85027b4ad494f93d3595aec9554aef5491fee07fb08"
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
"path": "src/server/responses/collaboration.ts",
|
|
2293
|
+
"sha256": "e3bcb01890c2d5e3b2f5032de223a537455c21bf06a134e4f5c828c6b56dc243"
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"path": "src/server/responses/compact.ts",
|
|
2297
|
+
"sha256": "589decda83ed277d3b69635a3e3bf3abdc11374cb3c93895e8f806b4d7dc81d7"
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"path": "src/server/responses/core.ts",
|
|
2301
|
+
"sha256": "e604c4206aef8e1726a648b34485bb741823cecd211eede95f8d03351d22538d"
|
|
2302
|
+
},
|
|
2303
|
+
{
|
|
2304
|
+
"path": "src/server/responses/encrypted-payload.ts",
|
|
2305
|
+
"sha256": "cf0923b59773552294d804dd8f06e549802a3394a432ff1c3de97d1a391f26a7"
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"path": "src/server/responses/fetch-helpers.ts",
|
|
2309
|
+
"sha256": "5763bccb7c460cc4031f45c728bce9db14f8af010face733108216232ef07d13"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"path": "src/server/responses/passthrough-error.ts",
|
|
2313
|
+
"sha256": "d1de1ae5bedc91406219ff82276158b8203c53191a106051a2e2d65140fcef63"
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"path": "src/server/responses/policy-fallback.ts",
|
|
2317
|
+
"sha256": "64592e4c703941f9d860d0f575a7944f16dbca487b08fd8d2536e0b92f188fca"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"path": "src/server/responses/terminal-guard.ts",
|
|
2321
|
+
"sha256": "b1294962a49437fd130e1d3f9220de43f9d59a262860be2c684011ee80489c11"
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"path": "src/server/responses/upstream-error.ts",
|
|
2325
|
+
"sha256": "e74ff94134f82d594891242b49d03619771f938bde3dc4b6c96a527510da2546"
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
"path": "src/server/search.ts",
|
|
2329
|
+
"sha256": "4a777b38b22983999f1aeeb5c2b790b7915730fcfa4e7612e36807f301a4d066"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"path": "src/server/sse-frame-buffer.ts",
|
|
2333
|
+
"sha256": "0deab09b8ca9031575111ff03b6507e1fffd403a274cd44a6534ab8cef845b01"
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
"path": "src/server/sse-payload-rewrite.ts",
|
|
2337
|
+
"sha256": "5e1681d9ce2fb1990ad904a843cfdfc50fc14c68288b0186425a8d7c2c22461d"
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"path": "src/server/startup-action-control.ts",
|
|
2341
|
+
"sha256": "2cb1d5ffe03b661b8e7d5dbe876b78fe277ca69dc2c0171568947ef769810d1e"
|
|
2342
|
+
},
|
|
2343
|
+
{
|
|
2344
|
+
"path": "src/server/startup-health-cache.ts",
|
|
2345
|
+
"sha256": "2ef39b33ec79cd6f8d1bf9040ce1510c32142a643d7a9e2ba56690fe23995da5"
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"path": "src/server/system-env.ts",
|
|
2349
|
+
"sha256": "d9d569ea71f74a84f8618dd2e43a21ea5917141aafdfe0def47eca17ce95e7f4"
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
"path": "src/server/windows-tcp-drop.ts",
|
|
2353
|
+
"sha256": "808174ceb0f3cbbcc8b23d727c9da947527c5680d4b9655d84bc950e805cd565"
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"path": "src/server/windows-tray-control.ts",
|
|
2357
|
+
"sha256": "ed950e098dec75d63e7c4472a8c1ea5de730cb2a04aa4aaeb56e56bce855de58"
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
"path": "src/server/ws-bridge.ts",
|
|
2361
|
+
"sha256": "e57f339a062ba029923fe5aa41367c03a980cc407626a1f1f44aa40b0c2738eb"
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"path": "src/service-manager-probe.ts",
|
|
2365
|
+
"sha256": "ec12b537eccc4310ad07ea504da84e99331ded66e233bb0e54945f8b781bf932"
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
"path": "src/service.ts",
|
|
2369
|
+
"sha256": "1438465d669c54759319ed6a689517967ed8fc66463870dda547ac123d43c0df"
|
|
2370
|
+
},
|
|
2371
|
+
{
|
|
2372
|
+
"path": "src/stall-timeout.ts",
|
|
2373
|
+
"sha256": "abd4f8883bf90e2e84495a72a0cd59ce2b2491416396f9ac01e075fef164a0de"
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
"path": "src/storage/cleanup-job.ts",
|
|
2377
|
+
"sha256": "1d6dae9c9f8aac7e07f12c60ce1b67211a7b14356c285ef0b235b620a09d03b3"
|
|
2378
|
+
},
|
|
2379
|
+
{
|
|
2380
|
+
"path": "src/storage/cleanup.ts",
|
|
2381
|
+
"sha256": "4a0f0c8e8ab523fb1247ff8e0c48fb34217ee774318151a12e7df5c2684e5f97"
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"path": "src/storage/policy-job.ts",
|
|
2385
|
+
"sha256": "25b014d6b188505ab713640bb9ba223807d33c4258d15450a7b3397adec1f4bc"
|
|
2386
|
+
},
|
|
2387
|
+
{
|
|
2388
|
+
"path": "src/storage/policy-scheduler.ts",
|
|
2389
|
+
"sha256": "e25d3879b05dd7fe6f27cfc7c51ff3f715f937be7c55c11c61be3e1570a7a56c"
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
"path": "src/storage/policy-worker.ts",
|
|
2393
|
+
"sha256": "e4637c162efd2f91cf291d9eecc575f71ca8322afa1868146e4a6f387bbaaee7"
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"path": "src/storage/policy.ts",
|
|
2397
|
+
"sha256": "64df434d0bc5fb2c9f9ef3cada20c34a439f1bd658a23c251b3b17cdadf4412d"
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"path": "src/storage/restore-job.ts",
|
|
2401
|
+
"sha256": "b3bd80c88d96cd79a57fb964f58b3134a00d556e56bac01f5d4718515306048e"
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
"path": "src/storage/restore-worker.ts",
|
|
2405
|
+
"sha256": "a74ecc8a3ef5d1991da15bcb24a60d43c877ee1bd698e65f0ba86d97750bf96d"
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"path": "src/storage/scanner.ts",
|
|
2409
|
+
"sha256": "4ccceefb2cd14e4ed1d371a547bcb7bc87b779f7ee7b369a765a32b1d39bf9ee"
|
|
2410
|
+
},
|
|
2411
|
+
{
|
|
2412
|
+
"path": "src/storage/storage-mutation-coordinator.ts",
|
|
2413
|
+
"sha256": "b669af88a7c66d1d07b6c4b6cf6111409a07790a74349a22022ffac602832694"
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"path": "src/storage/worker-lifecycle.ts",
|
|
2417
|
+
"sha256": "d7c7ba4be4cca53c65b7bc8a3fc20278202ca6c8ef1fa1071d7d1812567fde13"
|
|
2418
|
+
},
|
|
2419
|
+
{
|
|
2420
|
+
"path": "src/tray/assets/opencodex-tray-offline.ico",
|
|
2421
|
+
"sha256": "20a3452c2e8ee6a881c3c99b92b09f5b473d1944e98a5a681f2158f848f7a9a4"
|
|
2422
|
+
},
|
|
2423
|
+
{
|
|
2424
|
+
"path": "src/tray/assets/opencodex-tray-online.ico",
|
|
2425
|
+
"sha256": "55496f5ec5fd6025bfcb5c252355ec67746cfe606b48b0068e9b45941091731b"
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
"path": "src/tray/assets/opencodex-tray-warning.ico",
|
|
2429
|
+
"sha256": "1b91a553ca154f080ea542e50f0786a21dba847f15d5fa9da37200d24849cab0"
|
|
2430
|
+
},
|
|
2431
|
+
{
|
|
2432
|
+
"path": "src/tray/assets/opencodex-tray.png",
|
|
2433
|
+
"sha256": "de6aafa7d193eecf0ee8905e0230417afcdd11971a2272e4cf184676fd7ba90d"
|
|
2434
|
+
},
|
|
2435
|
+
{
|
|
2436
|
+
"path": "src/tray/windows-tray.ps1",
|
|
2437
|
+
"sha256": "3606ae1c2b12da4f4dd2b13baab64f2d9cd6d84ecd85c2ade2353609b4a512bb"
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"path": "src/tray/windows.ts",
|
|
2441
|
+
"sha256": "3ca49da1758a7d82be178f4370bed3f1a62bfd052d83b6f79575c19b1d69c1bd"
|
|
2442
|
+
},
|
|
2443
|
+
{
|
|
2444
|
+
"path": "src/types.ts",
|
|
2445
|
+
"sha256": "2d4ff8d613b137e6ef483542e53be28e13e5480f4edc9c6798d8804661546da0"
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
"path": "src/update/badge.ts",
|
|
2449
|
+
"sha256": "18e94f01758fe874c6aeed02c65b7368d730db8ade3ca7bbcc7b10d627658aa7"
|
|
2450
|
+
},
|
|
2451
|
+
{
|
|
2452
|
+
"path": "src/update/index.ts",
|
|
2453
|
+
"sha256": "88d825460b3cc2d9a155f17f552b359cc40006e62e9e39943a3d3619902e82bf"
|
|
2454
|
+
},
|
|
2455
|
+
{
|
|
2456
|
+
"path": "src/update/job.ts",
|
|
2457
|
+
"sha256": "af0aeb7c8c3f24fd93306d0def7695482b1a0792268c2e67dcb76b586e4ffa85"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"path": "src/update/notify.ts",
|
|
2461
|
+
"sha256": "493654e60fd7b3e3ccc0596dd349d75505cd6b05ee248c4356104ead16c4d7c4"
|
|
2462
|
+
},
|
|
2463
|
+
{
|
|
2464
|
+
"path": "src/update/npm-cache-preflight.d.mts",
|
|
2465
|
+
"sha256": "a1356e4258dbe0c50e8392409002d9e33b41f53e545c01bb7dcec213e541fe68"
|
|
2466
|
+
},
|
|
2467
|
+
{
|
|
2468
|
+
"path": "src/update/npm-cache-preflight.mjs",
|
|
2469
|
+
"sha256": "e6acc3bcfc617bafa963015d12302c2dbd397dc52eb7c0f59c3fdee52f55ed8b"
|
|
2470
|
+
},
|
|
2471
|
+
{
|
|
2472
|
+
"path": "src/update/npm-invocation.d.mts",
|
|
2473
|
+
"sha256": "5ea407241c83cf54e17a383ef56f069d5aea264c6abf518df02b5e2f6db1ef36"
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
"path": "src/update/npm-invocation.mjs",
|
|
2477
|
+
"sha256": "25292222b9fa1ed00fc01164e9e9f25e82ca1820c73c20643171380467b4628b"
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
"path": "src/update/tray-update-plan.d.mts",
|
|
2481
|
+
"sha256": "d8f3da715ba2ced1a52d7d08f0bcda031a25e342a3a879ceaf7a5244e21020fe"
|
|
2482
|
+
},
|
|
2483
|
+
{
|
|
2484
|
+
"path": "src/update/tray-update-plan.mjs",
|
|
2485
|
+
"sha256": "c11b945c43c0f2d2f10fb6a9d15738ec5639c1938aac0b7c6415ca84d8241211"
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
"path": "src/usage/cost.ts",
|
|
2489
|
+
"sha256": "abfa3d380ce3f177458841ea544f4d343acc6b6e0447a8b855f641c137e62fb2"
|
|
2490
|
+
},
|
|
2491
|
+
{
|
|
2492
|
+
"path": "src/usage/debug.ts",
|
|
2493
|
+
"sha256": "4968569b4c7dd4b1e5e0bdb062495a1c21117dc294d15637458728e094967a65"
|
|
2494
|
+
},
|
|
2495
|
+
{
|
|
2496
|
+
"path": "src/usage/expected-prices.ts",
|
|
2497
|
+
"sha256": "0e06e0b9d8c7b51f5c2c6ce74194fd92f603cb461c64a5c115eac5767db0fe57"
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
"path": "src/usage/log.ts",
|
|
2501
|
+
"sha256": "b96cacb9e6eaac59eeaee8f5124a985cc0d14169364401eec80a10a8d3a24a76"
|
|
2502
|
+
},
|
|
2503
|
+
{
|
|
2504
|
+
"path": "src/usage/summary.ts",
|
|
2505
|
+
"sha256": "393dd15c9ef4aa7e597bdb0005658595bb567271b559414f203d2a4f81223842"
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
"path": "src/usage/totals.ts",
|
|
2509
|
+
"sha256": "491e89fb39d06dc33b305d5d130bf956841106a13a7ee200fdc35365d860882e"
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
"path": "src/usage/user-cost-overlay-reconciler.ts",
|
|
2513
|
+
"sha256": "5b54f9dc49124fe2ba607d7b0e19acdece88dc32565c3003fb3eba414c8804b6"
|
|
2514
|
+
},
|
|
2515
|
+
{
|
|
2516
|
+
"path": "src/usage/user-cost-overlays.ts",
|
|
2517
|
+
"sha256": "316d5eea30fef95f0c7de9d628bb48804dfc07234006fd08fb0fbcc5a1e52ff3"
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
"path": "src/vision/anthropic-describe.ts",
|
|
2521
|
+
"sha256": "76d55c00b0f10dd59f38d3381592330d355acbec636ccb8589b0a04f589f3a9f"
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"path": "src/vision/describe.ts",
|
|
2525
|
+
"sha256": "7908356c8640fe411f97de3e6c31482b6d910e601c102d1dc02f43027195ceba"
|
|
2526
|
+
},
|
|
2527
|
+
{
|
|
2528
|
+
"path": "src/vision/eligibility.ts",
|
|
2529
|
+
"sha256": "b1f76df0a4aae705419c3badf7d463612f73384679a52fc4a1413fa34369cb63"
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
"path": "src/vision/index.ts",
|
|
2533
|
+
"sha256": "187d229d74b6fda82e3ad4117c2bb5f17ccfadb213ef728a48c39ef32f17f510"
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"path": "src/vision/reasoning.ts",
|
|
2537
|
+
"sha256": "7b5ba571d9e727304f9cc053baaf82a5023fd2dad92f7fbf01af7edb8cfca21a"
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
"path": "src/web-search/anthropic-executor.ts",
|
|
2541
|
+
"sha256": "2c9106fc3a3f6dd39b2e3137f0dbd15cff14bb86c5b60aa23435ca9e41c4aa72"
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
"path": "src/web-search/executor.ts",
|
|
2545
|
+
"sha256": "6f5cb295009aaf4341158817edeadf694299630e975c0155760345d07c4f6321"
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
"path": "src/web-search/format-result.ts",
|
|
2549
|
+
"sha256": "d0698e78c55bd5d861645f27af5f0cc7ce122f50a81c8fba57d9c4d3f4e8d010"
|
|
2550
|
+
},
|
|
2551
|
+
{
|
|
2552
|
+
"path": "src/web-search/index.ts",
|
|
2553
|
+
"sha256": "20dc195360b43b632fb2de5499357363f71349134c4e2f97ae6fc3241991cbd5"
|
|
2554
|
+
},
|
|
2555
|
+
{
|
|
2556
|
+
"path": "src/web-search/loop.ts",
|
|
2557
|
+
"sha256": "e9e696e94b7706ba24c0b58d737ff5ccbd72b3fe42d9837d4479d0de797adcac"
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
"path": "src/web-search/parse.ts",
|
|
2561
|
+
"sha256": "fc7b3a1f0c0b3f1176be784adf2e03a24af7bebcd10f408cb8b0bda71a780ff9"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
"path": "src/web-search/progress-stream.ts",
|
|
2565
|
+
"sha256": "61d3a6b89eae5e4c39ded36f3ec45df2b4354f9c01826b360d01ad29fd56737e"
|
|
2566
|
+
},
|
|
2567
|
+
{
|
|
2568
|
+
"path": "src/web-search/synthetic-tool.ts",
|
|
2569
|
+
"sha256": "d462a555aa335abd0007e64d1bb18f72e2d0cd9e67909b94b7008950587553b8"
|
|
2570
|
+
}
|
|
2571
|
+
]
|
|
2572
|
+
}
|