@adia-ai/adia-ui-factory 0.8.58 → 0.8.60
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.mcp.json +1 -1
- package/CHANGELOG.md +60 -0
- package/README.md +1 -1
- package/hermes-mcp.yaml +1 -1
- package/package.json +1 -1
- package/plugin.yaml +1 -1
- package/references/authoring-components.md +1 -1
- package/references/component-behavior-index.md +3070 -0
- package/references/contracts/a2ui-mcp-surface.md +1 -1
- package/scripts/adia-manifest-cache.mjs +17 -8
- package/scripts/adia-manifest-lite.mjs +14 -4
- package/scripts/adia-posture.d.mts +11 -0
- package/scripts/lab-posture-guard.mjs +81 -13
- package/scripts/lint-rules.generated.mjs +11554 -1120
- package/scripts/tests/lab-posture-guard.selftest.mjs +116 -2
- package/skills/pattern-catalog/references/annotations.yaml +1 -1
- package/skills/pattern-catalog/references/pattern-index.md +305 -192
- package/skills/screen-composition/SKILL.md +14 -3
- package/skills/surface-qa/SKILL.md +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adia-ui-kit-factory",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.60",
|
|
4
4
|
"description": "Author and verify apps built ON the adia-ui (@adia-ai) light-DOM web-component framework \u2014 orient, scaffold, compose, wire, verify, and migrate across SPA and SSR rendering modes. Wires the a2ui MCP for catalog retrieval, UI generation, and validation.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kim",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adia-ui-kit-factory",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.60",
|
|
4
4
|
"description": "Author and verify apps built ON the adia-ui (@adia-ai) light-DOM web-component framework — orient, scaffold, compose, wire, verify, and migrate across SPA and SSR rendering modes. Wires the a2ui MCP for catalog retrieval, UI generation, and validation.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kim",
|
package/.mcp.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,64 @@
|
|
|
1
1
|
# Changelog — adia-ui-kit-factory
|
|
2
2
|
|
|
3
|
+
## [0.8.60] — 2026-09-06
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- feature: screen-composition's "Validate anything generated" step also calls classify_archetype alongside validate_schema (ADR-0112 Decision 2, gh#3373) (#3419)
|
|
8
|
+
- feature: new `references/component-behavior-index.md` (generated) plus `screen-composition`/`surface-qa` consumption of it, and the new typed `fulfills`/`disambiguation` yaml fields once gh#3368's build landed (gh#3360, LLD-0022) (#3433)
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- chore: resync vendored lint-rules.generated.mjs against the shared lint-rule bank (gh#3359) (#3365)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- fix: wire REQUIRED-ATTR into lab-posture-guard.mjs's write-time hook, never blocking (gh#3221 follow-up, gh#3236) (#3311)
|
|
17
|
+
The write-time `PreToolUse` lab-posture hook now surfaces REQUIRED-ATTR findings
|
|
18
|
+
(a missing manifest-declared required attribute) as a non-blocking advisory —
|
|
19
|
+
`permissionDecision: "allow"` carrying `hookSpecificOutput.additionalContext` —
|
|
20
|
+
kept structurally separate from the four rules that still deny on any finding, per
|
|
21
|
+
the conductor ruling on gh#3221 that a false-positive rule must never block
|
|
22
|
+
authoring at the keystroke. Also fixes `adia-manifest-lite.mjs`, which never
|
|
23
|
+
forwarded a sidecar's `required` array onto its attr descriptors — without that
|
|
24
|
+
fix REQUIRED-ATTR would have wired in as a silent no-op at write time even though
|
|
25
|
+
it already fires correctly at check time (`npm run lint`, CI).
|
|
26
|
+
- fix: adia-manifest-cache.mjs's cache key always includes repoRoot, not just session_id — two runs sharing a literal session id no longer read back each other's cached manifest (gh#3316) (#3320)
|
|
27
|
+
- fix: vendored lint-rule bank mirror no longer emits an em dash (gh#3834) (#3878)
|
|
28
|
+
|
|
29
|
+
### Docs
|
|
30
|
+
|
|
31
|
+
- docs: update `a2ui-mcp-surface.md`'s `plan_app_state` row for the ontology-context -> app-state-context rename (gh#3385) (#3415)
|
|
32
|
+
- docs: update the component-authoring reference's token example off the retired --a-ui-px alias, onto --a-ui-inset (gh#3054) (#3669)
|
|
33
|
+
- docs: retarget the pattern-catalog annotation for the renamed page-header route (#3759)
|
|
34
|
+
`annotations.yaml`'s key for `site/pages/patterns/admin-page-header.html` follows the site
|
|
35
|
+
page's rename to `site/pages/patterns/page-header.html` (gh#3750, ADR-0098 drain); the derived
|
|
36
|
+
`pattern-index.md`/`site/patterns-index.json` regenerate from it via `npm run build:patterns-index`.
|
|
37
|
+
|
|
38
|
+
### Maintenance
|
|
39
|
+
- **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
|
|
40
|
+
- **`.codex-plugin/` touched in this release window** (1 file(s), e.g. `.codex-plugin/plugin.json`) — carried by the entries above.
|
|
41
|
+
- **`scripts/` touched in this release window** (5 file(s), e.g. `scripts/adia-manifest-cache.mjs`) — carried by the entries above.
|
|
42
|
+
- **`skills/` touched in this release window** (4 file(s), e.g. `references/annotations.yaml`) — carried by the entries above.
|
|
43
|
+
|
|
44
|
+
## [0.8.59] — 2026-09-04
|
|
45
|
+
|
|
46
|
+
### Added
|
|
47
|
+
- **`scripts/adia-posture.d.mts`: ambient TypeScript types for `scripts/adia-posture.mjs` (gh#2875).** Lets `@adia-ai/mcp`'s factory server's new `scaffold_prototype` tool import `readPosture()` directly (the SAME reader `lab-posture-guard.mjs` uses) once vendored, without pulling the plain-JS module into that package's TypeScript build as a compiled input. No behavior change to `adia-posture.mjs` itself; see `@adia-ai/mcp`'s own CHANGELOG for the tool this enables.
|
|
48
|
+
|
|
49
|
+
### Fixed
|
|
50
|
+
- **`skills/pattern-catalog/references/pattern-index.md` regenerated after gh#2916's `dashboard-page-header` corpus-chunk rebuild reordered `dashboard-admin-page`'s components list.** Derived-only (`npm run build:factory-mcp-assets`), no source change in this package.
|
|
51
|
+
|
|
52
|
+
### Changed
|
|
53
|
+
- **`scripts/lint-rules.generated.mjs` (vendored lab-posture bank) regenerated after gh#2939's EXAMPLE-PROP-CONTRACT `data-*` exemption and GENUI-DOC-CONFLICT self-scope fix landed in the shared rule sources.** Derived-only, no source change in this package; the vendored bank picks up both predicate narrowings — full-corpus warn count 1413 → 1410 (see repo-root CHANGELOG.md for the gate's own detail).
|
|
54
|
+
- **`scripts/lint-rules.generated.mjs` (vendored lab-posture bank) regenerated after gh#2937's `tagTree()` memoization landed in `scripts/lint/engine/primitives.mjs` (root).** Derived-only, no source change in this package; the vendored bank picks up the shared engine's single-slot memo, so the 48 generated `COMPOSITION-*` rules now share one tag-tree parse per file instead of each re-parsing it — full golden-corpus `check:lint-efficacy`: 110.9s → 9.45s. Byte-identical rule semantics (38/38 seeded-fixture catch rate, 0 error-severity across 438 files, unchanged).
|
|
55
|
+
- **`scripts/lint-rules.generated.mjs` (vendored lab-posture bank) regenerated to carry `enum_meta` tier data for gh#2831 batch 2's 9 components** (feed-item-ui, inline-message-ui, link-ui, loading-overlay-ui, mark-ui, menu-item-ui, nav-group-ui, nav-item-ui, nav-ui). Derived-only, no source change in this package; the vendored bank follows the yaml `enum_meta` authored in `@adia-ai/web-components`.
|
|
56
|
+
- **`scripts/lint-rules.generated.mjs` (vendored lab-posture bank) regenerated to carry `enum_meta` tier data for gh#2831 batch 3's 13 components (FINAL batch)** (pagination-ui, preview-ui, rating-ui, select-ui, shader-texture-ui, spinner-ui, table-toolbar-ui, tabs-ui, tag-ui, text-ui, timeline-item-ui, toast-ui, toggle-scheme-ui). Derived-only, no source change in this package; the vendored bank follows the yaml `enum_meta` authored in `@adia-ai/web-components`. Closes the 31-component sweep (gh#2831).
|
|
57
|
+
|
|
58
|
+
### Maintenance
|
|
59
|
+
- **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
|
|
60
|
+
- **`.codex-plugin/` touched in this release window** (1 file(s), e.g. `.codex-plugin/plugin.json`) — carried by the entries above.
|
|
61
|
+
|
|
3
62
|
## [0.8.58] — 2026-09-02
|
|
4
63
|
|
|
5
64
|
### Added
|
|
@@ -14,6 +73,7 @@
|
|
|
14
73
|
- **ATTR-TYPO/LLM-KEY-IN-CLIENT/NATIVE-PRIMITIVE matcher hardening (gh#2708)**, propagated to this plugin's vendored `scripts/lint-rules.generated.mjs` via `npm run build:lint-rules`, byte-identical to the shared lint-rule bank, no change to `adia-lint.mjs`'s own CLI contract.
|
|
15
74
|
|
|
16
75
|
### Docs
|
|
76
|
+
- **`scripts/lint-rules.generated.mjs` (vendored lab-posture bank) regenerated to carry `enum_meta` tier data for gh#2831 batch 3's 13 components** (pagination-ui, preview-ui, rating-ui, select-ui, shader-texture-ui, spinner-ui, table-toolbar-ui, tabs-ui, tag-ui, text-ui, timeline-item-ui, toast-ui, toggle-scheme-ui). Derived-only, no source change in this package; the vendored bank follows the yaml `enum_meta` authored in `@adia-ai/web-components`. Closes the 31-component sweep (gh#2831).
|
|
17
77
|
- **generated lint-rule bank refreshed (gh#2821, gh#2824)**: a full `npm run build:lint-rules` regen pass, run while rebasing the heatmap/noodles a11y fixes onto main, picked up `enum_meta` `tier`/`when` data already landed upstream (gh#2864) that this vendored copy hadn't caught up to yet; vendored copy byte-identical to the shared bank, no behavior change.
|
|
18
78
|
- **generated lint-rule bank refreshed (gh#2845)**: `gen-composition-rules.mjs`'s scan widened from `<dirname>.yaml` only to every `*.yaml` in a component directory, discovering 14 previously-missed child/sub-item yamls; composition-rule count 34 → 48 (mechanics: repo-root CHANGELOG.md); vendored copy byte-identical to the shared bank, no behavior change.
|
|
19
79
|
- **generated lint-rule bank refreshed (gh#2801)**: `gen-composition-rules.mjs`'s eligibility widened from 1 to 34 generated composition rules, decoupled from component.md pilot status (mechanics: repo-root CHANGELOG.md); vendored copy byte-identical to the shared bank, no behavior change.
|
package/README.md
CHANGED
|
@@ -163,7 +163,7 @@ attributes vs. the shipped component contracts), and `adia-theme-audit.mjs`
|
|
|
163
163
|
|
|
164
164
|
## MCP
|
|
165
165
|
|
|
166
|
-
`adia-gen-ui` server pinned: `@adia-ai/mcp@0.8.
|
|
166
|
+
`adia-gen-ui` server pinned: `@adia-ai/mcp@0.8.60` (tool SoT:
|
|
167
167
|
`packages/gen-ui/mcp/TOOLS.md` — the `gen-ui` section; stability rule in
|
|
168
168
|
`references/contracts/`; pin lives in `.mcp.json` — `check:plugin-count-claims`
|
|
169
169
|
guards this README copy against it). The server is `adia-mcp gen-ui`,
|
package/hermes-mcp.yaml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/adia-ui-factory",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.60",
|
|
4
4
|
"description": "Author and verify apps built ON the adia-ui (@adia-ai) light-DOM web-component framework — orient, scaffold, compose, wire, verify, and migrate across SPA and SSR rendering modes. Wires the a2ui MCP for catalog retrieval, UI generation, and validation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adia-ui",
|
package/plugin.yaml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
name: "adia-ui-kit-factory"
|
|
2
|
-
version: "0.8.
|
|
2
|
+
version: "0.8.60"
|
|
3
3
|
description: "Author and verify apps built ON the adia-ui (@adia-ai) light-DOM web-component framework — orient, scaffold, compose, wire, verify, and migrate across SPA and SSR rendering modes. Wires the a2ui MCP for catalog retrieval, UI generation, and validation."
|
|
4
4
|
manifest_version: 1
|
|
@@ -37,7 +37,7 @@ Every component stylesheet is scoped to its tag and split into a zero-specificit
|
|
|
37
37
|
--my-thing-bg: var(--a-ui-bg);
|
|
38
38
|
--my-thing-fg: var(--a-ui-text);
|
|
39
39
|
--my-thing-radius: var(--a-radius);
|
|
40
|
-
--my-thing-px: var(--a-ui-
|
|
40
|
+
--my-thing-px: var(--a-ui-inset);
|
|
41
41
|
}
|
|
42
42
|
:scope { /* specificity (0,1,0) — base styles, consume component tokens only */
|
|
43
43
|
display: flex;
|