@adia-ai/a2ui-mcp 0.7.27 → 0.7.28
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 +15 -0
- package/package.json +1 -1
- package/scripts/test-evals.mjs +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
# Changelog — @adia-ai/a2ui-mcp
|
|
2
|
+
## [0.7.28] — 2026-07-14
|
|
3
|
+
|
|
4
|
+
### Fixed
|
|
5
|
+
|
|
6
|
+
- **`scripts/test-evals.mjs` (`npm run test:evals` / `test:evals:baseline` /
|
|
7
|
+
`test:all`) was silently broken** — its 5-case eval suite lived at
|
|
8
|
+
`.claude/skills/adia-ui-kit/evals/evals.json`, deleted wholesale when
|
|
9
|
+
that skill was retired, orphaning the script (`ENOENT`, no caller
|
|
10
|
+
noticed since nothing in CI exercises it). Content recovered from git
|
|
11
|
+
history and given a durable home alongside the script,
|
|
12
|
+
`packages/a2ui/mcp/evals/evals.json`, instead of a skill directory
|
|
13
|
+
that can be retired again. Baseline re-captured against current
|
|
14
|
+
(unrelated-to-this-cycle) retrieval behavior — 4/5 passing, avg 91,
|
|
15
|
+
0 regressions.
|
|
16
|
+
|
|
2
17
|
## [0.7.27] — 2026-07-12
|
|
3
18
|
|
|
4
19
|
### Fixed
|
package/package.json
CHANGED
package/scripts/test-evals.mjs
CHANGED
|
@@ -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
|
-
|
|
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));
|