@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 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
@@ -3,6 +3,8 @@
3
3
  "voiden-advanced-auth": "2.0.7",
4
4
  "voiden-faker": "1.1.0",
5
5
  "voiden-graphql": "1.0.6",
6
+ "voiden-mcp-client": "0.1.0",
7
+ "voiden-mcp-tool": "0.1.0",
6
8
  "voiden-rest-api": "1.4.8",
7
9
  "voiden-scripting": "1.1.6",
8
10
  "voiden-sockets-grpcs": "1.1.6"