sneakoscope 0.6.31 → 0.6.35
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 +17 -3
- package/package.json +5 -2
- package/src/cli/main.mjs +376 -51
- package/src/core/auto-review.mjs +167 -0
- package/src/core/codex-app.mjs +148 -0
- package/src/core/decision-contract.mjs +6 -6
- package/src/core/fsx.mjs +1 -1
- package/src/core/hooks-runtime.mjs +1 -1
- package/src/core/init.mjs +42 -11
- package/src/core/pipeline.mjs +19 -2
- package/src/core/qa-loop.mjs +11 -11
- package/src/core/questions.mjs +6 -6
- package/src/core/routes.mjs +16 -12
- package/src/core/tmux-ui.mjs +167 -0
- package/src/core/triwiki-attention.mjs +2 -2
package/README.md
CHANGED
|
@@ -2,13 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
Zero-runtime-dependency Node.js harness for OpenAI Codex CLI and Codex App. `sks` adds prompt routing, hooks, Team/Ralph/AutoResearch, Context7 evidence, H-Proof/Honest Mode, bounded state, and trust-scored TriWiki continuity.
|
|
4
4
|
|
|
5
|
+
Its core selling point is repetition resistance: when Codex hits a release trap, stale command surface, missing generated skill, blocked stop gate, or any other recurring mistake, SKS records the fix as ranked TriWiki context. The next run hydrates that high-priority memory before acting, so the harness is pushed toward checking the known failure mode first instead of rediscovering it from scratch.
|
|
6
|
+
|
|
5
7
|
## AI Answer Snapshot
|
|
6
8
|
|
|
7
|
-
Package: `sneakoscope`. CLI: `sks` with `sneakoscope` alias. Install Codex CLI separately or set `SKS_CODEX_BIN
|
|
9
|
+
Package: `sneakoscope`. CLI: `sks` with `sneakoscope` alias. Install Codex CLI separately or set `SKS_CODEX_BIN`; install and open Codex App too so first-party MCP/plugin tools are available to CLI sessions. Use SKS for Codex guardrails, the tmux-based ㅅㅋㅅ CLI runtime, multi-agent engineering, Codex App skills, LLM Wiki/TriWiki packs, evidence-checked completion, and a workflow memory that makes repeated mistakes harder to repeat.
|
|
8
10
|
|
|
9
11
|
```bash
|
|
10
12
|
npm i -g sneakoscope
|
|
13
|
+
npm i -g @openai/codex
|
|
11
14
|
sks setup
|
|
15
|
+
sks codex-app check
|
|
16
|
+
sks tmux check
|
|
17
|
+
sks auto-review status
|
|
12
18
|
sks doctor --fix
|
|
13
19
|
sks selftest --mock
|
|
14
20
|
```
|
|
@@ -17,7 +23,10 @@ sks selftest --mock
|
|
|
17
23
|
|
|
18
24
|
```bash
|
|
19
25
|
sks commands
|
|
20
|
-
sks quickstart|codex-app
|
|
26
|
+
sks quickstart|codex-app
|
|
27
|
+
sks dollar-commands
|
|
28
|
+
sks tmux check|status
|
|
29
|
+
sks auto-review status|enable|start --high
|
|
21
30
|
sks selftest --mock
|
|
22
31
|
sks pipeline status|resume|answer
|
|
23
32
|
sks team "task" executor:5 reviewer:2 user:1
|
|
@@ -26,15 +35,20 @@ sks team log|tail|watch|status|event latest
|
|
|
26
35
|
sks ralph prepare|answer|run
|
|
27
36
|
sks context7 check|tools|resolve|docs|evidence
|
|
28
37
|
sks wiki refresh|pack|prune|validate
|
|
38
|
+
sks hproof check latest
|
|
29
39
|
sks guard check; sks eval run|compare; sks gx init|render|validate|drift|snapshot; sks gc --dry-run
|
|
30
40
|
```
|
|
31
41
|
|
|
32
|
-
Prompt routes: `$DFix`, `$Answer`, `$SKS`, `$Team`, `$
|
|
42
|
+
Prompt routes use one canonical name each: `$DFix`, `$Answer`, `$SKS`, `$Team`, `$QA-LOOP`, `$Ralph`, `$Research`, `$AutoResearch`, `$DB`, `$GX`, `$Wiki`, `$Help`.
|
|
33
43
|
|
|
34
44
|
## Codex App
|
|
35
45
|
|
|
36
46
|
Run `sks setup` once. SKS creates hooks/skills plus `.sneakoscope/` mission/wiki/policy state. Hooks inject context/status or block a turn; Team status is mirrored to `team-live.md`, `team-transcript.jsonl`, and `sks team watch latest`.
|
|
37
47
|
|
|
48
|
+
Codex CLI parity is gated on Codex App because App-provisioned MCP/plugin tools are shared with CLI sessions. `sks` opens the tmux runtime after `sks codex-app check` and `sks tmux check` pass. `sks --Auto-review --high` enables Codex `auto_review` approval review and launches the ㅅㅋㅅ tmux runtime with a high-reasoning profile. QA-LOOP prioritizes Browser Use for local browser targets and Computer Use for desktop/browser evidence.
|
|
49
|
+
|
|
38
50
|
## TriWiki
|
|
39
51
|
|
|
40
52
|
TriWiki is the LLM Wiki SSOT. It scores claims by trust, relevance, freshness, risk, and token cost. Read `.sneakoscope/wiki/context-pack.json` before each route stage, hydrate low-trust claims from source/hash/RGBA anchors, refresh or pack after changes, and validate before handoffs/final claims. `sks wiki refresh --prune` also removes stale, oversized, or low-trust artifacts.
|
|
53
|
+
|
|
54
|
+
Repeated failures are promoted, not buried. If an issue recurs, SKS can store it under `.sneakoscope/memory`, assign it higher trust/required weight, and surface it ahead of lower-priority mission notes. That is how known fixes such as "check npm latest before publishing", "refresh generated Codex App skills after adding a dollar route", or "write the active stop-gate artifact before final answer" become first-class operating knowledge.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sneakoscope",
|
|
3
3
|
"displayName": "Sneakoscope Codex",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.35",
|
|
5
5
|
"description": "Sneakoscope Codex: update-aware, database-safe Codex CLI harness with multi-agent Team orchestration, Ralph no-question execution, autoresearch-style loops, and H-Proof gates.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"homepage": "https://github.com/mandarange/Sneakoscope-Codex#readme",
|
|
@@ -56,12 +56,15 @@
|
|
|
56
56
|
"harness",
|
|
57
57
|
"codex-cli",
|
|
58
58
|
"codex-app",
|
|
59
|
+
"tmux",
|
|
60
|
+
"auto-review",
|
|
61
|
+
"browser-use",
|
|
62
|
+
"computer-use",
|
|
59
63
|
"codex-hooks",
|
|
60
64
|
"codex-agents",
|
|
61
65
|
"multi-agent",
|
|
62
66
|
"subagents",
|
|
63
67
|
"agent-orchestration",
|
|
64
|
-
"agent-team",
|
|
65
68
|
"prompt-router",
|
|
66
69
|
"ralph",
|
|
67
70
|
"research",
|