@adia-ai/a2ui-mcp 0.7.26 → 0.7.27

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
@@ -1,4 +1,9 @@
1
1
  # Changelog — @adia-ai/a2ui-mcp
2
+ ## [0.7.27] — 2026-07-12
3
+
4
+ ### Fixed
5
+ - **`TOOLS.md` synced to the live tool surface (30 tools).** The "single source of truth" documented 24 tools and parameters that no longer exist; regenerated against the registered surface.
6
+ - **`report_issue` storage documentation follows the storage repoint** to `qa/findings/issues/` (see `@adia-ai/a2ui-compose` 0.7.27 — the writer lives there).
2
7
 
3
8
  ## [0.7.26] — 2026-07-04
4
9
 
@@ -1102,8 +1107,8 @@ multi-turn surface, plus extends `compose_from_chunks` to mint a `state_id`
1102
1107
  for refinement chains.
1103
1108
 
1104
1109
  Spec: [`.claude/docs/specs/genui-multiturn-architecture.md`](../../../.claude/docs/specs/genui-multiturn-architecture.md) (Active v0.1.0).
1105
- Plan: [`.claude/docs/plans/genui-multiturn-rollout-2026-04-28.md`](../../../.claude/docs/plans/genui-multiturn-rollout-2026-04-28.md) (Phase A scoped).
1106
- ADR: [`0008-multiturn-genui-architecture.md`](../../../.brain/adrs/0008-multiturn-genui-architecture.md).
1110
+ Plan: `.claude/docs/plans/genui-multiturn-rollout-2026-04-28.md` (Phase A scoped).
1111
+ ADR: `0008-multiturn-genui-architecture.md`.
1107
1112
 
1108
1113
  ### Added (MCP tools)
1109
1114
 
@@ -1340,7 +1345,7 @@ before HTML is materialized.
1340
1345
  ### Convention reference
1341
1346
 
1342
1347
  - Spec: [`.claude/docs/specs/genui-chunk-marker.md`](../../../.claude/docs/specs/genui-chunk-marker.md).
1343
- - Plan: [`.claude/docs/plans/training-pipeline-chunk-harvest-2026-04-27.md`](../../../.claude/docs/plans/training-pipeline-chunk-harvest-2026-04-27.md).
1348
+ - Plan: `.claude/docs/plans/training-pipeline-chunk-harvest-2026-04-27.md`.
1344
1349
 
1345
1350
  ### Other
1346
1351
 
package/README.md CHANGED
@@ -76,7 +76,7 @@ export GEMINI_API_KEY=AIza…
76
76
 
77
77
  ## Tools
78
78
 
79
- The server registers **24 tools**. Argument schemas via Zod; shape is stable across the v0.3.x line.
79
+ The server registers **30 tools**. Argument schemas via Zod; shape is stable across the v0.3.x line.
80
80
 
81
81
  **See [`TOOLS.md`](./TOOLS.md) for the full reference** — tool names, descriptions, grouping, and source pointers. Quick map:
82
82
 
@@ -94,7 +94,7 @@ The server registers **24 tools**. Argument schemas via Zod; shape is stable acr
94
94
 
95
95
  ```
96
96
  gen-ui-mcp/
97
- ├── server.js MCP bootstrap — registers all 21 tools inline
97
+ ├── server.js MCP bootstrap — registers 4 tools inline; the rest live in tools/ modules
98
98
  ├── scripts/ Standalone runners (smoke tests, eval diffs, visual validate)
99
99
  │ ├── generate.mjs CLI: `node scripts/generate.mjs "pricing page"`
100
100
  │ ├── eval-diff.mjs diff held-out run vs baseline
@@ -110,7 +110,7 @@ gen-ui-mcp/
110
110
  │ ├── test-a2ui.mjs A2UI message validator unit tests
111
111
  │ ├── test-evals.mjs evals harness wrapper
112
112
  │ └── visual-validate.mjs Playwright render + Vision-LLM critique
113
- ├── tools/ (reserved; tool code currently inlined in server.js)
113
+ ├── tools/ (tool modules: synthesis · validation · feedback · corpus · zettel · discovery · refine)
114
114
  └── personas/ persona presets (vocabulary + style hints for adapters)
115
115
  ```
116
116
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-mcp",
3
- "version": "0.7.26",
3
+ "version": "0.7.27",
4
4
  "description": "AdiaUI A2UI MCP server. Exposes the compose engine over MCP with an engine selector for monolithic + zettel strategies.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -362,7 +362,7 @@ The tool returns BOTH paths in its response: \`path\` (.json) and \`markdown_pat
362
362
  \u2022 Trace report: \`{markdown_path}\` \u2190 human-readable, scan this first
363
363
  \u2022 Raw JSON: \`{path}\` \u2190 machine-readable
364
364
 
365
- Issue files land under \`.brain/audit-history/issues/\` (immutable; resolution lands in a sidecar file). Severity taxonomy matches the project's ui-audit-coherence vocabulary: blocker = contract violation; drift = quality erosion; nit = cosmetic.`,
365
+ Issue files land under \`qa/findings/issues/\` (immutable; resolution lands in a sidecar file). Severity taxonomy matches the project's ui-audit-coherence vocabulary: blocker = contract violation; drift = quality erosion; nit = cosmetic.`,
366
366
  {
367
367
  type: z.enum(["bug", "training-gap", "protocol-gap", "ux-feedback"]).describe("Issue category"),
368
368
  severity: z.enum(["blocker", "drift", "nit"]).describe("Severity tier"),