ghc-proxy 0.5.6 → 0.5.8
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 +17 -0
- package/dist/main.mjs +400 -69
- package/dist/main.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -489,3 +489,20 @@ bun run matrix:live --stateful-only --json --model=gpt-5.2-codex
|
|
|
489
489
|
> - `--stateful-only`: run follow-up/resource probes such as `previous_response_id`, `input_tokens`, and `input_items`
|
|
490
490
|
> - `--all-responses-models`: scan every model that advertises `/responses`
|
|
491
491
|
> - `--model=<id>`: pin the Responses scan to one specific model
|
|
492
|
+
|
|
493
|
+
### Tool Support Probe
|
|
494
|
+
|
|
495
|
+
Tests which server-side tool types (bash, text_editor, web_search, memory, etc.) each Copilot model actually accepts. Useful for tracking backend changes over time.
|
|
496
|
+
|
|
497
|
+
```bash
|
|
498
|
+
bun scripts/probe-all-copilot-tools.ts # human-readable table
|
|
499
|
+
bun scripts/probe-all-copilot-tools.ts --json # JSON snapshot to stdout
|
|
500
|
+
bun scripts/probe-all-copilot-tools.ts --model=claude-opus-4.6 # single model
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
The JSON output is designed for weekly diffing — `generatedAt` is the only volatile field:
|
|
504
|
+
|
|
505
|
+
```bash
|
|
506
|
+
# Compare two weekly snapshots
|
|
507
|
+
diff <(jq -S 'del(.generatedAt)' week1.json) <(jq -S 'del(.generatedAt)' week2.json)
|
|
508
|
+
```
|