@skein-code/cli 0.3.20 → 0.3.22
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 +17 -11
- package/dist/cli.js +263 -85
- package/dist/cli.js.map +1 -1
- package/docs/NEXT_STEPS.md +29 -9
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -57,8 +57,10 @@ inspectable index for code retrieval and no retrieval service dependency.
|
|
|
57
57
|
artifact for bounded readback.
|
|
58
58
|
- **Measurable token economy:** every model request records a privacy-safe
|
|
59
59
|
receipt for stable, dynamic, history, retrieval, tool-result, and tool-schema
|
|
60
|
-
estimates, alongside actual provider usage when available.
|
|
61
|
-
|
|
60
|
+
estimates, alongside actual provider usage when available. OpenAI, Anthropic,
|
|
61
|
+
and Gemini cache/reasoning counters are normalized into session totals and
|
|
62
|
+
structured events when the provider reports them. Receipts retain only counts
|
|
63
|
+
and runtime decisions, never prompt or source content.
|
|
62
64
|
- **Reversible work:** Skein snapshots affected files before mutation without
|
|
63
65
|
touching your Git history.
|
|
64
66
|
- **Resumable by default:** conversations, tasks, usage, and changed files live
|
|
@@ -94,7 +96,7 @@ To build, verify, and install a local package artifact from this checkout:
|
|
|
94
96
|
|
|
95
97
|
```bash
|
|
96
98
|
npm run verify:package -- --output-dir artifacts/package
|
|
97
|
-
npm install -g ./artifacts/package/skein-code-cli-0.3.
|
|
99
|
+
npm install -g ./artifacts/package/skein-code-cli-0.3.22.tgz
|
|
98
100
|
```
|
|
99
101
|
|
|
100
102
|
To install the published package from npm:
|
|
@@ -449,14 +451,18 @@ command instead of allowing a retrieval change to lower the quality bar.
|
|
|
449
451
|
The persisted local index now stores content-addressed TypeScript compiler AST
|
|
450
452
|
facts for definitions, calls, and relative imports. Matching definitions can
|
|
451
453
|
expand a query and import/call neighbors may receive a bounded graph score;
|
|
452
|
-
Python and SQL
|
|
453
|
-
collected through a bounded, isolated
|
|
454
|
-
only a small tie-break score; missing
|
|
455
|
-
non-repository workspaces degrade to
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
454
|
+
Python module imports and SQL definitions/references use explicit syntax-aware
|
|
455
|
+
offline fallbacks. Git recency is collected through a bounded, isolated
|
|
456
|
+
read-only history scan and contributes only a small tie-break score; missing
|
|
457
|
+
Git, timeouts, output limits, and non-repository workspaces degrade to
|
|
458
|
+
lexical/graph retrieval. A failed configured verification may add a bounded
|
|
459
|
+
diagnostic tie-break for paths parsed from non-truncated process output. Those
|
|
460
|
+
hints are current-run only, clear on success or the next run, and cannot create
|
|
461
|
+
a zero-relevance hit. Search and context JSON expose the index generation, file
|
|
462
|
+
hash, matched/expanded terms, and bm25/path/symbol/phrase/graph/recency/
|
|
463
|
+
diagnostic breakdown without persisting the query, diagnostic path, or another
|
|
464
|
+
copy of source. Index schema v2 artifacts rebuild as v3 rather than being
|
|
465
|
+
trusted after the parser contract changes.
|
|
460
466
|
|
|
461
467
|
The included fixture is a deterministic regression gate, not evidence for
|
|
462
468
|
performance on every production repository. `--fresh-index` deletes and
|