@voiden/runner 2.3.0-beta.1 → 2.3.0-beta.3
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/CHANGELOG.md +26 -0
- package/bundled-runners/versions.json +2 -0
- package/bundled-runners/voiden-faker-runner.js +6 -13
- package/bundled-runners/voiden-mcp-client-runner.js +1 -0
- package/bundled-runners/voiden-mcp-tool-runner.js +143 -0
- package/dist/headlessContext.d.ts.map +1 -1
- package/dist/headlessContext.js +34 -0
- package/dist/headlessContext.js.map +1 -1
- package/dist/index.js +249 -0
- package/dist/index.js.map +1 -1
- package/dist/lib.d.ts +5 -0
- package/dist/lib.d.ts.map +1 -1
- package/dist/lib.js +2 -0
- package/dist/lib.js.map +1 -1
- package/dist/mcpServing.d.ts +39 -0
- package/dist/mcpServing.d.ts.map +1 -0
- package/dist/mcpServing.js +154 -0
- package/dist/mcpServing.js.map +1 -0
- package/dist/mcpToolCapability.d.ts +120 -0
- package/dist/mcpToolCapability.d.ts.map +1 -0
- package/dist/mcpToolCapability.js +87 -0
- package/dist/mcpToolCapability.js.map +1 -0
- package/dist/plugins/loader.d.ts.map +1 -1
- package/dist/plugins/loader.js +4 -0
- package/dist/plugins/loader.js.map +1 -1
- package/dist/runner.d.ts.map +1 -1
- package/dist/runner.js +7 -2
- package/dist/runner.js.map +1 -1
- package/dist/toolRegistry.d.ts +93 -0
- package/dist/toolRegistry.d.ts.map +1 -0
- package/dist/toolRegistry.js +38 -0
- package/dist/toolRegistry.js.map +1 -0
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
3
3
|
All notable changes to `@voiden/runner` are documented here. This package is
|
|
4
4
|
versioned and released independently of the Voiden desktop app.
|
|
5
5
|
|
|
6
|
+
## v2.3.0-beta.3 - 2026-08-06
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- A verify entry (or a tool's own home section) targeting a file with no
|
|
10
|
+
`request-separator` blocks — i.e. a file that's just one request, with no
|
|
11
|
+
real "sections" to disambiguate between — no longer requires its
|
|
12
|
+
`sectionLabel` to exactly match anything. Previously an unlabeled first
|
|
13
|
+
section's real label (`undefined`, from `parseVoidFileSections()`) never
|
|
14
|
+
matched a saved label like `"Request 1"`, so any tool verifying against
|
|
15
|
+
such a file was incorrectly excluded as `missing-section` even though the
|
|
16
|
+
target was unambiguous. `runVoidFile()`, and both the headless and
|
|
17
|
+
Electron-app tool-capability implementations, now treat a single-section
|
|
18
|
+
file as always resolving to its one request regardless of what
|
|
19
|
+
`sectionLabel` (or none) was given.
|
|
20
|
+
|
|
21
|
+
## v2.3.0-beta.2 - 2026-08-06
|
|
22
|
+
|
|
23
|
+
Published out of lockstep with the desktop app (still `2.3.0-beta.1`) — this
|
|
24
|
+
is an early test release of the `/tool` MCP-serving work below, ahead of the
|
|
25
|
+
next full app release.
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
- `voiden-runner tool list` / `voiden-runner tool verify` — discovers `/tool` blocks (the `voiden-mcp-tool` plugin) project-wide and runs their verification requests, reporting `verified`/`unverified`/`failing` per tool. `--cadence` filters which verify entries run; `--json` for machine-readable output; `--write` (opt-in) records the last-computed status back into each `/tool` block. Structural problems (unbound/unresolved placeholders, a verify entry pointing at a missing section, duplicate tool names, a read-only tool on a mutating request) exclude a tool from the report entirely, reported distinctly from a verification failure.
|
|
29
|
+
- `voiden-runner mcp serve [path]` — serves the project as a live MCP server: the same `list_void_files`/`list_requests`/`run_request`/`write_result` tools `@voiden/mcp-server` exposes, plus declared `/tool` capabilities that pass verification. Defaults to stdio; `--http [--port <n>] [--host <addr>]` serves streamable-HTTP instead, bound to `127.0.0.1` only unless `--host` explicitly opts into wider exposure. `--check` prints served/withdrawn/degraded/excluded without starting a live server.
|
|
30
|
+
- New public exports (`discoverTools`, `validateTools`, `verifyTools`, `buildMcpServer`, `registerFixedTools`, `registerDynamicTools`, `planServedTools`, and their types) — the same functions `@voiden/mcp-server` now imports rather than maintaining its own copy of this logic.
|
|
31
|
+
|
|
6
32
|
## v2.2.0 - 2026-07-23
|
|
7
33
|
|
|
8
34
|
### Added
|