@skein-code/cli 0.3.19 → 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.
- package/README.md +13 -6
- package/dist/cli.js +640 -389
- package/dist/cli.js.map +1 -1
- package/docs/NEXT_STEPS.md +21 -8
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -94,7 +94,7 @@ To build, verify, and install a local package artifact from this checkout:
|
|
|
94
94
|
|
|
95
95
|
```bash
|
|
96
96
|
npm run verify:package -- --output-dir artifacts/package
|
|
97
|
-
npm install -g ./artifacts/package/skein-code-cli-0.3.
|
|
97
|
+
npm install -g ./artifacts/package/skein-code-cli-0.3.21.tgz
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
To install the published package from npm:
|
|
@@ -449,11 +449,18 @@ command instead of allowing a retrieval change to lower the quality bar.
|
|
|
449
449
|
The persisted local index now stores content-addressed TypeScript compiler AST
|
|
450
450
|
facts for definitions, calls, and relative imports. Matching definitions can
|
|
451
451
|
expand a query and import/call neighbors may receive a bounded graph score;
|
|
452
|
-
Python and SQL
|
|
453
|
-
|
|
454
|
-
and
|
|
455
|
-
|
|
456
|
-
|
|
452
|
+
Python module imports and SQL definitions/references use explicit syntax-aware
|
|
453
|
+
offline fallbacks. Git recency is collected through a bounded, isolated
|
|
454
|
+
read-only history scan and contributes only a small tie-break score; missing
|
|
455
|
+
Git, timeouts, output limits, and non-repository workspaces degrade to
|
|
456
|
+
lexical/graph retrieval. A failed configured verification may add a bounded
|
|
457
|
+
diagnostic tie-break for paths parsed from non-truncated process output. Those
|
|
458
|
+
hints are current-run only, clear on success or the next run, and cannot create
|
|
459
|
+
a zero-relevance hit. Search and context JSON expose the index generation, file
|
|
460
|
+
hash, matched/expanded terms, and bm25/path/symbol/phrase/graph/recency/
|
|
461
|
+
diagnostic breakdown without persisting the query, diagnostic path, or another
|
|
462
|
+
copy of source. Index schema v2 artifacts rebuild as v3 rather than being
|
|
463
|
+
trusted after the parser contract changes.
|
|
457
464
|
|
|
458
465
|
The included fixture is a deterministic regression gate, not evidence for
|
|
459
466
|
performance on every production repository. `--fresh-index` deletes and
|