@skein-code/cli 0.3.18 → 0.3.20

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 CHANGED
@@ -441,10 +441,27 @@ npm run benchmark:context -- \
441
441
  ```
442
442
 
443
443
  It reports Recall@5/10/20, MRR, useful-token ratio, stale-hit rate, and cold,
444
- incremental, and warm-query latency. The included fixture only validates the
445
- metric pipeline; it is not evidence for performance on a production repository.
446
- `--fresh-index` deletes and rebuilds that workspace's local index, so use it only
447
- where rebuilding the index is intended.
444
+ incremental, and warm-query latency. `context-benchmark-v2` covers TypeScript,
445
+ Python, SQL, CJK, Markdown, mixed-language queries, and a TypeScript import
446
+ neighbor that has no direct lexical match. Its checked-in thresholds fail the
447
+ command instead of allowing a retrieval change to lower the quality bar.
448
+
449
+ The persisted local index now stores content-addressed TypeScript compiler AST
450
+ facts for definitions, calls, and relative imports. Matching definitions can
451
+ expand a query and import/call neighbors may receive a bounded graph score;
452
+ Python and SQL continue to use explicit syntax-aware fallbacks. Git recency is
453
+ collected through a bounded, isolated read-only history scan and contributes
454
+ only a small tie-break score; missing Git, timeouts, output limits, and
455
+ non-repository workspaces degrade to lexical/graph retrieval. Search and
456
+ context JSON expose the index generation, file hash, matched/expanded terms,
457
+ and bm25/path/symbol/phrase/graph/recency breakdown without persisting the
458
+ query or an additional copy of source. Index schema v2 artifacts rebuild as v3
459
+ rather than being trusted after the parser contract changes.
460
+
461
+ The included fixture is a deterministic regression gate, not evidence for
462
+ performance on every production repository. `--fresh-index` deletes and
463
+ rebuilds that workspace's local index, so use it only where rebuilding the
464
+ index is intended.
448
465
 
449
466
  ## Safety model
450
467