@skein-code/cli 0.3.19 → 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 +7 -4
- package/dist/cli.js +520 -377
- package/dist/cli.js.map +1 -1
- package/docs/NEXT_STEPS.md +4 -2
- package/package.json +3 -2
package/docs/NEXT_STEPS.md
CHANGED
|
@@ -75,8 +75,10 @@ SQL, CJK, Markdown, and mixed-language cases across ten files. The first
|
|
|
75
75
|
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
|
-
reused every fixture file. Git-recency
|
|
79
|
-
|
|
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.
|
|
80
82
|
|
|
81
83
|
### P0-E: Token Economy measurement and bounded schema disclosure
|
|
82
84
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skein-code/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.20",
|
|
4
4
|
"description": "A context-first, model-agnostic coding agent with an auditable terminal workspace.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"Prompt and timeline diagnostics expose the repository-first reuse ladder without blocking legitimate writes",
|
|
37
37
|
"Known tool changes refresh only their affected local-index paths before the next model turn",
|
|
38
38
|
"File ctime closes same-size and restored-mtime zero-hit freshness gaps without full-content scans",
|
|
39
|
-
"Repeated empty or unchanged search calls stop through the existing recovery circuit"
|
|
39
|
+
"Repeated empty or unchanged search calls stop through the existing recovery circuit",
|
|
40
|
+
"Git recency is an isolated, bounded tie-break with exact HEAD-bound cache invalidation and non-Git degradation"
|
|
40
41
|
]
|
|
41
42
|
},
|
|
42
43
|
"bin": {
|