sneakoscope 8.6.0 → 8.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/crates/sks-core/Cargo.lock +1 -1
- package/crates/sks-core/Cargo.toml +1 -1
- package/dist/config/skills-manifest.json +1 -1
- package/dist/core/codex-lb/desktop-bridge/security.js +0 -3
- package/dist/core/subagents/wave-lifecycle.js +8 -2
- package/dist/core/version.js +1 -1
- package/package.json +1 -1
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 8.6.
|
|
25
|
+
This README documents package **SKS 8.6.1** — 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
|
|
|
@@ -106,9 +106,6 @@ export function resolveCodexSessionIdentity(headers, payload = null) {
|
|
|
106
106
|
], 'session');
|
|
107
107
|
if (sessionId && !threadId)
|
|
108
108
|
throw new DesktopBridgeError('bridge_codex_thread_id_missing');
|
|
109
|
-
if (threadId && sessionId && threadId !== sessionId) {
|
|
110
|
-
throw new DesktopBridgeError('bridge_codex_session_identity_mismatch');
|
|
111
|
-
}
|
|
112
109
|
return { thread_id: threadId, session_id: sessionId };
|
|
113
110
|
}
|
|
114
111
|
function comparableOrigin(value, referer) {
|
|
@@ -156,11 +156,17 @@ export async function refreshSubagentWaveLifecycle(artifactDir, input = {}) {
|
|
|
156
156
|
const targetSubagents = countPolicy === 'exact' && existing
|
|
157
157
|
? requestedTargetSubagents
|
|
158
158
|
: Math.min(automaticSubagentTargetCap(plan), Math.max(requestedTargetSubagents, normalizeCount(existing?.target_subagents), startedCount));
|
|
159
|
-
const
|
|
160
|
-
|
|
159
|
+
const capacityController = plan.capacity_controller;
|
|
160
|
+
const plannedWaveFloor = positiveCount(plan.first_wave)
|
|
161
|
+
|| positiveCount(capacityController?.selected_capacity)
|
|
161
162
|
|| positiveCount(existing?.wave_capacity)
|
|
162
163
|
|| positiveCount(plan.max_threads)
|
|
163
164
|
|| targetSubagents;
|
|
165
|
+
const liveThreadSlots = positiveCount(capacityController?.available_thread_slots);
|
|
166
|
+
const configuredThreadCap = positiveCount(plan.max_threads) || targetSubagents;
|
|
167
|
+
const waveCapacity = targetSubagents > planRequestedSubagents
|
|
168
|
+
? Math.min(configuredThreadCap, Math.max(plannedWaveFloor, liveThreadSlots ? Math.min(liveThreadSlots, targetSubagents) : targetSubagents))
|
|
169
|
+
: plannedWaveFloor;
|
|
164
170
|
const next = projectLifecycle(existing || createSubagentWaveLifecycle({
|
|
165
171
|
workflowRunId,
|
|
166
172
|
targetSubagents,
|
package/dist/core/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const PACKAGE_VERSION = '8.6.
|
|
1
|
+
export const PACKAGE_VERSION = '8.6.1';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sneakoscope",
|
|
3
3
|
"displayName": "ㅅㅋㅅ",
|
|
4
|
-
"version": "8.6.
|
|
4
|
+
"version": "8.6.1",
|
|
5
5
|
"description": "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.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"homepage": "https://github.com/mandarange/Sneakoscope-Codex#readme",
|