@skein-code/cli 0.3.15 → 0.3.17
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 +6 -4
- package/dist/cli.js +406 -144
- package/dist/cli.js.map +1 -1
- package/docs/ARCHITECTURE.md +13 -1
- package/docs/NEXT_STEPS.md +21 -9
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -45,10 +45,12 @@ inspectable index for code retrieval and no retrieval service dependency.
|
|
|
45
45
|
enforcement, changed-file telemetry, and persisted tool results.
|
|
46
46
|
- **Repository reuse guard:** the first substantive implementation addition gets
|
|
47
47
|
a warning-only, content-free receipt of current helper candidates and read
|
|
48
|
-
evidence. After a successful TS/JS write, Skein
|
|
48
|
+
evidence. After a successful TS/JS write, Skein compares newly added or
|
|
49
49
|
significantly expanded functions with the pre-write index generation using
|
|
50
|
-
normalized fingerprints.
|
|
51
|
-
|
|
50
|
+
normalized fingerprints. Calibrated Type-1/2 matches block completion until
|
|
51
|
+
reuse, removal, or exact audited suppression; Type-3 remains warning-only.
|
|
52
|
+
Docs, config, fixtures, generated files, deletions, small functions, and
|
|
53
|
+
ordinary local edits stay quiet.
|
|
52
54
|
- **Bounded tool context:** large tool results cannot crowd the task out of the
|
|
53
55
|
model window. Skein keeps a token-budgeted head/tail receipt and, when the
|
|
54
56
|
producer captured the complete result, retains a redacted session-scoped
|
|
@@ -92,7 +94,7 @@ To build, verify, and install a local package artifact from this checkout:
|
|
|
92
94
|
|
|
93
95
|
```bash
|
|
94
96
|
npm run verify:package -- --output-dir artifacts/package
|
|
95
|
-
npm install -g ./artifacts/package/skein-code-cli-0.3.
|
|
97
|
+
npm install -g ./artifacts/package/skein-code-cli-0.3.16.tgz
|
|
96
98
|
```
|
|
97
99
|
|
|
98
100
|
To install the published package from npm:
|