sneakoscope 0.9.14 → 0.9.15

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 CHANGED
@@ -2,11 +2,13 @@
2
2
 
3
3
  Fast legacy-free proof-first Codex trust layer with image-based Voxel TriWiki.
4
4
 
5
- Sneakoscope Codex (`sks`) is a Codex CLI/App harness that makes repeatable Codex work auditable. `0.9.14` runs through split command modules, automatically seals serious routes with Completion Proof, binds visual/UI claims to Image Voxel TriWiki anchors and relations, and release-gates hooks, codex-lb, executable fixtures, Rust parity, and DB safety evidence.
5
+ Sneakoscope Codex (`sks`) is a Codex CLI/App harness that makes repeatable Codex work auditable. `0.9.15` runs through split command modules, automatically seals serious routes with Completion Proof, binds visual/UI claims to Image Voxel TriWiki anchors and relations, and release-gates hooks, codex-lb, executable fixtures, Rust parity, and DB safety evidence.
6
6
 
7
- ## 0.9.14 Current Release
7
+ ## 0.9.15 Current Release
8
8
 
9
- `0.9.14` turns SKS into a legacy-free proof-first trust layer for Codex work:
9
+ `0.9.15` preserves the 0.9.14 legacy-free trust layer and fixes global npm postinstall auto-bootstrap.
10
+
11
+ `0.9.14` turned SKS into a legacy-free proof-first trust layer for Codex work:
10
12
 
11
13
  - Command registry entries load independent command modules without runtime fallback to archived 0.9.13 CLI bundles.
12
14
  - Serious routes write Completion Proof through the central route finalizer before completion is claimed.
@@ -76,7 +76,7 @@ dependencies = [
76
76
 
77
77
  [[package]]
78
78
  name = "sks-core"
79
- version = "0.9.14"
79
+ version = "0.9.15"
80
80
  dependencies = [
81
81
  "serde_json",
82
82
  ]
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "sks-core"
3
- version = "0.9.14"
3
+ version = "0.9.15"
4
4
  edition = "2021"
5
5
 
6
6
  [dependencies]
@@ -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 0.9.14"),
7
+ Some("--version") => println!("sks-rs 0.9.15"),
8
8
  Some("compact-info") => {
9
9
  let mut input = String::new();
10
10
  let _ = io::stdin().read_to_string(&mut input);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sneakoscope",
3
3
  "displayName": "ㅅㅋㅅ",
4
- "version": "0.9.14",
4
+ "version": "0.9.15",
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",
@@ -202,7 +202,7 @@ export async function depsCommand(sub = 'check', args = []) {
202
202
 
203
203
  export async function postinstallCommand(args = []) {
204
204
  const { postinstall } = await import('../../cli/install-helpers.mjs');
205
- return postinstall({ bootstrap: flag(args, '--bootstrap') });
205
+ return postinstall({ bootstrap: bootstrapCommand });
206
206
  }
207
207
 
208
208
  export async function selftestCommand(args = []) {
package/src/core/fsx.mjs 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
 
8
- export const PACKAGE_VERSION = '0.9.14';
8
+ export const PACKAGE_VERSION = '0.9.15';
9
9
  export const DEFAULT_PROCESS_TAIL_BYTES = 256 * 1024;
10
10
  export const DEFAULT_PROCESS_TIMEOUT_MS = 30 * 60 * 1000;
11
11
 
@@ -1 +1 @@
1
- export const PACKAGE_VERSION = '0.9.14';
1
+ export const PACKAGE_VERSION = '0.9.15';