@skein-code/cli 0.3.20 → 0.3.21

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.
@@ -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.19`.
12
+ - Current repository version: `0.3.21`.
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.19.tgz`. The verifier writes
45
- its SHA-256 to `artifacts/package/skein-code-cli-0.3.19.tgz.sha256`, and CI
44
+ The latest verified package is `skein-code-cli-0.3.21.tgz`. The verifier writes
45
+ its SHA-256 to `artifacts/package/skein-code-cli-0.3.21.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.
@@ -54,7 +54,7 @@ short-height case. The current full-suite count is recorded from the latest
54
54
 
55
55
  ## Recommended Order
56
56
 
57
- ### P0-C: Local Context Engine v2 foundations
57
+ ### P0-C: Local Context Engine v2 foundations (complete in 0.3.21)
58
58
 
59
59
  Version `0.3.19` moves the persisted local index to schema v3 and records
60
60
  TypeScript compiler AST definitions, calls, and relative import facts beside
@@ -76,9 +76,19 @@ expanded run failed its preselected useful-token threshold at `0.348`; the
76
76
  implementation reached `0.729` while Recall@5/10/20 and MRR remained `1.0`,
77
77
  stale-hit rate stayed `0`, warm p95 was below 10 ms, and incremental indexing
78
78
  reused every fixture file. Git-recency is now a bounded, isolated tie-break
79
- with exact HEAD-bound cache invalidation and non-Git degradation. Diagnostics
80
- ranking, broader language AST adapters, and production-scale calibration remain
81
- follow-up slices.
79
+ with exact HEAD-bound cache invalidation and non-Git degradation. Version
80
+ `0.3.21` completes the milestone with current-run diagnostics ranking, Python
81
+ absolute/relative module adjacency, and explicit diversity-packing coverage.
82
+ Diagnostics require real nonzero, non-truncated process output; they expire on
83
+ success or a new run, are never persisted, and cannot create a zero-relevance
84
+ hit. Python and SQL intentionally retain bounded offline syntax adapters rather
85
+ than claiming compiler-equivalent AST coverage.
86
+
87
+ An isolated full Skein corpus calibration covered 206 files and 2,457 chunks:
88
+ cold indexing took 558.826 ms, an unchanged incremental pass reused all 206
89
+ files in 54.508 ms, and five representative queries took 77.205–88.359 ms with
90
+ the intended module ranked first. This is a reproducible scale calibration for
91
+ the repository, not a universal latency claim for every production workspace.
82
92
 
83
93
  ### P0-E: Token Economy measurement and bounded schema disclosure
84
94
 
@@ -245,8 +255,9 @@ Implementation progress:
245
255
  - Size/mtime/ctime reconciliation closes the direct-new-query zero-hit window;
246
256
  repeated empty or unchanged searches stop through the recovery circuit.
247
257
  - The v2 fixture is an enforced regression test, including a graph-only import
248
- neighbor and a no-stale-hit gate. Remaining work is git-recency/diagnostics
249
- signals, broader language AST adapters, and production-scale calibration.
258
+ neighbor and a no-stale-hit gate. Git recency, current-run diagnostics,
259
+ Python module adjacency, diversity packing, and repository-scale calibration
260
+ complete the P0-C acceptance scope in `0.3.21`.
250
261
 
251
262
  ### P1: Multi-Agent Scheduler And Team UX
252
263
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skein-code/cli",
3
- "version": "0.3.20",
3
+ "version": "0.3.21",
4
4
  "description": "A context-first, model-agnostic coding agent with an auditable terminal workspace.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -16,6 +16,10 @@
16
16
  },
17
17
  "skein": {
18
18
  "releaseNotes": [
19
+ "Failed configured verification output yields bounded current-run diagnostic ranking without persisting paths",
20
+ "Diagnostic hints cannot create zero-relevance hits and are cleared on success or the next agent run",
21
+ "Python absolute and relative module imports now contribute deterministic offline graph adjacency",
22
+ "Context provenance exposes the diagnostic score alongside graph and isolated Git recency signals",
19
23
  "Local index v3 records TypeScript AST definitions, calls, and relative import adjacency for graph-assisted retrieval",
20
24
  "Context hits expose generation, content hash, matched terms, and bm25/path/symbol/phrase/graph score provenance",
21
25
  "Context benchmark v2 locks multilingual recall, MRR, useful-token, stale-hit, incremental-index, and warm-latency gates",