sneakoscope 0.6.43 → 0.6.44
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 +5 -7
- package/package.json +1 -1
- package/src/core/fsx.mjs +1 -1
package/README.md
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
# Sneakoscope Codex
|
|
2
2
|
|
|
3
|
-
Codex
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
Codex CLI/App harness for `$` routes, Team/Ralph/QA/Research, Context7, Honest Mode, DB safety, and TriWiki.
|
|
4
6
|
|
|
5
7
|
Install: `npm i -g sneakoscope && sks bootstrap`
|
|
6
8
|
Fallback: `npx -y -p sneakoscope sks bootstrap`
|
|
7
9
|
Project: `npm i -D sneakoscope && npx sks setup --install-scope project`
|
|
8
10
|
|
|
9
|
-
Discover: `sks commands`, `sks dollar-commands`, `sks usage <topic
|
|
10
|
-
Check: `sks deps check`, `sks doctor --fix`, `sks selftest --mock
|
|
11
|
-
|
|
12
|
-
QA-LOOP reports: `YYYY-MM-DD-v<version>-qa-report.md`.
|
|
13
|
-
|
|
14
|
-
Team: scouts -> TriWiki -> debate -> fresh executors -> review -> cleanup -> reflection -> Honest.
|
|
11
|
+
Discover: `sks commands`, `sks dollar-commands`, `sks usage <topic>`
|
|
12
|
+
Check: `sks deps check`, `sks doctor --fix`, `sks selftest --mock`
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sneakoscope",
|
|
3
3
|
"displayName": "ㅅㅋㅅ",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.44",
|
|
5
5
|
"description": "Sneakoscope Codex: database-safe Codex CLI/App harness with Team, Ralph, AutoResearch, TriWiki, and Honest Mode.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"homepage": "https://github.com/mandarange/Sneakoscope-Codex#readme",
|
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.6.
|
|
8
|
+
export const PACKAGE_VERSION = '0.6.44';
|
|
9
9
|
export const DEFAULT_PROCESS_TAIL_BYTES = 256 * 1024;
|
|
10
10
|
export const DEFAULT_PROCESS_TIMEOUT_MS = 30 * 60 * 1000;
|
|
11
11
|
|