@adia-ai/a2ui-mcp 0.7.25 → 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 +13 -3
- package/README.md +3 -3
- package/package.json +1 -1
- package/tools/synthesis.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
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).
|
|
7
|
+
|
|
8
|
+
## [0.7.26] — 2026-07-04
|
|
9
|
+
|
|
10
|
+
### Maintenance
|
|
11
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.26 work shipped in variant="outline" retired as the reach-for-secondary generation-time habit. See `packages/a2ui/compose/CHANGELOG.md#unreleased` for details.
|
|
2
12
|
|
|
3
13
|
## [0.7.25] — 2026-07-03
|
|
4
14
|
|
|
@@ -1097,8 +1107,8 @@ multi-turn surface, plus extends `compose_from_chunks` to mint a `state_id`
|
|
|
1097
1107
|
for refinement chains.
|
|
1098
1108
|
|
|
1099
1109
|
Spec: [`.claude/docs/specs/genui-multiturn-architecture.md`](../../../.claude/docs/specs/genui-multiturn-architecture.md) (Active v0.1.0).
|
|
1100
|
-
Plan:
|
|
1101
|
-
ADR:
|
|
1110
|
+
Plan: `.claude/docs/plans/genui-multiturn-rollout-2026-04-28.md` (Phase A scoped).
|
|
1111
|
+
ADR: `0008-multiturn-genui-architecture.md`.
|
|
1102
1112
|
|
|
1103
1113
|
### Added (MCP tools)
|
|
1104
1114
|
|
|
@@ -1335,7 +1345,7 @@ before HTML is materialized.
|
|
|
1335
1345
|
### Convention reference
|
|
1336
1346
|
|
|
1337
1347
|
- Spec: [`.claude/docs/specs/genui-chunk-marker.md`](../../../.claude/docs/specs/genui-chunk-marker.md).
|
|
1338
|
-
- Plan:
|
|
1348
|
+
- Plan: `.claude/docs/plans/training-pipeline-chunk-harvest-2026-04-27.md`.
|
|
1339
1349
|
|
|
1340
1350
|
### Other
|
|
1341
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 **
|
|
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
|
|
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/ (
|
|
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
package/tools/synthesis.js
CHANGED
|
@@ -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
|
|
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"),
|