@skein-code/cli 0.3.8 → 0.3.9
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 +106 -34
- package/dist/cli.js.map +1 -1
- package/docs/NEXT_STEPS.md +11 -9
- 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.9`.
|
|
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).
|
|
@@ -19,8 +19,9 @@ one of the milestones below.
|
|
|
19
19
|
- Agent: provider-agnostic multi-turn runner for OpenAI, Anthropic, Gemini, and
|
|
20
20
|
OpenAI-compatible endpoints; built-in tools, permissions, checkpoints,
|
|
21
21
|
workflows, Skills, MCP, expert profiles, sessions, and memory are present.
|
|
22
|
-
- UI: real Ink/React terminal UI, not a browser prototype. Fresh
|
|
23
|
-
|
|
22
|
+
- UI: real Ink/React terminal UI, not a browser prototype. Fresh sessions use
|
|
23
|
+
a compact Skein identity; wide sessions add a grouped factual workspace rail;
|
|
24
|
+
all sizes support prompt
|
|
24
25
|
history, `@file` completion, command completion, multiline editing, queued
|
|
25
26
|
follow-ups, live context inspection, permission approval, themes, ASCII mode,
|
|
26
27
|
`NO_COLOR`, and narrow-height degradation.
|
|
@@ -40,8 +41,8 @@ npm audit --omit=dev
|
|
|
40
41
|
npm run release:verify -- --output-dir artifacts/package
|
|
41
42
|
```
|
|
42
43
|
|
|
43
|
-
The latest verified package is `skein-code-cli-0.3.
|
|
44
|
-
its SHA-256 to `artifacts/package/skein-code-cli-0.3.
|
|
44
|
+
The latest verified package is `skein-code-cli-0.3.9.tgz`. The verifier writes
|
|
45
|
+
its SHA-256 to `artifacts/package/skein-code-cli-0.3.9.tgz.sha256`, and CI
|
|
45
46
|
retains the checksum beside the package metadata. The checksum is deliberately
|
|
46
47
|
not copied into this packaged document because doing so would change the
|
|
47
48
|
archive it describes.
|
|
@@ -77,10 +78,11 @@ Implementation notes:
|
|
|
77
78
|
- `npm run release:verify` reproduces the package from source, installs it into
|
|
78
79
|
an isolated prefix, rejects packaged local state, and exercises `skein`,
|
|
79
80
|
`mosaic`, and `mosaic-code`.
|
|
80
|
-
- The `main` branch rule requires the strict `check` status. Version 0.3.
|
|
81
|
-
the
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
- The `main` branch rule requires the strict `check` status. Version 0.3.9
|
|
82
|
+
refines the real four-stage context handoff, compact Skein welcome, and
|
|
83
|
+
grouped workspace rail. The startup readiness gate, runtime completion
|
|
84
|
+
evidence, and conservative dynamic-shell mutation tracking remain enforced.
|
|
85
|
+
Its tag, GitHub verification, and npm publication use the same source commit.
|
|
84
86
|
|
|
85
87
|
### P1: Skein Storage Namespace And Migration
|
|
86
88
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skein-code/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
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
|
+
"First-run context preparation now shows the real inspect, build, persist, and verify stages",
|
|
20
|
+
"Fresh sessions add a compact Skein identity and grouped workspace rail without filling the terminal",
|
|
21
|
+
"Short and narrow terminals collapse the index handoff while preserving validation and recovery states"
|
|
22
22
|
]
|
|
23
23
|
},
|
|
24
24
|
"bin": {
|