@skein-code/cli 0.3.9 → 0.3.10
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 +1 -1
- package/dist/cli.js +1066 -419
- package/dist/cli.js.map +1 -1
- package/docs/NEXT_STEPS.md +9 -8
- package/package.json +4 -4
package/docs/NEXT_STEPS.md
CHANGED
|
@@ -9,7 +9,7 @@ one of the milestones below.
|
|
|
9
9
|
|
|
10
10
|
- Product name: `Skein`; primary executable: `skein`.
|
|
11
11
|
- Compatibility executables: `mosaic` and `mosaic-code`.
|
|
12
|
-
- Current repository version: `0.3.
|
|
12
|
+
- Current repository version: `0.3.10`.
|
|
13
13
|
- Runtime requirement: Node.js `>=22.16.0` (the runtime uses unflagged
|
|
14
14
|
`node:sqlite` with FTS5, and current CLI/build dependencies require this
|
|
15
15
|
Node 22 baseline).
|
|
@@ -41,8 +41,8 @@ npm audit --omit=dev
|
|
|
41
41
|
npm run release:verify -- --output-dir artifacts/package
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
The latest verified package is `skein-code-cli-0.3.
|
|
45
|
-
its SHA-256 to `artifacts/package/skein-code-cli-0.3.
|
|
44
|
+
The latest verified package is `skein-code-cli-0.3.10.tgz`. The verifier writes
|
|
45
|
+
its SHA-256 to `artifacts/package/skein-code-cli-0.3.10.tgz.sha256`, and CI
|
|
46
46
|
retains the checksum beside the package metadata. The checksum is deliberately
|
|
47
47
|
not copied into this packaged document because doing so would change the
|
|
48
48
|
archive it describes.
|
|
@@ -50,7 +50,7 @@ archive it describes.
|
|
|
50
50
|
The final verification included a fresh install and real PTY interaction for
|
|
51
51
|
all three executable aliases, `/about`, a permission prompt, denial, and clean
|
|
52
52
|
Ctrl+C exit. PTY coverage included 20, 24 ASCII, 40, 80, 120 columns and a
|
|
53
|
-
40x10 short-height case. The current
|
|
53
|
+
40x10 short-height case. The current 40-file, 403-test suite passes the full check.
|
|
54
54
|
|
|
55
55
|
## Recommended Order
|
|
56
56
|
|
|
@@ -78,10 +78,11 @@ Implementation notes:
|
|
|
78
78
|
- `npm run release:verify` reproduces the package from source, installs it into
|
|
79
79
|
an isolated prefix, rejects packaged local state, and exercises `skein`,
|
|
80
80
|
`mosaic`, and `mosaic-code`.
|
|
81
|
-
- The `main` branch rule requires the strict `check` status. Version 0.3.
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
81
|
+
- The `main` branch rule requires the strict `check` status. Version 0.3.10
|
|
82
|
+
adds durable Task Contracts for complex executable requests, binds acceptance
|
|
83
|
+
to successful audit evidence and current verification, and gives tool
|
|
84
|
+
failures stable classes, bounded retry budgets, repair hints, and identical-
|
|
85
|
+
call circuit breaking. Short requests keep the smaller tool surface.
|
|
85
86
|
Its tag, GitHub verification, and npm publication use the same source commit.
|
|
86
87
|
|
|
87
88
|
### P1: Skein Storage Namespace And Migration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skein-code/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "A context-first, model-agnostic coding agent with an auditable terminal workspace.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
},
|
|
17
17
|
"skein": {
|
|
18
18
|
"releaseNotes": [
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
19
|
+
"Complex executable requests now use a durable Task Contract with evidence-bound acceptance criteria",
|
|
20
|
+
"Completion stays unverified while required acceptance or final verification remains unresolved",
|
|
21
|
+
"Structured tool failure receipts add concise repair hints, retry budgets, cancellation handling, and identical-call circuit breaking"
|
|
22
22
|
]
|
|
23
23
|
},
|
|
24
24
|
"bin": {
|