sneakoscope 3.1.2 → 3.1.3
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/crates/sks-core/src/main.rs +1 -1
- package/dist/.sks-build-stamp.json +3 -3
- package/dist/bin/sks.js +1 -1
- package/dist/core/commands/naruto-command.js +20 -3
- package/dist/core/fsx.js +1 -1
- package/dist/core/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Set up this agent project with Sneakoscope Codex. Use [[mandarange/Sneakoscope-C
|
|
|
35
35
|
|
|
36
36
|
## 🚀 Current Release
|
|
37
37
|
|
|
38
|
-
SKS **3.1.
|
|
38
|
+
SKS **3.1.3** hardens Loop Mesh for production use: fixture workers/gates/final arbiters are test-only, `gpt:final-arbiter` is explicitly finalizer-owned, integration merge uses a strategy ladder, side-effect reports come from loop diffs and mutation ledgers, loop kill interrupts active worker sessions, and global loop concurrency budgets prevent worker/model-call oversubscription. It remains Codex 0.139-aware while bundling @openai/codex-sdk 0.138.0 at this release boundary; see [docs/codex-0.139-compat.md](docs/codex-0.139-compat.md), [docs/codex-0.139-real-probes.md](docs/codex-0.139-real-probes.md), [docs/loop-fixture-policy.md](docs/loop-fixture-policy.md), and [docs/loop-merge-strategy.md](docs/loop-merge-strategy.md).
|
|
39
39
|
|
|
40
40
|
SKS 3.0.0 was the parallel-runtime stabilization release. The whole live-swarm experience — what you actually *see* while 5, 20, or 100 workers run — was rebuilt and proven end-to-end.
|
|
41
41
|
|
|
@@ -4,7 +4,7 @@ use std::io::{self, Read, Seek, SeekFrom};
|
|
|
4
4
|
fn main() {
|
|
5
5
|
let mut args = std::env::args().skip(1);
|
|
6
6
|
match args.next().as_deref() {
|
|
7
|
-
Some("--version") => println!("sks-rs 3.1.
|
|
7
|
+
Some("--version") => println!("sks-rs 3.1.3"),
|
|
8
8
|
Some("compact-info") => {
|
|
9
9
|
let mut input = String::new();
|
|
10
10
|
let _ = io::stdin().read_to_string(&mut input);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "sks.dist-build-stamp.v1",
|
|
3
3
|
"package_name": "sneakoscope",
|
|
4
|
-
"package_version": "3.1.
|
|
5
|
-
"source_digest": "
|
|
4
|
+
"package_version": "3.1.3",
|
|
5
|
+
"source_digest": "4a78851e9e9d4b9101b268276b0ed8776e2d41fa0615a6aced9f7371216618ce",
|
|
6
6
|
"source_file_count": 2448,
|
|
7
|
-
"built_at_source_time":
|
|
7
|
+
"built_at_source_time": 1781415222161
|
|
8
8
|
}
|
package/dist/bin/sks.js
CHANGED
|
@@ -508,6 +508,14 @@ async function narutoRun(parsed) {
|
|
|
508
508
|
} : null,
|
|
509
509
|
parallel_write_policy: result.parallel_write_policy || null,
|
|
510
510
|
local_worker: localWorkerSummary,
|
|
511
|
+
fast_mode_policy: result.fast_mode_policy || null,
|
|
512
|
+
fast_mode_propagation: result.fast_mode_propagation ? {
|
|
513
|
+
ok: result.fast_mode_propagation.ok === true,
|
|
514
|
+
fast_mode: result.fast_mode_propagation.fast_mode,
|
|
515
|
+
service_tier: result.fast_mode_propagation.service_tier,
|
|
516
|
+
worker_process_report_count: result.fast_mode_propagation.worker_process_report_count || 0,
|
|
517
|
+
blockers: result.fast_mode_propagation.blockers || []
|
|
518
|
+
} : null,
|
|
511
519
|
finalizer,
|
|
512
520
|
proof: result.proof?.status || 'missing',
|
|
513
521
|
run: compactNarutoRunResult(result),
|
|
@@ -798,9 +806,18 @@ function parseNarutoArgs(args = []) {
|
|
|
798
806
|
const dryRunPatches = hasFlag(args, '--dry-run-patches') || hasFlag(args, '--dry-run-patch');
|
|
799
807
|
const maxWriteAgents = Math.max(0, Math.floor(Number(readOption(args, '--max-write-agents', '0')) || 0));
|
|
800
808
|
const explicitServiceTier = String(readOption(args, '--service-tier', '') || '');
|
|
801
|
-
const
|
|
802
|
-
|
|
803
|
-
|
|
809
|
+
const requestedServiceTier = normalizeServiceTier(explicitServiceTier, null) || undefined;
|
|
810
|
+
// Naruto clones always run in the fast service tier. The route-level skill and
|
|
811
|
+
// release docs explicitly treat --no-fast / standard as non-honored for clones.
|
|
812
|
+
const serviceTier = action === 'run' ? 'fast' : requestedServiceTier;
|
|
813
|
+
const fastMode = action === 'run'
|
|
814
|
+
? true
|
|
815
|
+
: hasFlag(args, '--no-fast') || requestedServiceTier === 'standard'
|
|
816
|
+
? false
|
|
817
|
+
: hasFlag(args, '--fast')
|
|
818
|
+
? true
|
|
819
|
+
: undefined;
|
|
820
|
+
const noFast = action === 'run' ? false : hasFlag(args, '--no-fast');
|
|
804
821
|
const positionalMission = action === 'dashboard' || action === 'workers' || action === 'status' || action === 'proof'
|
|
805
822
|
? positionalArgs(rest, new Set()).find((arg) => /^latest$|^M-/.test(arg))
|
|
806
823
|
: null;
|
package/dist/core/fsx.js
CHANGED
|
@@ -5,7 +5,7 @@ import os from 'node:os';
|
|
|
5
5
|
import crypto from 'node:crypto';
|
|
6
6
|
import { spawn } from 'node:child_process';
|
|
7
7
|
import { fileURLToPath } from 'node:url';
|
|
8
|
-
export const PACKAGE_VERSION = '3.1.
|
|
8
|
+
export const PACKAGE_VERSION = '3.1.3';
|
|
9
9
|
export const DEFAULT_PROCESS_TAIL_BYTES = 256 * 1024;
|
|
10
10
|
export const DEFAULT_PROCESS_TIMEOUT_MS = 30 * 60 * 1000;
|
|
11
11
|
export function nowIso() {
|
package/dist/core/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const PACKAGE_VERSION = '3.1.
|
|
1
|
+
export const PACKAGE_VERSION = '3.1.3';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sneakoscope",
|
|
3
3
|
"displayName": "ㅅㅋㅅ",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.3",
|
|
5
5
|
"description": "Sneakoscope Codex: fast proof-first Codex trust layer with image-based Voxel TriWiki.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"homepage": "https://github.com/mandarange/Sneakoscope-Codex#readme",
|