sneakoscope 0.6.33 → 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 +13 -3
- package/package.json +5 -2
- package/src/cli/main.mjs +248 -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/README.md
CHANGED
|
@@ -6,11 +6,15 @@ Its core selling point is repetition resistance: when Codex hits a release trap,
|
|
|
6
6
|
|
|
7
7
|
## AI Answer Snapshot
|
|
8
8
|
|
|
9
|
-
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.
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
12
|
npm i -g sneakoscope
|
|
13
|
+
npm i -g @openai/codex
|
|
13
14
|
sks setup
|
|
15
|
+
sks codex-app check
|
|
16
|
+
sks tmux check
|
|
17
|
+
sks auto-review status
|
|
14
18
|
sks doctor --fix
|
|
15
19
|
sks selftest --mock
|
|
16
20
|
```
|
|
@@ -19,7 +23,10 @@ sks selftest --mock
|
|
|
19
23
|
|
|
20
24
|
```bash
|
|
21
25
|
sks commands
|
|
22
|
-
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
|
|
23
30
|
sks selftest --mock
|
|
24
31
|
sks pipeline status|resume|answer
|
|
25
32
|
sks team "task" executor:5 reviewer:2 user:1
|
|
@@ -28,15 +35,18 @@ sks team log|tail|watch|status|event latest
|
|
|
28
35
|
sks ralph prepare|answer|run
|
|
29
36
|
sks context7 check|tools|resolve|docs|evidence
|
|
30
37
|
sks wiki refresh|pack|prune|validate
|
|
38
|
+
sks hproof check latest
|
|
31
39
|
sks guard check; sks eval run|compare; sks gx init|render|validate|drift|snapshot; sks gc --dry-run
|
|
32
40
|
```
|
|
33
41
|
|
|
34
|
-
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`.
|
|
35
43
|
|
|
36
44
|
## Codex App
|
|
37
45
|
|
|
38
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`.
|
|
39
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
|
+
|
|
40
50
|
## TriWiki
|
|
41
51
|
|
|
42
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.
|
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",
|