@adia-ai/mcp 0.8.41 → 0.8.42
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,5 +1,11 @@
|
|
|
1
1
|
# Changelog — @adia-ai/mcp
|
|
2
2
|
|
|
3
|
+
## [0.8.42] — 2026-08-17
|
|
4
|
+
|
|
5
|
+
### Maintenance
|
|
6
|
+
- Catalog-facing updates for the ADR-0063 compat-shim surface and rename-wave W1 dual-reads (PRs #1565/#1569). No tool-surface change.
|
|
7
|
+
|
|
8
|
+
|
|
3
9
|
> Folds `@adia-ai/gen-ui-mcp` and `@adia-ai/a2ui-protocol-mcp` into ONE npm
|
|
4
10
|
> package — one bin (`adia-mcp`), two servers (gh#1240, operator ruling
|
|
5
11
|
> 2026-08-14). Neither predecessor name ever published a 0.8.x, so there is no
|
|
@@ -8,6 +14,7 @@
|
|
|
8
14
|
> `@adia-ai/a2ui-mcp`, renamed at ADR-0048 P2) verbatim; `@adia-ai/a2ui-protocol-mcp`'s
|
|
9
15
|
> entire changelog was still `[Unreleased]` at fold time (minted at ADR-0048 P4,
|
|
10
16
|
> never released under its own name) and is merged into the section below.
|
|
17
|
+
- **`factory/` touched in this release window** (3 file(s), e.g. `resources/pattern-index.md`) — carried by the entries above.
|
|
11
18
|
|
|
12
19
|
## [0.8.41] — 2026-08-17
|
|
13
20
|
|
|
@@ -484,7 +484,7 @@
|
|
|
484
484
|
- source: `/catalog/ui-patterns/app/image-upload-preview/image-upload-preview.contents.html` · demo: `/catalog/ui-patterns/app/image-upload-preview/image-upload-preview.html` · docs: `/site/examples/patterns/image-upload-preview`
|
|
485
485
|
- **Color Picker Swatches** (Pattern Library) — Color picker with OKLCH input + preset swatch palette. Click a swatch to apply; manual input edits the picker.
|
|
486
486
|
- keywords: color, picker, swatch, palette, oklch, hex, preset, accent, token, chooser
|
|
487
|
-
- components: `swatch-ui` `text-ui` `col-ui` `card-ui` `color-
|
|
487
|
+
- components: `swatch-ui` `text-ui` `col-ui` `card-ui` `color-area-ui` `row-ui`
|
|
488
488
|
- source: `/catalog/ui-patterns/app/color-picker-swatches/color-picker-swatches.contents.html` · demo: `/catalog/ui-patterns/app/color-picker-swatches/color-picker-swatches.html` · docs: `/site/examples/patterns/color-picker-swatches`
|
|
489
489
|
- **Slider Range Controls** (Pattern Library) — Range slider with min/max numeric inputs flanking the slider track. Allows direct value entry or drag-to-set.
|
|
490
490
|
- keywords: slider, range, min, max, input, numeric, value, control, bound, dual-handle
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"adia-lint": {
|
|
13
13
|
"source": "packages/plugins/adia-ui-factory/scripts/adia-lint",
|
|
14
|
-
"sha256": "
|
|
14
|
+
"sha256": "f5f5f8032966e0a7161f27106287a0e3213ce9983f148bca51b2c35c22c5f46b"
|
|
15
15
|
},
|
|
16
16
|
"adia-scaffold": {
|
|
17
17
|
"source": "packages/plugins/adia-ui-factory/scripts/adia-scaffold",
|
package/factory/vendor/adia-lint
CHANGED
|
@@ -164,9 +164,25 @@ def lint_text(text, path=""):
|
|
|
164
164
|
ln = text.count("\n", 0, m.start()) + 1
|
|
165
165
|
findings.append(("SHELL-NESTING", ln, text[m.start():m.start() + 60].strip()[:90],
|
|
166
166
|
"shell children are positioned by tag selectors — wrapping them in <col-ui>/<row-ui> breaks the shell grid; generics go inside admin-content/admin-page-body"))
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
167
|
+
# Rename-wave compat window (docs/ops/plan/plan-090-rename-wave.md W1):
|
|
168
|
+
# accepts EITHER the current `data-sidebar-resize` or the deprecated
|
|
169
|
+
# `data-resize` name during the 0.8.x→0.9.0 dual-read window; at the
|
|
170
|
+
# 0.9.0 cut (W3) this drops back to requiring `data-sidebar-resize` only.
|
|
171
|
+
if (re.search(r"<admin-sidebar[^>]*\bresizable\b", text)
|
|
172
|
+
and "data-sidebar-resize" not in text and "data-resize" not in text):
|
|
173
|
+
findings.append(("SHELL-RESIZE", 1, "<admin-sidebar resizable> without [data-sidebar-resize]",
|
|
174
|
+
"[resizable] needs a child <div data-sidebar-resize> or there is no drag handle"))
|
|
175
|
+
# Rename-wave compat window: advisory-only, never fails a build — flags
|
|
176
|
+
# the two deprecated pre-0.9.0 names in consumer-authored markup so the
|
|
177
|
+
# migration surfaces during the window instead of silently at the cut.
|
|
178
|
+
# Negative lookahead protects the unrelated trait-owned `data-resize-*`
|
|
179
|
+
# (resize-observer) / `data-grid-*` (arrow-grid-nav) grandfathered names.
|
|
180
|
+
for _old, _new in (("data-resize", "data-sidebar-resize"), ("data-grid", "data-layout-grid")):
|
|
181
|
+
m = re.search(r"\b" + re.escape(_old) + r"\b(?!-)", text)
|
|
182
|
+
if m:
|
|
183
|
+
ln = text.count("\n", 0, m.start()) + 1
|
|
184
|
+
findings.append(("DEPRECATED-LAYOUT-NAME", ln, f"[{_old}]",
|
|
185
|
+
f"[{_old}] is deprecated and removed in 0.9.0 — rename to [{_new}] (docs/ops/plan/plan-090-rename-wave.md)"))
|
|
170
186
|
# server-side files legitimately hold keys — exempt any path whose
|
|
171
187
|
# segments mention server/api/proxy (the smart-proxy's own home).
|
|
172
188
|
_segs = path.replace(os.sep, "/").lower().split("/")
|
|
@@ -278,9 +294,16 @@ def _selftest():
|
|
|
278
294
|
"<admin-scroll><admin-page>a</admin-page><admin-page>b</admin-page></admin-scroll>\n</admin-shell>",
|
|
279
295
|
{"SHELL-NESTING", "SHELL-RESIZE"}),
|
|
280
296
|
("markup/shell-good.html",
|
|
281
|
-
"<admin-shell>\n<admin-sidebar resizable><div data-resize></div></admin-sidebar>\n"
|
|
297
|
+
"<admin-shell>\n<admin-sidebar resizable><div data-sidebar-resize></div></admin-sidebar>\n"
|
|
282
298
|
"<admin-scroll><admin-page>a</admin-page></admin-scroll>\n</admin-shell>",
|
|
283
299
|
set()),
|
|
300
|
+
# Rename-wave compat window (plan-090 W1): SHELL-RESIZE still accepts
|
|
301
|
+
# the deprecated name, but DEPRECATED-LAYOUT-NAME advises on it —
|
|
302
|
+
# both old names exercised in one fixture.
|
|
303
|
+
("markup/shell-old-names.html",
|
|
304
|
+
"<admin-shell>\n<admin-sidebar resizable><div data-resize></div></admin-sidebar>\n"
|
|
305
|
+
"<admin-content data-grid=\"3\"></admin-content>\n</admin-shell>",
|
|
306
|
+
{"DEPRECATED-LAYOUT-NAME"}),
|
|
284
307
|
# gh#1258 regression: the CANONICAL admin skeleton (shell-patterns.md's admin
|
|
285
308
|
# cluster — admin-page-header/body/footer are distinct CSS-only children whose
|
|
286
309
|
# tag names share the <admin-page prefix) must stay clean.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.42",
|
|
4
4
|
"description": "AdiaUI's three MCP servers, one npm package (gh#1240, ADR-0051). `adia-mcp gen-ui` — the 31-tool generation server (compose engine, corpus, retrieval, feedback/eval loop). `adia-mcp protocol` — the 5-tool A2UI protocol server (validate + registry introspection + the L0/L1 catalog-contract rungs, no generation system, no model client). `adia-mcp factory` — the 7-tool adia-factory server (orient, scaffold, audit, surface QA for building adia-ui apps from any MCP harness; no generation system, no model client). ADR-0048 §3's distinct-server decision is unchanged; only the distribution unified.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|