@skein-code/cli 0.3.26 → 0.3.27
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 +22 -7
- package/dist/cli.js +991 -117
- package/dist/cli.js.map +1 -1
- package/docs/ARCHITECTURE.md +34 -18
- package/docs/NEXT_STEPS.md +33 -23
- package/docs/PRODUCT_BENCHMARK.md +5 -5
- package/examples/config.yaml +30 -0
- 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.27.tgz
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
To install the published package from npm:
|
|
@@ -214,12 +214,27 @@ 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
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
217
|
+
Normal chat runs discover MCP servers lazily through `mcp_search → mcp_inspect
|
|
218
|
+
→ mcp_activate`. Search and inspection use only redacted local manifests and
|
|
219
|
+
perform no transport I/O. Activation is rejected until the user confirms the
|
|
220
|
+
exact workspace-bound manifest fingerprint with `skein mcp trust <server>` or
|
|
221
|
+
`/mcp trust <server> --confirm`; the model cannot grant trust. A trusted
|
|
222
|
+
activation connects one server, runs remote discovery, and loads at most eight
|
|
223
|
+
request-relevant schemas into the live registry. `skein mcp status` is now a
|
|
224
|
+
no-connect diagnostic; only explicitly `required` servers may connect and block
|
|
225
|
+
during startup.
|
|
226
|
+
|
|
227
|
+
Manifests declare source, version, tools, permission categories, network,
|
|
228
|
+
command and path scopes, sensitive fields, background/process-tree effects,
|
|
229
|
+
and completion-evidence support. Legacy manifests without declared tools remain
|
|
230
|
+
inspectable but cannot be trusted or activated. MCP calls always retain the local `network`
|
|
231
|
+
boundary, and server annotations cannot lower declared permissions. When a
|
|
232
|
+
manifest names tools, undeclared schemas injected by the server are skipped.
|
|
233
|
+
Sensitive arguments are redacted from text, TUI, JSON, and approval events.
|
|
234
|
+
Remote mutations without a Skein-bound checkpoint plus changed-file, artifact,
|
|
235
|
+
and completion receipts remain explicitly `unresolved`. Use `skein mcp disable`
|
|
236
|
+
or `skein mcp revoke --yes` (and the matching `/mcp` commands) to unload schemas
|
|
237
|
+
and persist the decision.
|
|
223
238
|
|
|
224
239
|
At 96 columns and wider, a fresh session uses a two-column welcome surface. The
|
|
225
240
|
left side keeps Skein's brand, workspace path, and next actions close to the
|