@basein/runner 0.2.4 → 0.2.6
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 -6
- package/dist/bin/bir-hooks.d.ts +6 -5
- package/dist/bin/bir-hooks.js +7 -6
- package/dist/bin/bir.js +4 -4
- package/dist/control/server.js +13 -0
- package/dist/replay/controller.d.ts +1 -1
- package/dist/replay/controller.js +1 -1
- package/dist/replay/tool-error.d.ts +10 -9
- package/dist/replay/tool-error.js +13 -21
- package/docs/calculatedReplay.md +3 -3
- package/docs/calculatedReplayGuide.md +5 -5
- package/docs/mcpmark.md +752 -752
- package/docs/my-first-sample.md +2 -2
- package/package.json +1 -1
package/docs/my-first-sample.md
CHANGED
|
@@ -357,7 +357,7 @@ Leave this running in its own terminal, **in the run folder**:
|
|
|
357
357
|
|
|
358
358
|
```bash
|
|
359
359
|
export BIR_AUTH_URL=https://api.your-domain.com
|
|
360
|
-
|
|
360
|
+
unset BIR_REPLAY # replay is on by default; BIR_REPLAY=0 turns it off
|
|
361
361
|
export BIR_REPLAY_ALLOW_SERVERS=postgres # servers allowed to run unattended
|
|
362
362
|
bir-hooks 2>&1 | tee -a bir-hooks.log
|
|
363
363
|
```
|
|
@@ -539,7 +539,7 @@ real work for zero tokens, and the saving is real and positive.**
|
|
|
539
539
|
- **[quickstart.md](quickstart.md)** — setting up a fresh machine to record from
|
|
540
540
|
your *own* work, not just this benchmark.
|
|
541
541
|
|
|
542
|
-
> **Turning replay off** is one line: `
|
|
542
|
+
> **Turning replay off** is one line: `export BIR_REPLAY=0`. The system is then
|
|
543
543
|
> exactly a recorder again — it recognises a repeated prompt and declines to
|
|
544
544
|
> record it twice, and the model does the work. Nothing is skipped, nothing is
|
|
545
545
|
> risked.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basein/runner",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "A recording MCP proxy: sits between any MCP client and its MCP servers, executes each call on the client's behalf, and records the run as a reusable BaseIn scenario.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|