sneakoscope 10.0.0 → 10.1.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 +3 -3
- package/config/competitor-scorecard-baseline.json +1 -22
- package/config/skills-hash-ledger.v1.json +22 -0
- package/crates/sks-core/Cargo.lock +1 -1
- package/crates/sks-core/Cargo.toml +1 -1
- package/dist/cli/router.js +15 -3
- package/dist/commands/bridge.js +7 -0
- package/dist/config/skills-manifest.json +46 -23
- package/dist/core/agents/agent-effort-policy.js +10 -10
- package/dist/core/align/code-navigation-align.js +3 -3
- package/dist/core/codex-app/menubar/constants.js +3 -0
- package/dist/core/codex-control/codex-model-capabilities.js +20 -22
- package/dist/core/codex-control/codex-model-metadata.js +105 -68
- package/dist/core/codex-lb/bridge-runtime-validation.js +12 -2
- package/dist/core/codex-lb/desktop-bridge/security.js +9 -3
- package/dist/core/codex-lb/desktop-controller-v3/catalog.js +3 -2
- package/dist/core/codex-lb/desktop-controller-v3/lifecycle-commands.js +30 -7
- package/dist/core/codex-lb/desktop-controller-v3/shared.js +1 -0
- package/dist/core/codex-lb/desktop-controller-v3/status.js +16 -2
- package/dist/core/codex-lb/desktop-controller-v3.js +9 -2
- package/dist/core/codex-lb/desktop-service.js +10 -3
- package/dist/core/codex-lb/request-route-resolver.js +8 -2
- package/dist/core/codex-native/core-skill-manifest.js +3 -3
- package/dist/core/commands/align-command.js +52 -7
- package/dist/core/commands/pipeline-command.js +5 -3
- package/dist/core/commands/research-command.js +1 -16
- package/dist/core/commands/triwiki-graph-command.js +2 -2
- package/dist/core/commands/wiki-command.js +2 -2
- package/dist/core/db-safety.js +22 -3
- package/dist/core/doctor/legacy-runtime-data-gc.js +4 -0
- package/dist/core/feature-registry.js +0 -1
- package/dist/core/hooks-runtime/context-graph-freshness-preflight.js +2 -2
- package/dist/core/hooks-runtime/hook-context.js +5 -3
- package/dist/core/init/skills.js +20 -27
- package/dist/core/init.js +11 -20
- package/dist/core/mad-sks/sql-plane/policy.js +2 -0
- package/dist/core/managed-assets/managed-assets-manifest.js +14 -14
- package/dist/core/pipeline-internals/runtime-core.js +33 -16
- package/dist/core/provider/model-router.js +10 -9
- package/dist/core/recallpulse/policy.js +23 -25
- package/dist/core/recallpulse.js +7 -63
- package/dist/core/release/gate-manifest.js +0 -3
- package/dist/core/release/release-gate-contract.js +0 -1
- package/dist/core/research/implementation-blueprint-densifier.js +1 -1
- package/dist/core/research/mock-result.js +15 -55
- package/dist/core/research/research-adversarial-review.js +36 -89
- package/dist/core/research/research-claim-synthesizer.js +1 -1
- package/dist/core/research/research-falsification-runner.js +1 -1
- package/dist/core/research/research-plan-markdown.js +7 -7
- package/dist/core/research/research-stage-runner.js +5 -25
- package/dist/core/research/research-work-graph.js +2 -3
- package/dist/core/research.js +49 -180
- package/dist/core/routes/dollar-manifest-lite.js +1 -1
- package/dist/core/routes.js +11 -11
- package/dist/core/runtime/task-profile.js +1 -1
- package/dist/core/search-visibility/marketing.js +3 -6
- package/dist/core/subagents/model-policy.js +5 -4
- package/dist/core/subagents/naruto-help-contract.js +8 -8
- package/dist/core/subagents/naruto-host-credentials.js +8 -6
- package/dist/core/subagents/official-subagent-preparation.js +1 -1
- package/dist/core/subagents/official-subagent-prompt.js +13 -12
- package/dist/core/subagents/official-subagent-runner.js +3 -3
- package/dist/core/subagents/role-model-preferences.js +24 -8
- package/dist/core/triwiki/code-pack-head-freshness.js +2 -1
- package/dist/core/triwiki/context-graph/compiler/cache-key.js +7 -3
- package/dist/core/triwiki/context-graph/extractors/evidence/index.js +12 -5
- package/dist/core/triwiki/context-graph/extractors/index.js +8 -0
- package/dist/core/update/update-migration-state.js +4 -1
- package/dist/core/update/update-operation.js +1 -1
- package/dist/core/update-check.js +82 -172
- package/dist/core/version.js +1 -1
- package/dist/native/sks-menubar/Sources/AuthPriorityState.swift +66 -0
- package/dist/native/sks-menubar/Sources/ControlCenterWindowController.swift +2 -2
- package/dist/native/sks-menubar/Sources/ControlKit.swift +2 -3
- package/dist/native/sks-menubar/Sources/DiagnosticsViewController.swift +12 -4
- package/dist/native/sks-menubar/Sources/MCPServersViewController.swift +1 -1
- package/dist/native/sks-menubar/Sources/NativeView.swift +226 -0
- package/dist/native/sks-menubar/Sources/OverviewSummary.swift +1 -1
- package/dist/native/sks-menubar/Sources/OverviewViewController.swift +51 -206
- package/dist/native/sks-menubar/Sources/ProvidersModelExposure.swift +7 -2
- package/dist/native/sks-menubar/Sources/ProvidersOpenRouter.swift +22 -13
- package/dist/native/sks-menubar/Sources/ProvidersRoutingTruth.swift +5 -2
- package/dist/native/sks-menubar/Sources/ProvidersViewController.swift +108 -8
- package/dist/native/sks-menubar/Sources/RemoteCodingViewController.swift +3 -5
- package/dist/native/sks-menubar/Sources/SettingsViewController.swift +4 -4
- package/dist/native/sks-menubar/Sources/SidebarItem.swift +4 -2
- package/dist/native/sks-menubar/Sources/UpdatesModels.swift +8 -0
- package/dist/native/sks-menubar/Sources/UpdatesViewController.swift +53 -21
- package/dist/scripts/all-feature-deep-completion-check.js +0 -1
- package/dist/scripts/codex-native-agent-role-content-check.js +5 -3
- package/dist/scripts/codex-sdk-backend-router-check.js +2 -3
- package/dist/scripts/docs-truthfulness-check.js +1 -32
- package/dist/scripts/gate-policy-audit-check.js +0 -6
- package/dist/scripts/release-metadata-check.js +0 -1
- package/dist/scripts/typed-routing-gate-lib.js +1 -1
- package/package.json +3 -7
- package/release-gates.v2.json +1 -67
- package/runtime-required-scripts.json +0 -10
- package/schemas/codex/desktop-bridge-status-v3.schema.json +9 -0
- package/dist/core/agents/real-codex-parallel-proof.js +0 -126
- package/dist/core/release/gate-cache.js +0 -43
- package/dist/core/release/gate-timing.js +0 -104
- package/dist/core/release/sla-scheduler.js +0 -21
- package/dist/scripts/evidence-flagship-coverage-check.js +0 -53
- package/dist/scripts/release-gate-budget-check.js +0 -29
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Proof-first orchestration for Codex CLI, ChatGPT Desktop, AI coding agents, mult
|
|
|
22
22
|
Sneakoscope Codex (`sks`) is an open-source trust layer for Codex CLI and ChatGPT Desktop. It coordinates bounded AI coding agents, records machine-verifiable evidence, preserves project memory, and blocks release claims that are not supported by current tests or artifacts. Search visibility outcomes are measured separately; SKS does not promise rankings or traffic.
|
|
23
23
|
<!-- END SKS SEARCH VISIBILITY MARKETING -->
|
|
24
24
|
|
|
25
|
-
This README documents package **SKS 10.
|
|
25
|
+
This README documents package **SKS 10.1.0** — its own identity, read from `package.json` and subject to release-gate verification, not advice about what to install.
|
|
26
26
|
|
|
27
27
|
Use the official latest stable SKS and Codex CLI releases. The Codex compatibility SSOT is always the **current latest stable** host; capability probes measure what that host can actually do. Product docs do not crown a fixed `0.x.y` string as SSOT (release pins and schema directories are measured artifacts for the current package, not a permanent product version claim). Menu Bar / Center induce updates to the latest stable build. Run `sks update-check` for what is installed and read the capability report for what is supported. Install SSOT is npm `sneakoscope@latest`; PATH `sks` and Menu Bar stamped generation must match that version or gates fail. It resolves managed SKS skills from the authoritative global install, preserves a runnable Naruto child slot when `max_threads=2`, and keeps Menu Bar repair transactional so stamped generations remain verifiable. Naruto uses stable opt-in multi-agent V2 when the host exposes it (Codex official multi-agent wrap-only; SKS does not reimplement a parallel runtime). Local code search is mode-separated (`sks search files|text|structure|symbol|context`); `context` is answered by the compiled TriWiki Context Graph (`context-graph.json` is exhaustive authority; `context-pack.json` and managed `AGENTS.md` are bounded projections) — see [docs/architecture/context-graph.md](https://github.com/mandarange/Sneakoscope-Codex/blob/main/docs/architecture/context-graph.md) and [docs/PRODUCT-CONTRACT.md](https://github.com/mandarange/Sneakoscope-Codex/blob/main/docs/PRODUCT-CONTRACT.md). See [CHANGELOG.md](https://github.com/mandarange/Sneakoscope-Codex/blob/main/CHANGELOG.md).
|
|
28
28
|
|
|
@@ -175,7 +175,7 @@ receipt-backed path. Ambiguous user-owned configuration fails closed. Use
|
|
|
175
175
|
|
|
176
176
|
## Naruto Workflow
|
|
177
177
|
|
|
178
|
-
`$sks-naruto` and `sks naruto run "task" --agents 8 --max-threads 12` use Codex official subagents. Standalone and Codex App tasks that request project-host database, spreadsheet, or render tools require the non-persistent `--trusted-project` flag after the operator reviews the checkout; an App session ID scopes evidence but does not grant trust.
|
|
178
|
+
`$sks-naruto` and `sks naruto run "task" --agents 8 --max-threads 12` use Codex official subagents. Standalone and Codex App tasks that request project-host database, spreadsheet, or render tools require the non-persistent `--trusted-project` flag after the operator reviews the checkout; an App session ID scopes evidence but does not grant trust. A standalone parent defaults to GPT-6 Astra Max; an active Codex task keeps its selected model. Tiny mechanical `worker` slices—including clear simple code, configuration, and setup changes—use Luna Max; ordinary UI, logic, backend, and native coding uses Astra High; review, testing, debugging, architecture, integration, security, database, research, release, and other judgment-sensitive work uses Astra Max; long-context scans, long-term memory, large-scale first-draft code processing, and direct Computer Use, Browser/Chrome, or image-generation execution use Astra Medium. Mixed execution/judgment work is split when possible, and unsplittable judgment defaults to Astra Max.
|
|
179
179
|
|
|
180
180
|
Fresh SKS-owned project config enables Codex multi-agent V2 with an effective
|
|
181
181
|
cap of `agents.max_concurrent_threads_per_session = 256` children and
|
|
@@ -187,7 +187,7 @@ warning; it is not an entitlement to spawn 1000 children. Explicit
|
|
|
187
187
|
`--agents` and `--max-threads` values above 256 are rejected.
|
|
188
188
|
|
|
189
189
|
Naruto's automatic starting tiers are 4/6/8 children for ordinary work and 16
|
|
190
|
-
for mass
|
|
190
|
+
for mass mechanical or exploration work. After decomposition, either lane may expand to the
|
|
191
191
|
SKS-owned ceiling of 256 independent useful children. Explicit
|
|
192
192
|
`--agents N` and `--max-threads N` values from 1 through 256 remain
|
|
193
193
|
authoritative instead of being reduced to those automatic tiers. A first wave
|
|
@@ -27,26 +27,9 @@
|
|
|
27
27
|
{
|
|
28
28
|
"id": "installed-package-smoke",
|
|
29
29
|
"path": ".sneakoscope/reports/installed-package-smoke.json"
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"id": "release-gate-timing",
|
|
33
|
-
"path": ".sneakoscope/reports/gate-timing.json"
|
|
34
|
-
}
|
|
35
|
-
],
|
|
36
|
-
"parallel_isolation": [
|
|
37
|
-
{
|
|
38
|
-
"id": "parallel-runtime-proof",
|
|
39
|
-
"path": ".sneakoscope/reports/parallel-production-smoke.json"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"id": "worktree-runtime",
|
|
43
|
-
"path": ".sneakoscope/reports/parallel-production-smoke.json"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"id": "patch-merge-proof",
|
|
47
|
-
"path": ".sneakoscope/reports/parallel-production-smoke.json"
|
|
48
30
|
}
|
|
49
31
|
],
|
|
32
|
+
"parallel_isolation": [],
|
|
50
33
|
"speed_performance": [
|
|
51
34
|
{
|
|
52
35
|
"id": "perf-budget",
|
|
@@ -55,10 +38,6 @@
|
|
|
55
38
|
{
|
|
56
39
|
"id": "hook-latency-quantum",
|
|
57
40
|
"path": ".sneakoscope/reports/hook-latency-quantum.json"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"id": "gate-timing",
|
|
61
|
-
"path": ".sneakoscope/reports/gate-timing.json"
|
|
62
41
|
}
|
|
63
42
|
],
|
|
64
43
|
"install_operations": [
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
{
|
|
5
5
|
"canonical_name": "sks",
|
|
6
6
|
"trusted_sha256": [
|
|
7
|
+
"905fc5472d36f0780b56f0e09404f42ea20293b1a4615d2050b7db3043231dbd",
|
|
7
8
|
"6d90142f3617a8ae92d9af8cb2fc18ab58a7d0070868504e1fe89e0effc305a5",
|
|
8
9
|
"5b17aeb1484e9e2b3791bff6dcb175f30857f47e71b36eb0340e575385e8e82b"
|
|
9
10
|
]
|
|
@@ -18,6 +19,7 @@
|
|
|
18
19
|
{
|
|
19
20
|
"canonical_name": "sks-answer",
|
|
20
21
|
"trusted_sha256": [
|
|
22
|
+
"f3f84bc126da78789e4495b6c13019e9848c462211f1d86fa3e7929487b584c9",
|
|
21
23
|
"0e461537093215960734aaeafdccb125d2c3ca139dab5db8548d5c0bdd14d652",
|
|
22
24
|
"3056ac543fa074868c7023097fdcb042d7175ab557d8e18cb7d92ce872785452",
|
|
23
25
|
"bc8e2fc157b6c9819d32bb0a41bdf7f599a07693df18b0d80aa0ba103594f6eb"
|
|
@@ -26,6 +28,7 @@
|
|
|
26
28
|
{
|
|
27
29
|
"canonical_name": "sks-autoresearch",
|
|
28
30
|
"trusted_sha256": [
|
|
31
|
+
"50e8c569cc9da4ba774581b27ca34824d65576641f7d7861f301c9315cd07432",
|
|
29
32
|
"0b0a626be3b2e4f80462b721787287350af08ccdf8e952b8eb563a294a8cb777",
|
|
30
33
|
"42602109bc1bf36b28a9acd0c458ab6c3b87f412c2710052e1c65a1f7b0cfeb8"
|
|
31
34
|
]
|
|
@@ -66,6 +69,7 @@
|
|
|
66
69
|
{
|
|
67
70
|
"canonical_name": "sks-computer-use-fast",
|
|
68
71
|
"trusted_sha256": [
|
|
72
|
+
"b5dafeb7c22d63f34a9015ce83f897f15ef0eb80b0f0f1107c2f86957681d916",
|
|
69
73
|
"1d191ed0f9490fc320dd17b871ca556fa5835bfb372c38b62f3985e3369f685a",
|
|
70
74
|
"57e4c1d04ae785b0a53711e53210f2ddabd6131041b97edb4b6d99f18b24155e",
|
|
71
75
|
"b270d82e4057934d7f92ed4241d4ae86e22d0a9a08bceba1aa179d7535bda042",
|
|
@@ -75,6 +79,7 @@
|
|
|
75
79
|
{
|
|
76
80
|
"canonical_name": "sks-context7-docs",
|
|
77
81
|
"trusted_sha256": [
|
|
82
|
+
"38007921cb842c63fee24306584439c9d766cea999141b731765938791bee841",
|
|
78
83
|
"694cdfab8ee25c86d906b0eab5064c067dd05d9be9a8c1beec67f843ab602a42",
|
|
79
84
|
"f3618fa72800899ffbe1686bed6bc888997bfb007a14f0e17c9a26178d55262a"
|
|
80
85
|
]
|
|
@@ -82,6 +87,7 @@
|
|
|
82
87
|
{
|
|
83
88
|
"canonical_name": "sks-cu",
|
|
84
89
|
"trusted_sha256": [
|
|
90
|
+
"50a16e4fb21d5d3be6d8dc716475b642aea8033414e0b4929730a2b32f8062e3",
|
|
85
91
|
"be9a3eb7197483693f354e5f7e5a8eb2c0dc0209597cea53479e2e803ad39479",
|
|
86
92
|
"fc6ed807d0299dd56441738d9388787b1dd857dab9bb4c31a11f7d9b90b424d0",
|
|
87
93
|
"da480ba03208d4888df1e97bbec6d80d608dafad0e33c2b1c72266e1860476a8"
|
|
@@ -90,6 +96,7 @@
|
|
|
90
96
|
{
|
|
91
97
|
"canonical_name": "sks-db",
|
|
92
98
|
"trusted_sha256": [
|
|
99
|
+
"61f696ec7c95a024eea664bb28a8a969e1360ddd4bd73053d293bc79665f910b",
|
|
93
100
|
"65ecf818f21a5c36865619bcb1f542ead7ab2974c5c7c3488ac7b4037b9c85d6",
|
|
94
101
|
"e3912adaf37f9be002b012c89c18ff987c9cd16ea2445600c834fa39a5bf865a"
|
|
95
102
|
]
|
|
@@ -131,6 +138,7 @@
|
|
|
131
138
|
{
|
|
132
139
|
"canonical_name": "sks-fast-mode",
|
|
133
140
|
"trusted_sha256": [
|
|
141
|
+
"ea6a5da45a3a8065dc3b78be1cabc864a963c685ae3084323471280ef03917a5",
|
|
134
142
|
"0d42a799afc84d74bfe8c5855ab85adce0e945a10a10514b4d7e4b8c90eb16b6",
|
|
135
143
|
"257daa08de3807d47c0941ac21ef1f89af2f7f670b0c34059d3234a5a8bfb36b"
|
|
136
144
|
]
|
|
@@ -145,6 +153,7 @@
|
|
|
145
153
|
{
|
|
146
154
|
"canonical_name": "sks-fast-on",
|
|
147
155
|
"trusted_sha256": [
|
|
156
|
+
"b64e4a7afb45db1731f52a0ed29ef1edec7e5538cc81561f75bb715d37455a6e",
|
|
148
157
|
"d136b65559bb87e22bb5818a065dfa7ec94ac21aa445f492a4fc70f92a364eff",
|
|
149
158
|
"0355482a0baf32d8ac2131bdd88fb5fed5a3a9ea7ab82f12e26075bc8ea8c724"
|
|
150
159
|
]
|
|
@@ -167,6 +176,7 @@
|
|
|
167
176
|
{
|
|
168
177
|
"canonical_name": "sks-goal",
|
|
169
178
|
"trusted_sha256": [
|
|
179
|
+
"5ab1ac18fc265c375bae92ff23ddbd80c378484d6629c378f0e9270e660ded11",
|
|
170
180
|
"867544877ac04df6e0232d6d425797e7fab2cceff9a7176a3c9e61f8c4a416d7",
|
|
171
181
|
"0db0c58e72c0d58b24163371efe7a647c67d5d232020b2b4ed2557f19fe648d7"
|
|
172
182
|
]
|
|
@@ -174,6 +184,7 @@
|
|
|
174
184
|
{
|
|
175
185
|
"canonical_name": "sks-gx",
|
|
176
186
|
"trusted_sha256": [
|
|
187
|
+
"165974015298362c9dac6d97b71c9865f42174a649dd85fe2e97ade6c6fd7c77",
|
|
177
188
|
"53a9e538812e79549d0dfa7ae9da6b3d95672281d9b601ecd55f7d5ac64fcd44",
|
|
178
189
|
"55b7d535a5978077462eb4c71226b9fdc772094f91ca336830315de10666e85e"
|
|
179
190
|
]
|
|
@@ -224,6 +235,7 @@
|
|
|
224
235
|
{
|
|
225
236
|
"canonical_name": "sks-hproof-evidence-bind",
|
|
226
237
|
"trusted_sha256": [
|
|
238
|
+
"fe9cc94d027e161d12509af86aa39616ac76efe53d049a8bb90fddcdd1e7a7b5",
|
|
227
239
|
"9629257ef1b78b13b503ad1033f500ea8ef898fb74ba50d78a2a72143b7ead4f",
|
|
228
240
|
"fa20989183324964b5527742c0b1f593eacfcd3090b1707fb7c52258cdf62637"
|
|
229
241
|
]
|
|
@@ -270,6 +282,7 @@
|
|
|
270
282
|
{
|
|
271
283
|
"canonical_name": "sks-naruto",
|
|
272
284
|
"trusted_sha256": [
|
|
285
|
+
"a1219f6dbad9c8c185953125ef0b8dccf081aa01efb8e8acaa543c6214ac049c",
|
|
273
286
|
"d0d5968e78ac25e1d3e588735de1ddbcf149cfb3165edebca5dec1ed7c7a5c46",
|
|
274
287
|
"34222c72e4e1ead3584907f4d905444b7de820283ee7348018f110d5e6b04461",
|
|
275
288
|
"f8e808622e222b4ad7dcb2907e5f06a890db83139ae443ec6c8c33781dfa3e37",
|
|
@@ -286,6 +299,7 @@
|
|
|
286
299
|
{
|
|
287
300
|
"canonical_name": "sks-pipeline-runner",
|
|
288
301
|
"trusted_sha256": [
|
|
302
|
+
"fd06dfb27be41e5ffec3e3ec8c5362289f5919cf2afa9da5ab6b97e7baa4a0ac",
|
|
289
303
|
"66e105773b8e042eec5d5679b97b7cb305cad8d45671034907fbfa728fc4d68a",
|
|
290
304
|
"020ba4da2f96bcda23cee4596b1e790816780178f1917dee748ff4b289cba0e5",
|
|
291
305
|
"ffcbe0ea4b585e3d2886f1d9fa7a3b88706aaf42182fb177b2371b76beb0ddcd"
|
|
@@ -301,6 +315,7 @@
|
|
|
301
315
|
{
|
|
302
316
|
"canonical_name": "sks-ppt",
|
|
303
317
|
"trusted_sha256": [
|
|
318
|
+
"1d4de05afd42ee5739c0ed925af9e0ac4785fc746e659c60d3d908d465e6386c",
|
|
304
319
|
"02e8a0758ec6d056ce9851a5a4505b1d32e302e730be3eb169a41392a5d6b2e2",
|
|
305
320
|
"329fc6ee24bb04478b18fb6ccd3691cd7cbb50e1b77ca7b6136383d00b3b0bb4"
|
|
306
321
|
]
|
|
@@ -308,6 +323,7 @@
|
|
|
308
323
|
{
|
|
309
324
|
"canonical_name": "sks-prompt-pipeline",
|
|
310
325
|
"trusted_sha256": [
|
|
326
|
+
"e7c8ef56d38fdc4879c983f7d6706f26fc1cf0a60c508836bd628e815700bcc3",
|
|
311
327
|
"480c8afffafa9d52c483a963b4b8fafdffc0a47cd6d2efd3fb6d7924c11832c5",
|
|
312
328
|
"5dc8524de9bad66cef133ea5ff2a8052331bd12a7ec85695f727d0d2c8523145"
|
|
313
329
|
]
|
|
@@ -321,6 +337,8 @@
|
|
|
321
337
|
{
|
|
322
338
|
"canonical_name": "sks-reasoning-router",
|
|
323
339
|
"trusted_sha256": [
|
|
340
|
+
"da0ddb58adc68ddeebdb9c45bf111c26eaa64d3e9dffe1dd39d7f30b943b8b88",
|
|
341
|
+
"1595beabf2d31397217311fa1323bd62c801cf6c87db9029ff544c457efec8bb",
|
|
324
342
|
"a7d879d157c6d5b6b81a67dba7b5b731ac18ea986841fe1ab2cafbd6623481c3",
|
|
325
343
|
"dc0b8c6a4093269c2c36b58432b25409704d06fea8ca558f43b598625ca0d9de"
|
|
326
344
|
]
|
|
@@ -328,6 +346,7 @@
|
|
|
328
346
|
{
|
|
329
347
|
"canonical_name": "sks-reflection",
|
|
330
348
|
"trusted_sha256": [
|
|
349
|
+
"d5b6e80644a55a50b60961fe3aa5ae342fd035b39605a07d13dcc82fb0f0149c",
|
|
331
350
|
"5013cefe58746a23e998bd83dedf2c4de9270010297be6fc0c0f0ae2aae73fb8",
|
|
332
351
|
"4ba8b2778d1d37c25c89f1a97ce3ce5602c39138425e1f4af4a91e840a961670"
|
|
333
352
|
]
|
|
@@ -342,6 +361,7 @@
|
|
|
342
361
|
{
|
|
343
362
|
"canonical_name": "sks-research",
|
|
344
363
|
"trusted_sha256": [
|
|
364
|
+
"8903022e98fa470cd764f7c8d1b28d4f996d6daf146260f20548acbe1276c55a",
|
|
345
365
|
"2e96f95315d99b645d4171ba4648d9f9218ec3e98dcd6d363b5de522d2e1bfe3"
|
|
346
366
|
]
|
|
347
367
|
},
|
|
@@ -381,6 +401,7 @@
|
|
|
381
401
|
{
|
|
382
402
|
"canonical_name": "sks-turbo-context-pack",
|
|
383
403
|
"trusted_sha256": [
|
|
404
|
+
"7e46ced781acf7de50db07ccbf801f76b9b1717e21b683a8008d089b62b54456",
|
|
384
405
|
"c02745666f6d9485c538876e77509209ecf5f481d1d7bed36e312eea60688f06",
|
|
385
406
|
"d94bb85ea836e55c5b2b0df237821cf97b3d2ec6bfe697c97525f3fa5807b200"
|
|
386
407
|
]
|
|
@@ -388,6 +409,7 @@
|
|
|
388
409
|
{
|
|
389
410
|
"canonical_name": "sks-wiki",
|
|
390
411
|
"trusted_sha256": [
|
|
412
|
+
"a6b3cf12e88b413073525c146aa27287557536b5a48eade83b87a11d8f371c72",
|
|
391
413
|
"460a7dd5498fbf68697da64d6a56122ca088607edea8f815eea54aca580895fe",
|
|
392
414
|
"b49e0bbe6163e8673b9d2d34a43f8ec130ac7032cacabe17e6fece6182f96be0",
|
|
393
415
|
"16b2b813d202ca51d2ea4fe0da918eddf9494db7ab1356352d4188a5da3496b1"
|
package/dist/cli/router.js
CHANGED
|
@@ -354,10 +354,14 @@ export function safeActiveRouteContinuation(command, args, state = {}) {
|
|
|
354
354
|
&& (requestedMission === String(state.mission_id) || requestedMission === 'latest');
|
|
355
355
|
}
|
|
356
356
|
if (command === 'align') {
|
|
357
|
-
if (
|
|
357
|
+
if (!['run', 'proof'].includes(subcommand))
|
|
358
358
|
return false;
|
|
359
|
-
const requestedMission =
|
|
360
|
-
|
|
359
|
+
const requestedMission = firstPositionalAfterSubcommand(args);
|
|
360
|
+
if (activeRoute === 'ALIGN') {
|
|
361
|
+
return Boolean(state.mission_id)
|
|
362
|
+
&& (!requestedMission || requestedMission === 'latest' || requestedMission === String(state.mission_id));
|
|
363
|
+
}
|
|
364
|
+
return subcommand === 'run' && !requestedMission;
|
|
361
365
|
}
|
|
362
366
|
const expectedRoutes = new Map([
|
|
363
367
|
['research', ['RESEARCH']],
|
|
@@ -381,6 +385,14 @@ export function safeActiveRouteContinuation(command, args, state = {}) {
|
|
|
381
385
|
const requestedMission = String(args[1] || '').trim();
|
|
382
386
|
return Boolean(state.mission_id) && (requestedMission === String(state.mission_id) || requestedMission === 'latest');
|
|
383
387
|
}
|
|
388
|
+
function firstPositionalAfterSubcommand(args) {
|
|
389
|
+
for (const arg of args.slice(1)) {
|
|
390
|
+
const value = String(arg || '').trim();
|
|
391
|
+
if (value && !value.startsWith('-'))
|
|
392
|
+
return value;
|
|
393
|
+
}
|
|
394
|
+
return '';
|
|
395
|
+
}
|
|
384
396
|
function optionValue(args, names) {
|
|
385
397
|
for (let index = 0; index < args.length; index += 1) {
|
|
386
398
|
const arg = String(args[index] || '');
|
package/dist/commands/bridge.js
CHANGED
|
@@ -17,6 +17,7 @@ export function usage(command = 'bridge') {
|
|
|
17
17
|
return [
|
|
18
18
|
`Usage: sks ${command} status [--json]`,
|
|
19
19
|
` sks ${command} ensure|repair [--json]`,
|
|
20
|
+
` sks ${command} auth-priority status|on|off [--json]`,
|
|
20
21
|
` sks ${command} verify --level shallow|transport|deep [--strict|--require-ready] [--json]`,
|
|
21
22
|
` sks ${command} provider list [--json]`,
|
|
22
23
|
` sks ${command} provider configure codex-lb --host <host> --api-key-stdin [--json]`,
|
|
@@ -113,6 +114,12 @@ async function parseInvocation(args, io) {
|
|
|
113
114
|
const json = parsed.flags.has('--json');
|
|
114
115
|
const strict = parsed.flags.has('--strict') || parsed.flags.has('--require-ready');
|
|
115
116
|
const base = { json, strict, secrets: [] };
|
|
117
|
+
if (area === 'auth-priority' && target === undefined && (action === 'status' || action === 'on' || action === 'off')) {
|
|
118
|
+
allowOnly(parsed, ['--json'], []);
|
|
119
|
+
return { ...base, request: action === 'status'
|
|
120
|
+
? { operation: 'auth-priority.status' }
|
|
121
|
+
: { operation: 'auth-priority.set', enabled: action === 'on' }, label: 'Codex-LB authentication priority' };
|
|
122
|
+
}
|
|
116
123
|
if (area === 'status' && action === undefined) {
|
|
117
124
|
allowOnly(parsed, ['--json'], []);
|
|
118
125
|
return { ...base, request: { operation: 'status' }, label: 'Desktop Bridge status' };
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "sks.skills-manifest.v1",
|
|
3
|
-
"package_version": "10.
|
|
3
|
+
"package_version": "10.1.0",
|
|
4
4
|
"skills": [
|
|
5
5
|
{
|
|
6
6
|
"canonical_name": "sks",
|
|
7
7
|
"type": "official",
|
|
8
|
-
"content_sha256": "
|
|
8
|
+
"content_sha256": "905fc5472d36f0780b56f0e09404f42ea20293b1a4615d2050b7db3043231dbd",
|
|
9
9
|
"hash_history": [
|
|
10
|
+
"6d90142f3617a8ae92d9af8cb2fc18ab58a7d0070868504e1fe89e0effc305a5",
|
|
10
11
|
"5b17aeb1484e9e2b3791bff6dcb175f30857f47e71b36eb0340e575385e8e82b"
|
|
11
12
|
],
|
|
12
13
|
"deprecated_aliases": []
|
|
@@ -23,8 +24,9 @@
|
|
|
23
24
|
{
|
|
24
25
|
"canonical_name": "sks-answer",
|
|
25
26
|
"type": "official",
|
|
26
|
-
"content_sha256": "
|
|
27
|
+
"content_sha256": "f3f84bc126da78789e4495b6c13019e9848c462211f1d86fa3e7929487b584c9",
|
|
27
28
|
"hash_history": [
|
|
29
|
+
"0e461537093215960734aaeafdccb125d2c3ca139dab5db8548d5c0bdd14d652",
|
|
28
30
|
"3056ac543fa074868c7023097fdcb042d7175ab557d8e18cb7d92ce872785452",
|
|
29
31
|
"bc8e2fc157b6c9819d32bb0a41bdf7f599a07693df18b0d80aa0ba103594f6eb"
|
|
30
32
|
],
|
|
@@ -33,8 +35,9 @@
|
|
|
33
35
|
{
|
|
34
36
|
"canonical_name": "sks-autoresearch",
|
|
35
37
|
"type": "official",
|
|
36
|
-
"content_sha256": "
|
|
38
|
+
"content_sha256": "50e8c569cc9da4ba774581b27ca34824d65576641f7d7861f301c9315cd07432",
|
|
37
39
|
"hash_history": [
|
|
40
|
+
"0b0a626be3b2e4f80462b721787287350af08ccdf8e952b8eb563a294a8cb777",
|
|
38
41
|
"42602109bc1bf36b28a9acd0c458ab6c3b87f412c2710052e1c65a1f7b0cfeb8"
|
|
39
42
|
],
|
|
40
43
|
"deprecated_aliases": []
|
|
@@ -83,8 +86,9 @@
|
|
|
83
86
|
{
|
|
84
87
|
"canonical_name": "sks-computer-use-fast",
|
|
85
88
|
"type": "official",
|
|
86
|
-
"content_sha256": "
|
|
89
|
+
"content_sha256": "b5dafeb7c22d63f34a9015ce83f897f15ef0eb80b0f0f1107c2f86957681d916",
|
|
87
90
|
"hash_history": [
|
|
91
|
+
"1d191ed0f9490fc320dd17b871ca556fa5835bfb372c38b62f3985e3369f685a",
|
|
88
92
|
"57e4c1d04ae785b0a53711e53210f2ddabd6131041b97edb4b6d99f18b24155e",
|
|
89
93
|
"b270d82e4057934d7f92ed4241d4ae86e22d0a9a08bceba1aa179d7535bda042",
|
|
90
94
|
"b8736b2621398dfc85f7a2ff35d7a2fc728db0dfc0e964de69aebff93b5ed897"
|
|
@@ -94,8 +98,9 @@
|
|
|
94
98
|
{
|
|
95
99
|
"canonical_name": "sks-context7-docs",
|
|
96
100
|
"type": "official",
|
|
97
|
-
"content_sha256": "
|
|
101
|
+
"content_sha256": "38007921cb842c63fee24306584439c9d766cea999141b731765938791bee841",
|
|
98
102
|
"hash_history": [
|
|
103
|
+
"694cdfab8ee25c86d906b0eab5064c067dd05d9be9a8c1beec67f843ab602a42",
|
|
99
104
|
"f3618fa72800899ffbe1686bed6bc888997bfb007a14f0e17c9a26178d55262a"
|
|
100
105
|
],
|
|
101
106
|
"deprecated_aliases": []
|
|
@@ -103,8 +108,9 @@
|
|
|
103
108
|
{
|
|
104
109
|
"canonical_name": "sks-cu",
|
|
105
110
|
"type": "official",
|
|
106
|
-
"content_sha256": "
|
|
111
|
+
"content_sha256": "50a16e4fb21d5d3be6d8dc716475b642aea8033414e0b4929730a2b32f8062e3",
|
|
107
112
|
"hash_history": [
|
|
113
|
+
"be9a3eb7197483693f354e5f7e5a8eb2c0dc0209597cea53479e2e803ad39479",
|
|
108
114
|
"fc6ed807d0299dd56441738d9388787b1dd857dab9bb4c31a11f7d9b90b424d0",
|
|
109
115
|
"da480ba03208d4888df1e97bbec6d80d608dafad0e33c2b1c72266e1860476a8"
|
|
110
116
|
],
|
|
@@ -113,8 +119,9 @@
|
|
|
113
119
|
{
|
|
114
120
|
"canonical_name": "sks-db",
|
|
115
121
|
"type": "official",
|
|
116
|
-
"content_sha256": "
|
|
122
|
+
"content_sha256": "61f696ec7c95a024eea664bb28a8a969e1360ddd4bd73053d293bc79665f910b",
|
|
117
123
|
"hash_history": [
|
|
124
|
+
"65ecf818f21a5c36865619bcb1f542ead7ab2974c5c7c3488ac7b4037b9c85d6",
|
|
118
125
|
"e3912adaf37f9be002b012c89c18ff987c9cd16ea2445600c834fa39a5bf865a"
|
|
119
126
|
],
|
|
120
127
|
"deprecated_aliases": []
|
|
@@ -165,8 +172,9 @@
|
|
|
165
172
|
{
|
|
166
173
|
"canonical_name": "sks-fast-mode",
|
|
167
174
|
"type": "official",
|
|
168
|
-
"content_sha256": "
|
|
175
|
+
"content_sha256": "ea6a5da45a3a8065dc3b78be1cabc864a963c685ae3084323471280ef03917a5",
|
|
169
176
|
"hash_history": [
|
|
177
|
+
"0d42a799afc84d74bfe8c5855ab85adce0e945a10a10514b4d7e4b8c90eb16b6",
|
|
170
178
|
"257daa08de3807d47c0941ac21ef1f89af2f7f670b0c34059d3234a5a8bfb36b"
|
|
171
179
|
],
|
|
172
180
|
"deprecated_aliases": []
|
|
@@ -183,8 +191,9 @@
|
|
|
183
191
|
{
|
|
184
192
|
"canonical_name": "sks-fast-on",
|
|
185
193
|
"type": "official",
|
|
186
|
-
"content_sha256": "
|
|
194
|
+
"content_sha256": "b64e4a7afb45db1731f52a0ed29ef1edec7e5538cc81561f75bb715d37455a6e",
|
|
187
195
|
"hash_history": [
|
|
196
|
+
"d136b65559bb87e22bb5818a065dfa7ec94ac21aa445f492a4fc70f92a364eff",
|
|
188
197
|
"0355482a0baf32d8ac2131bdd88fb5fed5a3a9ea7ab82f12e26075bc8ea8c724"
|
|
189
198
|
],
|
|
190
199
|
"deprecated_aliases": []
|
|
@@ -211,8 +220,9 @@
|
|
|
211
220
|
{
|
|
212
221
|
"canonical_name": "sks-goal",
|
|
213
222
|
"type": "official",
|
|
214
|
-
"content_sha256": "
|
|
223
|
+
"content_sha256": "5ab1ac18fc265c375bae92ff23ddbd80c378484d6629c378f0e9270e660ded11",
|
|
215
224
|
"hash_history": [
|
|
225
|
+
"867544877ac04df6e0232d6d425797e7fab2cceff9a7176a3c9e61f8c4a416d7",
|
|
216
226
|
"0db0c58e72c0d58b24163371efe7a647c67d5d232020b2b4ed2557f19fe648d7"
|
|
217
227
|
],
|
|
218
228
|
"deprecated_aliases": []
|
|
@@ -220,8 +230,9 @@
|
|
|
220
230
|
{
|
|
221
231
|
"canonical_name": "sks-gx",
|
|
222
232
|
"type": "official",
|
|
223
|
-
"content_sha256": "
|
|
233
|
+
"content_sha256": "165974015298362c9dac6d97b71c9865f42174a649dd85fe2e97ade6c6fd7c77",
|
|
224
234
|
"hash_history": [
|
|
235
|
+
"53a9e538812e79549d0dfa7ae9da6b3d95672281d9b601ecd55f7d5ac64fcd44",
|
|
225
236
|
"55b7d535a5978077462eb4c71226b9fdc772094f91ca336830315de10666e85e"
|
|
226
237
|
],
|
|
227
238
|
"deprecated_aliases": []
|
|
@@ -284,8 +295,9 @@
|
|
|
284
295
|
{
|
|
285
296
|
"canonical_name": "sks-hproof-evidence-bind",
|
|
286
297
|
"type": "official",
|
|
287
|
-
"content_sha256": "
|
|
298
|
+
"content_sha256": "fe9cc94d027e161d12509af86aa39616ac76efe53d049a8bb90fddcdd1e7a7b5",
|
|
288
299
|
"hash_history": [
|
|
300
|
+
"9629257ef1b78b13b503ad1033f500ea8ef898fb74ba50d78a2a72143b7ead4f",
|
|
289
301
|
"fa20989183324964b5527742c0b1f593eacfcd3090b1707fb7c52258cdf62637"
|
|
290
302
|
],
|
|
291
303
|
"deprecated_aliases": []
|
|
@@ -334,8 +346,9 @@
|
|
|
334
346
|
{
|
|
335
347
|
"canonical_name": "sks-naruto",
|
|
336
348
|
"type": "core",
|
|
337
|
-
"content_sha256": "
|
|
349
|
+
"content_sha256": "a1219f6dbad9c8c185953125ef0b8dccf081aa01efb8e8acaa543c6214ac049c",
|
|
338
350
|
"hash_history": [
|
|
351
|
+
"d0d5968e78ac25e1d3e588735de1ddbcf149cfb3165edebca5dec1ed7c7a5c46",
|
|
339
352
|
"34222c72e4e1ead3584907f4d905444b7de820283ee7348018f110d5e6b04461",
|
|
340
353
|
"f8e808622e222b4ad7dcb2907e5f06a890db83139ae443ec6c8c33781dfa3e37",
|
|
341
354
|
"49b5e3dcc1b537b49c2cf09e5b875cb16acb05c622b22798e265e64dacd8ac90"
|
|
@@ -354,8 +367,9 @@
|
|
|
354
367
|
{
|
|
355
368
|
"canonical_name": "sks-pipeline-runner",
|
|
356
369
|
"type": "official",
|
|
357
|
-
"content_sha256": "
|
|
370
|
+
"content_sha256": "fd06dfb27be41e5ffec3e3ec8c5362289f5919cf2afa9da5ab6b97e7baa4a0ac",
|
|
358
371
|
"hash_history": [
|
|
372
|
+
"66e105773b8e042eec5d5679b97b7cb305cad8d45671034907fbfa728fc4d68a",
|
|
359
373
|
"020ba4da2f96bcda23cee4596b1e790816780178f1917dee748ff4b289cba0e5",
|
|
360
374
|
"ffcbe0ea4b585e3d2886f1d9fa7a3b88706aaf42182fb177b2371b76beb0ddcd"
|
|
361
375
|
],
|
|
@@ -373,8 +387,9 @@
|
|
|
373
387
|
{
|
|
374
388
|
"canonical_name": "sks-ppt",
|
|
375
389
|
"type": "official",
|
|
376
|
-
"content_sha256": "
|
|
390
|
+
"content_sha256": "1d4de05afd42ee5739c0ed925af9e0ac4785fc746e659c60d3d908d465e6386c",
|
|
377
391
|
"hash_history": [
|
|
392
|
+
"02e8a0758ec6d056ce9851a5a4505b1d32e302e730be3eb169a41392a5d6b2e2",
|
|
378
393
|
"329fc6ee24bb04478b18fb6ccd3691cd7cbb50e1b77ca7b6136383d00b3b0bb4"
|
|
379
394
|
],
|
|
380
395
|
"deprecated_aliases": []
|
|
@@ -382,8 +397,9 @@
|
|
|
382
397
|
{
|
|
383
398
|
"canonical_name": "sks-prompt-pipeline",
|
|
384
399
|
"type": "official",
|
|
385
|
-
"content_sha256": "
|
|
400
|
+
"content_sha256": "e7c8ef56d38fdc4879c983f7d6706f26fc1cf0a60c508836bd628e815700bcc3",
|
|
386
401
|
"hash_history": [
|
|
402
|
+
"480c8afffafa9d52c483a963b4b8fafdffc0a47cd6d2efd3fb6d7924c11832c5",
|
|
387
403
|
"5dc8524de9bad66cef133ea5ff2a8052331bd12a7ec85695f727d0d2c8523145"
|
|
388
404
|
],
|
|
389
405
|
"deprecated_aliases": []
|
|
@@ -398,8 +414,10 @@
|
|
|
398
414
|
{
|
|
399
415
|
"canonical_name": "sks-reasoning-router",
|
|
400
416
|
"type": "official",
|
|
401
|
-
"content_sha256": "
|
|
417
|
+
"content_sha256": "da0ddb58adc68ddeebdb9c45bf111c26eaa64d3e9dffe1dd39d7f30b943b8b88",
|
|
402
418
|
"hash_history": [
|
|
419
|
+
"1595beabf2d31397217311fa1323bd62c801cf6c87db9029ff544c457efec8bb",
|
|
420
|
+
"a7d879d157c6d5b6b81a67dba7b5b731ac18ea986841fe1ab2cafbd6623481c3",
|
|
403
421
|
"dc0b8c6a4093269c2c36b58432b25409704d06fea8ca558f43b598625ca0d9de"
|
|
404
422
|
],
|
|
405
423
|
"deprecated_aliases": []
|
|
@@ -407,8 +425,9 @@
|
|
|
407
425
|
{
|
|
408
426
|
"canonical_name": "sks-reflection",
|
|
409
427
|
"type": "official",
|
|
410
|
-
"content_sha256": "
|
|
428
|
+
"content_sha256": "d5b6e80644a55a50b60961fe3aa5ae342fd035b39605a07d13dcc82fb0f0149c",
|
|
411
429
|
"hash_history": [
|
|
430
|
+
"5013cefe58746a23e998bd83dedf2c4de9270010297be6fc0c0f0ae2aae73fb8",
|
|
412
431
|
"4ba8b2778d1d37c25c89f1a97ce3ce5602c39138425e1f4af4a91e840a961670"
|
|
413
432
|
],
|
|
414
433
|
"deprecated_aliases": []
|
|
@@ -425,8 +444,10 @@
|
|
|
425
444
|
{
|
|
426
445
|
"canonical_name": "sks-research",
|
|
427
446
|
"type": "core",
|
|
428
|
-
"content_sha256": "
|
|
429
|
-
"hash_history": [
|
|
447
|
+
"content_sha256": "8903022e98fa470cd764f7c8d1b28d4f996d6daf146260f20548acbe1276c55a",
|
|
448
|
+
"hash_history": [
|
|
449
|
+
"2e96f95315d99b645d4171ba4648d9f9218ec3e98dcd6d363b5de522d2e1bfe3"
|
|
450
|
+
],
|
|
430
451
|
"deprecated_aliases": []
|
|
431
452
|
},
|
|
432
453
|
{
|
|
@@ -473,8 +494,9 @@
|
|
|
473
494
|
{
|
|
474
495
|
"canonical_name": "sks-turbo-context-pack",
|
|
475
496
|
"type": "official",
|
|
476
|
-
"content_sha256": "
|
|
497
|
+
"content_sha256": "7e46ced781acf7de50db07ccbf801f76b9b1717e21b683a8008d089b62b54456",
|
|
477
498
|
"hash_history": [
|
|
499
|
+
"c02745666f6d9485c538876e77509209ecf5f481d1d7bed36e312eea60688f06",
|
|
478
500
|
"d94bb85ea836e55c5b2b0df237821cf97b3d2ec6bfe697c97525f3fa5807b200"
|
|
479
501
|
],
|
|
480
502
|
"deprecated_aliases": []
|
|
@@ -482,8 +504,9 @@
|
|
|
482
504
|
{
|
|
483
505
|
"canonical_name": "sks-wiki",
|
|
484
506
|
"type": "official",
|
|
485
|
-
"content_sha256": "
|
|
507
|
+
"content_sha256": "a6b3cf12e88b413073525c146aa27287557536b5a48eade83b87a11d8f371c72",
|
|
486
508
|
"hash_history": [
|
|
509
|
+
"460a7dd5498fbf68697da64d6a56122ca088607edea8f815eea54aca580895fe",
|
|
487
510
|
"b49e0bbe6163e8673b9d2d34a43f8ec130ac7032cacabe17e6fece6182f96be0",
|
|
488
511
|
"16b2b813d202ca51d2ea4fe0da918eddf9494db7ab1356352d4188a5da3496b1"
|
|
489
512
|
],
|
|
@@ -97,13 +97,13 @@ export function decideOfficialSubagentModel(input = {}) {
|
|
|
97
97
|
reason: `managed_role:${managedRole.codex_name}:${profile.policy}`,
|
|
98
98
|
dynamic: true,
|
|
99
99
|
escalation_triggers: [
|
|
100
|
-
'focused review, debugging, planning, integration, security, database, research, release, or unresolved ambiguity selects
|
|
100
|
+
'focused review, debugging, planning, integration, security, database, research, release, or unresolved ambiguity selects Astra Max',
|
|
101
101
|
'incidental judgment vocabulary does not override a clearly classified implementation or context/tools slice',
|
|
102
102
|
'requested model/effort profile unavailable blocks instead of silently falling back'
|
|
103
103
|
],
|
|
104
104
|
downshift_triggers: [
|
|
105
|
-
'ordinary UI, logic, backend, or native implementation selects
|
|
106
|
-
'long-context, Browser/Chrome, Computer Use, image-generation, or large search selects
|
|
105
|
+
'ordinary UI, logic, backend, or native implementation selects Astra High',
|
|
106
|
+
'long-context, Browser/Chrome, Computer Use, image-generation, or large search selects Astra Medium',
|
|
107
107
|
'tiny short-context mechanical search/typing/rename work selects Luna Max'
|
|
108
108
|
]
|
|
109
109
|
};
|
|
@@ -151,13 +151,13 @@ export function decideOfficialSubagentModel(input = {}) {
|
|
|
151
151
|
reason: routed.reason,
|
|
152
152
|
dynamic: true,
|
|
153
153
|
escalation_triggers: [
|
|
154
|
-
'focused review, debugging, planning, integration, security, database, research, release, or unresolved ambiguity selects
|
|
154
|
+
'focused review, debugging, planning, integration, security, database, research, release, or unresolved ambiguity selects Astra Max',
|
|
155
155
|
'incidental judgment vocabulary does not override a clearly classified implementation or context/tools slice',
|
|
156
156
|
'requested model/effort profile unavailable blocks instead of silently falling back'
|
|
157
157
|
],
|
|
158
158
|
downshift_triggers: [
|
|
159
|
-
'ordinary UI, logic, backend, or native implementation selects
|
|
160
|
-
'long-context, Browser/Chrome, Computer Use, or image-generation execution selects
|
|
159
|
+
'ordinary UI, logic, backend, or native implementation selects Astra High',
|
|
160
|
+
'long-context, Browser/Chrome, Computer Use, or image-generation execution selects Astra Medium',
|
|
161
161
|
'tiny short-context mechanical work selects Luna Max'
|
|
162
162
|
]
|
|
163
163
|
};
|
|
@@ -184,18 +184,18 @@ export function buildAgentEffortPolicy(roster = {}) {
|
|
|
184
184
|
dynamic: true,
|
|
185
185
|
service_tier: 'fast',
|
|
186
186
|
model_catalog_policy: narutoFamilyOnly ? 'official_subagent_four_profile_matrix' : 'codex_catalog_passthrough',
|
|
187
|
-
model_constraint: narutoFamilyOnly ? ['gpt-5.6-luna', 'gpt-
|
|
187
|
+
model_constraint: narutoFamilyOnly ? ['gpt-5.6-luna', 'gpt-6-astra'] : null,
|
|
188
188
|
model_tiers: narutoFamilyOnly
|
|
189
|
-
? ['gpt-5.6-luna-max', 'gpt-
|
|
189
|
+
? ['gpt-5.6-luna-max', 'gpt-6-astra-high', 'gpt-6-astra-max', 'gpt-6-astra-medium']
|
|
190
190
|
: ['codex-selected-low', 'codex-selected-medium', 'codex-selected-high', 'codex-selected-xhigh', 'glm-5.2-minimal', 'glm-5.2-low', 'glm-5.2-high', 'glm-5.2-xhigh'],
|
|
191
|
-
allowed_efforts: narutoFamilyOnly ? ['high', 'max'] : codexModelEffortCapability().advertised_efforts,
|
|
191
|
+
allowed_efforts: narutoFamilyOnly ? ['medium', 'high', 'max'] : codexModelEffortCapability().advertised_efforts,
|
|
192
192
|
model_effort_capability: codexModelEffortCapability(),
|
|
193
193
|
max_agents: roster.max_agents || 20,
|
|
194
194
|
agent_count: roster.agent_count || decisions.length,
|
|
195
195
|
concurrency: roster.concurrency || decisions.length,
|
|
196
196
|
decisions,
|
|
197
197
|
rule: narutoFamilyOnly
|
|
198
|
-
? 'Official Naruto subagents use GPT-5.6 Luna Max only for tiny short-context mechanical work, GPT-
|
|
198
|
+
? 'Official Naruto subagents use GPT-5.6 Luna Max only for tiny short-context mechanical work, GPT-6 Astra High for ordinary implementation, GPT-6 Astra Max for judgment-heavy work, and GPT-6 Astra Medium for long-context or Browser/Chrome, Computer Use, and image-generation execution. Judgment wins when one slice cannot be safely split.'
|
|
199
199
|
: 'Codex/OpenAI workers inherit the current Codex-selected model, including future catalog entries; SKS changes only advertised reasoning effort. Explicit non-Codex provider modes retain their provider model.'
|
|
200
200
|
};
|
|
201
201
|
}
|
|
@@ -11,7 +11,7 @@ import { CODE_NAVIGATION_FATAL_SKIP_REASONS, CODE_NAVIGATION_LIMITS } from '../t
|
|
|
11
11
|
import { isCodePackProjectionBoundToSnapshot, validateCodePack } from '../triwiki/code-pack.js';
|
|
12
12
|
import { validateContextGraphSnapshot } from '../triwiki/context-graph/contracts.js';
|
|
13
13
|
import { compileContextGraph } from '../triwiki/context-graph/compiler/index.js';
|
|
14
|
-
import { ARCHITECTURE_MAP_EXTRACTOR_IDS,
|
|
14
|
+
import { ARCHITECTURE_MAP_EXTRACTOR_IDS, alignGraphExtractors } from '../triwiki/context-graph/extractors/index.js';
|
|
15
15
|
import { computeContextGraphCacheKey } from '../triwiki/context-graph/compiler/cache-key.js';
|
|
16
16
|
import { walkCodeInventory } from '../triwiki/context-graph/extractors/code/inventory.js';
|
|
17
17
|
import { codeInventoryInputHashes } from '../triwiki/code-navigation-policy.js';
|
|
@@ -184,7 +184,7 @@ async function runLocked(root, dir, missionId, plan, ledger, beforeFinalSourceCa
|
|
|
184
184
|
ledger.validation.absent_or_existing_input_supported = plan.requires_cleanup_receipt === false
|
|
185
185
|
&& plan.acceptance.absent_or_existing_triwiki_supported === true;
|
|
186
186
|
ledger.validation.prior_state_ignored = true;
|
|
187
|
-
const extractorIdentities =
|
|
187
|
+
const extractorIdentities = alignGraphExtractors();
|
|
188
188
|
const inventory = walkCodeInventory(root, CODE_NAVIGATION_LIMITS);
|
|
189
189
|
const inputHashes = codeInventoryInputHashes(inventory);
|
|
190
190
|
const codeInventoryDigest = crypto
|
|
@@ -208,7 +208,7 @@ async function runLocked(root, dir, missionId, plan, ledger, beforeFinalSourceCa
|
|
|
208
208
|
ledger.validation.source_inventory_complete = fatalSkips.length === 0;
|
|
209
209
|
if (fatalSkips.length)
|
|
210
210
|
throw new Error(`code_navigation_fatal_skips:${fatalSkips.map((skip) => `${skip.reason}:${skip.path}`).join('|')}`);
|
|
211
|
-
const extractors =
|
|
211
|
+
const extractors = alignGraphExtractors({ preparedInventory: inventory });
|
|
212
212
|
const generatedAt = nowIso();
|
|
213
213
|
const compiled = await compileContextGraph({
|
|
214
214
|
root,
|
|
@@ -16,12 +16,15 @@ export const NATIVE_SOURCE_FILES = [
|
|
|
16
16
|
'ControlCenterWindowController.swift',
|
|
17
17
|
'SidebarItem.swift',
|
|
18
18
|
'ControlKit.swift',
|
|
19
|
+
'NativeView.swift',
|
|
19
20
|
'OverviewViewController.swift',
|
|
20
21
|
'OverviewSummary.swift',
|
|
22
|
+
'UpdatesModels.swift',
|
|
21
23
|
'UpdatesViewController.swift',
|
|
22
24
|
'MCPServersViewController.swift',
|
|
23
25
|
'ProvidersViewController.swift',
|
|
24
26
|
'ProvidersReliability.swift',
|
|
27
|
+
'AuthPriorityState.swift',
|
|
25
28
|
'ProvidersRoutingTruth.swift',
|
|
26
29
|
'ProvidersOpenRouter.swift',
|
|
27
30
|
'ProvidersModelExposure.swift',
|