@skein-code/cli 0.3.14 → 0.3.15
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 +609 -100
- package/dist/cli.js.map +1 -1
- package/docs/ARCHITECTURE.md +19 -5
- package/docs/NEXT_STEPS.md +19 -16
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -43,9 +43,12 @@ inspectable index for code retrieval and no retrieval service dependency.
|
|
|
43
43
|
source spans, and rebuild it explicitly when needed.
|
|
44
44
|
- **Visible trust:** per-category permissions, deny rules, hooks, workspace path
|
|
45
45
|
enforcement, changed-file telemetry, and persisted tool results.
|
|
46
|
-
- **Repository reuse guard:** the first substantive implementation addition gets
|
|
47
|
-
content-free receipt of current helper candidates and read
|
|
48
|
-
|
|
46
|
+
- **Repository reuse guard:** the first substantive implementation addition gets
|
|
47
|
+
a warning-only, content-free receipt of current helper candidates and read
|
|
48
|
+
evidence. After a successful TS/JS write, Skein also compares newly added or
|
|
49
|
+
significantly expanded functions with the pre-write index generation using
|
|
50
|
+
normalized fingerprints. Docs, config, fixtures, generated files, deletions,
|
|
51
|
+
small functions, and ordinary local edits stay quiet.
|
|
49
52
|
- **Bounded tool context:** large tool results cannot crowd the task out of the
|
|
50
53
|
model window. Skein keeps a token-budgeted head/tail receipt and, when the
|
|
51
54
|
producer captured the complete result, retains a redacted session-scoped
|
|
@@ -89,7 +92,7 @@ To build, verify, and install a local package artifact from this checkout:
|
|
|
89
92
|
|
|
90
93
|
```bash
|
|
91
94
|
npm run verify:package -- --output-dir artifacts/package
|
|
92
|
-
npm install -g ./artifacts/package/skein-code-cli-0.3.
|
|
95
|
+
npm install -g ./artifacts/package/skein-code-cli-0.3.15.tgz
|
|
93
96
|
```
|
|
94
97
|
|
|
95
98
|
To install the published package from npm:
|