@adia-ai/mcp 0.8.42 → 0.8.43
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 +6 -0
- package/factory/vendor/MANIFEST.json +1 -1
- package/factory/vendor/adia-lint +12 -20
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog — @adia-ai/mcp
|
|
2
2
|
|
|
3
|
+
## [0.8.43] — 2026-08-18
|
|
4
|
+
|
|
5
|
+
### Maintenance
|
|
6
|
+
- gen-ui generation names: legacy `ColorPicker` now aliases `color-area-ui` after the 0.8.43 component cut (gh#1617, #1626).
|
|
7
|
+
- factory pattern-index regenerated for the action-item `[description]` convergence (gh#1571, #1577).
|
|
8
|
+
|
|
3
9
|
## [0.8.42] — 2026-08-17
|
|
4
10
|
|
|
5
11
|
### Maintenance
|
|
@@ -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": "6c68bb627bc7e0b3d775e23ae731a2216185401472dcb8accafcb3ff923bb9c5"
|
|
15
15
|
},
|
|
16
16
|
"adia-scaffold": {
|
|
17
17
|
"source": "packages/plugins/adia-ui-factory/scripts/adia-scaffold",
|
package/factory/vendor/adia-lint
CHANGED
|
@@ -164,25 +164,16 @@ 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
|
-
# Rename-wave
|
|
168
|
-
#
|
|
169
|
-
#
|
|
170
|
-
#
|
|
167
|
+
# Rename-wave cut (docs/ops/plan/plan-090-rename-wave.md W3, gh#1562):
|
|
168
|
+
# the 0.8.x→0.9.0 dual-read window is over — [data-sidebar-resize] is
|
|
169
|
+
# the only recognized handle name; [data-resize]/[data-grid] no longer
|
|
170
|
+
# get a dedicated advisory (DEPRECATED-LAYOUT-NAME retired with the
|
|
171
|
+
# window it existed for — the old names simply stop resolving now,
|
|
172
|
+
# same as any other unrecognized markup).
|
|
171
173
|
if (re.search(r"<admin-sidebar[^>]*\bresizable\b", text)
|
|
172
|
-
and "data-sidebar-resize" not in text
|
|
174
|
+
and "data-sidebar-resize" not in text):
|
|
173
175
|
findings.append(("SHELL-RESIZE", 1, "<admin-sidebar resizable> without [data-sidebar-resize]",
|
|
174
176
|
"[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)"))
|
|
186
177
|
# server-side files legitimately hold keys — exempt any path whose
|
|
187
178
|
# segments mention server/api/proxy (the smart-proxy's own home).
|
|
188
179
|
_segs = path.replace(os.sep, "/").lower().split("/")
|
|
@@ -297,13 +288,14 @@ def _selftest():
|
|
|
297
288
|
"<admin-shell>\n<admin-sidebar resizable><div data-sidebar-resize></div></admin-sidebar>\n"
|
|
298
289
|
"<admin-scroll><admin-page>a</admin-page></admin-scroll>\n</admin-shell>",
|
|
299
290
|
set()),
|
|
300
|
-
# Rename-wave
|
|
301
|
-
#
|
|
302
|
-
#
|
|
291
|
+
# Rename-wave cut (plan-090 W3, gh#1562): the old names no longer
|
|
292
|
+
# resolve — SHELL-RESIZE now fires on the deprecated [data-resize]
|
|
293
|
+
# name alone (no [data-sidebar-resize] present), and [data-grid] gets
|
|
294
|
+
# no advisory at all (DEPRECATED-LAYOUT-NAME retired with the window).
|
|
303
295
|
("markup/shell-old-names.html",
|
|
304
296
|
"<admin-shell>\n<admin-sidebar resizable><div data-resize></div></admin-sidebar>\n"
|
|
305
297
|
"<admin-content data-grid=\"3\"></admin-content>\n</admin-shell>",
|
|
306
|
-
{"
|
|
298
|
+
{"SHELL-RESIZE"}),
|
|
307
299
|
# gh#1258 regression: the CANONICAL admin skeleton (shell-patterns.md's admin
|
|
308
300
|
# cluster — admin-page-header/body/footer are distinct CSS-only children whose
|
|
309
301
|
# 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.43",
|
|
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": {
|