anyray-connect 0.11.206 → 0.11.208
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/index.js +269 -264
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -290,11 +290,18 @@ line to the registry. Nothing in the CLI orchestrator changes.
|
|
|
290
290
|
|
|
291
291
|
## Develop
|
|
292
292
|
|
|
293
|
+
Claude Code's experimental `hookPolicies.greenCollapse` and `hookPolicies.rereadStub` are
|
|
294
|
+
independent, default-off preferences in the existing Connect profile. They emit recoverable
|
|
295
|
+
source trims only when the local MCP retrieval lane is available. Configuration and the
|
|
296
|
+
metadata counters exposed by `doctor --json` / `status --json` are documented in the
|
|
297
|
+
[Connect reference](../docs/docs/tools/connect-reference.md#claude-code-source-trims).
|
|
298
|
+
The [paired benchmark protocol](./HOOK-POLICY-BENCH.md) gates any default change.
|
|
299
|
+
|
|
293
300
|
```bash
|
|
294
301
|
# From the monorepo root; Connect's build embeds the sibling VS Code extension.
|
|
295
302
|
corepack pnpm install
|
|
296
303
|
cd connect
|
|
297
304
|
npm run dev -- --dry-run # run from source
|
|
298
|
-
npm test # node --test
|
|
305
|
+
npm test # node --test plus isolated guard mutations
|
|
299
306
|
npm run build # build/check bundled VSIX, then tsc → dist/
|
|
300
307
|
```
|