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 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` | Check the git diff, unresolved constraints, repo checks, and test coverage. Writes `.scriptonia/evals/<plan>.yaml`; exits 1 on BLOCK. |
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
- verify verify [--base <ref>] PLAN.md + git diff → PASS / WARN / BLOCK
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. The local brain is a human-readable working surface. Initialization
62
- does not upload the full codebase. When you explicitly run `verify`, the selected
63
- PLAN.md and git diff are sent for analysis; the YAML regression case stays local.
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 18+.
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.