@adia-ai/a2ui-mcp 0.7.27 → 0.8.0

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,23 @@
1
1
  # Changelog — @adia-ai/a2ui-mcp
2
+ ## [0.8.0] — 2026-07-15
3
+
4
+ ### Maintenance
5
+ - **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.8.0 work — the Material color-token adoption (BREAKING; MIGRATION GUIDE § v0.8.0) — shipped in @adia-ai/web-components, @adia-ai/web-modules, @adia-ai/a2ui-corpus. See `packages/web-components/CHANGELOG.md#080--2026-07-15` for details.
6
+ ## [0.7.28] — 2026-07-14
7
+
8
+ ### Fixed
9
+
10
+ - **`scripts/test-evals.mjs` (`npm run test:evals` / `test:evals:baseline` /
11
+ `test:all`) was silently broken** — its 5-case eval suite lived at
12
+ `.claude/skills/adia-ui-kit/evals/evals.json`, deleted wholesale when
13
+ that skill was retired, orphaning the script (`ENOENT`, no caller
14
+ noticed since nothing in CI exercises it). Content recovered from git
15
+ history and given a durable home alongside the script,
16
+ `packages/a2ui/mcp/evals/evals.json`, instead of a skill directory
17
+ that can be retired again. Baseline re-captured against current
18
+ (unrelated-to-this-cycle) retrieval behavior — 4/5 passing, avg 91,
19
+ 0 regressions.
20
+
2
21
  ## [0.7.27] — 2026-07-12
3
22
 
4
23
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/a2ui-mcp",
3
- "version": "0.7.27",
3
+ "version": "0.8.0",
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": {
@@ -28,11 +28,11 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@modelcontextprotocol/sdk": "^1.29.0",
31
- "@adia-ai/a2ui-compose": "^0.7.0",
32
- "@adia-ai/a2ui-retrieval": "^0.7.0",
33
- "@adia-ai/a2ui-validator": "^0.7.0",
34
- "@adia-ai/a2ui-corpus": "^0.7.0",
35
- "@adia-ai/llm": "^0.7.0",
31
+ "@adia-ai/a2ui-compose": "^0.8.0",
32
+ "@adia-ai/a2ui-retrieval": "^0.8.0",
33
+ "@adia-ai/a2ui-validator": "^0.8.0",
34
+ "@adia-ai/a2ui-corpus": "^0.8.0",
35
+ "@adia-ai/llm": "^0.8.0",
36
36
  "zod": "^3.24.0",
37
37
  "express": "^4.21.0"
38
38
  },
@@ -25,7 +25,14 @@ import { fileURLToPath } from 'node:url';
25
25
 
26
26
  const __dirname = dirname(fileURLToPath(import.meta.url));
27
27
  const REPO_ROOT = join(__dirname, '..', '..', '..', '..');
28
- const EVALS_PATH = join(REPO_ROOT, '.claude', 'skills', 'adia-ui-kit', 'evals', 'evals.json');
28
+ // Restored 2026-07-14: this pointed at .claude/skills/adia-ui-kit/evals/evals.json,
29
+ // which was deleted wholesale when that skill was retired (commit 15b3ab326,
30
+ // "drop the -new dir suffix, retire the old plugins") — orphaning this script
31
+ // silently (test:evals / test:evals:baseline / test:all all threw ENOENT with
32
+ // no caller noticing, since nothing in CI exercises them). The 5-case eval
33
+ // content was recovered from git history and given a durable, a2ui-owned home
34
+ // alongside this script rather than a skill directory that can be retired again.
35
+ const EVALS_PATH = join(__dirname, '..', 'evals', 'evals.json');
29
36
  const BASELINE_PATH = join(REPO_ROOT, 'scripts', 'eval-baseline.json');
30
37
 
31
38
  const args = new Set(process.argv.slice(2));