sneakoscope 0.6.38 → 0.6.43
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 +9 -61
- package/package.json +1 -1
- package/src/cli/main.mjs +505 -604
- package/src/core/decision-contract.mjs +14 -1
- package/src/core/evaluation.mjs +6 -1
- package/src/core/fsx.mjs +1 -1
- package/src/core/harness-conflicts.mjs +0 -1
- package/src/core/hooks-runtime.mjs +1 -0
- package/src/core/init.mjs +56 -156
- package/src/core/pipeline.mjs +121 -14
- package/src/core/qa-loop.mjs +81 -14
- package/src/core/questions.mjs +82 -6
- package/src/core/routes.mjs +29 -20
- package/src/core/team-live.mjs +2 -1
- package/src/core/wiki-coordinate.mjs +99 -0
package/README.md
CHANGED
|
@@ -1,66 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
<p align="center"><strong>Sneakoscope Codex</strong></p>
|
|
1
|
+
# Sneakoscope Codex
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
Codex CLI/App harness for `$` routing, Team/Ralph/QA/Research, Context7, Honest Mode, DB safety, and TriWiki.
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
Install: `npm i -g sneakoscope && sks bootstrap`
|
|
6
|
+
Fallback: `npx -y -p sneakoscope sks bootstrap`
|
|
7
|
+
Project: `npm i -D sneakoscope && npx sks setup --install-scope project`
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
Discover: `sks commands`, `sks dollar-commands`, `sks usage <topic>`.
|
|
10
|
+
Check: `sks deps check`, `sks doctor --fix`, `sks selftest --mock`.
|
|
9
11
|
|
|
10
|
-
|
|
12
|
+
QA-LOOP reports: `YYYY-MM-DD-v<version>-qa-report.md`.
|
|
11
13
|
|
|
12
|
-
|
|
13
|
-
npm i -g sneakoscope
|
|
14
|
-
sks setup
|
|
15
|
-
npx -y -p sneakoscope sks setup
|
|
16
|
-
sks codex-app check
|
|
17
|
-
sks tmux check
|
|
18
|
-
sks --auto-review --high
|
|
19
|
-
sks auto-review status
|
|
20
|
-
sks doctor --fix
|
|
21
|
-
sks selftest --mock
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
## Commands
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
sks commands
|
|
28
|
-
sks quickstart|codex-app
|
|
29
|
-
sks dollar-commands
|
|
30
|
-
sks tmux check|status
|
|
31
|
-
sks --auto-review --high
|
|
32
|
-
sks auto-review status|enable|start --high
|
|
33
|
-
sks selftest --mock
|
|
34
|
-
sks pipeline status|resume|answer
|
|
35
|
-
sks team "task" executor:5 reviewer:2 user:1
|
|
36
|
-
sks team event latest --agent analysis_scout_1 --phase scout --message "mapped repo slice"
|
|
37
|
-
sks qa-loop prepare|answer|run|status
|
|
38
|
-
sks team log|tail|watch|status
|
|
39
|
-
sks ralph prepare|answer|run
|
|
40
|
-
sks context7 check|tools|resolve|docs|evidence
|
|
41
|
-
sks wiki refresh|pack|prune|validate
|
|
42
|
-
sks hproof check latest
|
|
43
|
-
sks guard check; sks eval run|compare; sks gx init|render|validate|drift|snapshot; sks gc --dry-run
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
Prompt routes use one canonical name each: `$DFix`, `$Answer`, `$SKS`, `$Team`, `$QA-LOOP`, `$Ralph`, `$Research`, `$AutoResearch`, `$DB`, `$GX`, `$Wiki`, `$Help`.
|
|
47
|
-
|
|
48
|
-
Release notes: `CHANGELOG.md`; checked by `npm run release:check`.
|
|
49
|
-
|
|
50
|
-
## Design And Assets
|
|
51
|
-
|
|
52
|
-
UI/UX reads `design.md` first. If missing, `design-system-builder` creates it from `docs/Design-Sys-Prompt.md` with plan-tool questions and a default font choice. Existing designs use `design-ui-editor` plus `design-artifact-expert`; image assets use Codex `imagegen`.
|
|
53
|
-
|
|
54
|
-
## Codex App
|
|
55
|
-
|
|
56
|
-
Global install creates user-level `$` skills; run `sks setup` once inside each project to add project hooks/skills plus `.sneakoscope/` state. Team status is mirrored to `team-live.md`, `team-transcript.jsonl`, and `sks team watch latest`.
|
|
57
|
-
|
|
58
|
-
Implementation/code-changing prompts default to Team orchestration: parallel analysis scouts, TriWiki refresh/validate, debate/consensus, then fresh parallel executors. Answer-only, DFix, Help, Wiki maintenance, and safety-specific routes stay lightweight.
|
|
59
|
-
|
|
60
|
-
Codex CLI parity is gated on Codex App because App MCP/plugin tools are shared with CLI sessions. `sks setup` installs `@openai/codex` when missing and prints tool hints. `sks --auto-review --high` is the shortest high-reasoning auto-review entry.
|
|
61
|
-
|
|
62
|
-
## TriWiki
|
|
63
|
-
|
|
64
|
-
TriWiki scores claims by trust, 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 after changes, and validate before handoffs/final claims.
|
|
65
|
-
|
|
66
|
-
Repeated failures are promoted, not buried. Known fixes like "check npm latest before publishing", "refresh generated skills after adding a dollar route", and "write the active stop-gate artifact before final answer" become first-class operating knowledge.
|
|
14
|
+
Team: scouts -> TriWiki -> debate -> fresh executors -> review -> cleanup -> reflection -> Honest.
|
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.43",
|
|
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",
|