scriptonia 0.8.0 → 0.9.0-rc.1
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 +15 -6
- package/dist/index.js +1686 -0
- package/dist/index.js.map +1 -0
- package/package.json +49 -5
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ npx scriptonia comment plan/<slug> "default to all actors, and gate behind the a
|
|
|
36
36
|
| **PLAN** | `npx scriptonia plan "<issue>"` | Retrieve the relevant signal, check prior decisions, and write **PLAN.md** — every claim cites a signal id; contradictions are gated **UNRESOLVED** until a human approves. |
|
|
37
37
|
| **BUILD** | `claude "execute PLAN.md"` | Your agent implements against the plan's cited criteria and Non-goals fence. |
|
|
38
38
|
| **REFINE** | `npx scriptonia comment plan/<slug> "…"` | A note regenerates the plan (v+1). A comment approving an override flips a contradiction to **RESOLVED**. |
|
|
39
|
-
| **VERIFY** | `npx scriptonia verify` |
|
|
39
|
+
| **VERIFY** | `npx scriptonia verify` | Freeze the Git/product-memory snapshot and consume declared CI/JUnit/static evidence. It never executes repository commands. |
|
|
40
40
|
|
|
41
41
|
## Commands
|
|
42
42
|
|
|
@@ -46,7 +46,14 @@ signal add <files> (--source, --segment, or cat x | npx script
|
|
|
46
46
|
plan plan "<issue>" (--out <file>, --refresh <slug>)
|
|
47
47
|
plans list plans + their slugs
|
|
48
48
|
comment plan/<slug> "…" refine → regenerates PLAN.md
|
|
49
|
-
|
|
49
|
+
capture run -- <agent-command> capture exactly the command supplied
|
|
50
|
+
runs | run show <id> inspect captured agent sessions
|
|
51
|
+
verify diff-check [--base <ref>] sub-second deterministic policy pass
|
|
52
|
+
verify [--base <ref>] complete evidence report
|
|
53
|
+
gate [--base <ref>] CI-compatible aggregate exit status
|
|
54
|
+
learn learn <finding-id> confirmed finding → draft eval
|
|
55
|
+
eval run [id] | eval doctor run and maintain regression cases
|
|
56
|
+
memory decide | pulse | why | recall local-first product/codebase memory
|
|
50
57
|
inspect scriptonia the loop + what's next
|
|
51
58
|
contexts | query "<topic>" | link "<id>" | sync
|
|
52
59
|
account status | logout | skill | mcp
|
|
@@ -58,9 +65,10 @@ account status | logout | skill | mcp
|
|
|
58
65
|
`~/.scriptonia/projects/<slug>/`, scans the code into a repo map (so plan steps
|
|
59
66
|
name real files), and writes an `AGENTS.md` section. Customer signal you submit
|
|
60
67
|
is stored and embedded on Scriptonia's servers; it is not written into the
|
|
61
|
-
repository.
|
|
62
|
-
does not upload the
|
|
63
|
-
|
|
68
|
+
repository. V2 policies, eval definitions, and operational brain data are
|
|
69
|
+
local-first. Deterministic verification does not upload the codebase. When
|
|
70
|
+
semantic evaluation is explicitly enabled, only the bounded evidence bundle is
|
|
71
|
+
sent through the authenticated Scriptonia gateway.
|
|
64
72
|
|
|
65
73
|
Skip `init` if you have one product — `login → add → plan` uses your default
|
|
66
74
|
brain and scans whatever repo you run `plan` in.
|
|
@@ -76,4 +84,5 @@ Exposes `get_context`, `link_back`, `flag_contradiction` from your stored login.
|
|
|
76
84
|
## Self-hosting
|
|
77
85
|
|
|
78
86
|
Defaults to `https://scriptonia.dev`. Point elsewhere with
|
|
79
|
-
`SCRIPTONIA_URL=https://your.host npx scriptonia login` (or `--url`). Node
|
|
87
|
+
`SCRIPTONIA_URL=https://your.host npx scriptonia login` (or `--url`). Node 24 LTS
|
|
88
|
+
is the V2 release baseline; Node 22 remains in the compatibility matrix.
|