@skein-code/cli 0.3.22 → 0.3.24
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 +8 -1
- package/dist/cli.js +513 -120
- package/dist/cli.js.map +1 -1
- package/docs/ARCHITECTURE.md +12 -7
- package/docs/NEXT_STEPS.md +37 -15
- package/docs/PRODUCT_BENCHMARK.md +4 -3
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -96,7 +96,7 @@ To build, verify, and install a local package artifact from this checkout:
|
|
|
96
96
|
|
|
97
97
|
```bash
|
|
98
98
|
npm run verify:package -- --output-dir artifacts/package
|
|
99
|
-
npm install -g ./artifacts/package/skein-code-cli-0.3.
|
|
99
|
+
npm install -g ./artifacts/package/skein-code-cli-0.3.24.tgz
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
To install the published package from npm:
|
|
@@ -214,6 +214,13 @@ only to the originating session, expire after seven days, and are removed when
|
|
|
214
214
|
that session is deleted. A receipt marked `source-truncated` is honest about
|
|
215
215
|
bytes already omitted by the producing tool; those bytes cannot be recovered.
|
|
216
216
|
|
|
217
|
+
Normal chat runs discover MCP servers lazily. Startup exposes only a compact
|
|
218
|
+
`mcp_activate` catalog of configured servers; selecting one connects that
|
|
219
|
+
server, runs remote discovery, and loads at most eight request-relevant schemas
|
|
220
|
+
into the live tool registry. All activated MCP tools remain `network`
|
|
221
|
+
operations. The explicit `skein mcp status` diagnostic still connects
|
|
222
|
+
configured servers eagerly.
|
|
223
|
+
|
|
217
224
|
At 96 columns and wider, a fresh session uses a two-column welcome surface. The
|
|
218
225
|
left side keeps Skein's brand, workspace path, and next actions close to the
|
|
219
226
|
composer; the right side reports the actual model, mode, local index file/chunk
|