@adia-ai/adia-ui-forge 0.8.59 → 0.8.61
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/CHANGELOG.md +68 -0
- package/package.json +1 -1
- package/plugin.yaml +1 -1
- package/references/contracts/a2ui-mcp-surface.md +1 -1
- package/scripts/lint-rules.generated.mjs +2418 -359
- package/skills/a2ui-maintenance/references/eval-diagnostics.md +2 -2
- package/skills/a2ui-maintenance/references/pipeline-overview.md +26 -0
- package/skills/a2ui-maintenance/references/strategy-engines.md +12 -0
- package/skills/demo-audit/references/admin-shell-anatomy.md +18 -12
- package/skills/gen-ui-review/scripts/gen-review-decompose.mjs +27 -34
- package/skills/gen-ui-review/scripts/overflow-detect.generated.mjs +101 -0
- package/skills/package-release/references/cut-procedure.md +49 -5
- package/skills/package-release/references/recovery-paths.md +20 -0
- package/skills/package-release/scripts/bump.mjs +36 -6
- package/skills/package-release/scripts/dispatch-publish.mjs +8 -0
- package/skills/package-release/scripts/gate-roster.mjs +4 -4
- package/skills/package-release/scripts/release-pack.mjs +485 -68
- package/skills/package-release/scripts/stale-copy-warning.mjs +215 -0
- package/skills/package-release/scripts/tag-lockstep.mjs +8 -0
- package/skills/primitive-authoring/references/INDEX.md +1 -0
- package/skills/primitive-authoring/references/examples-structure.md +52 -0
- package/skills/primitive-authoring/references/shell-patterns.md +12 -11
- package/skills/primitive-authoring/references/token-contract.md +2 -2
- package/skills/primitive-authoring/references/yaml-contract.md +106 -9
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adia-ui-kit-forge",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.61",
|
|
4
4
|
"description": "Maintain the adia-ui (@adia-ai) framework itself \u2014 author primitives and shells, run the A2UI generation pipeline and its corpus, review gen-UI quality, sweep QA, cut releases, deploy. The maintainer counterpart to adia-ui-kit-factory (the consumer/app-author plugin).",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kim",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adia-ui-kit-forge",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.61",
|
|
4
4
|
"description": "Maintain the adia-ui (@adia-ai) framework itself — author primitives and shells, run the A2UI generation pipeline and its corpus, review gen-UI quality, sweep QA, cut releases, deploy. The maintainer counterpart to adia-ui-kit-factory (the consumer/app-author plugin).",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kim",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,73 @@
|
|
|
1
1
|
# Changelog — adia-ui-kit-forge
|
|
2
2
|
|
|
3
|
+
## [0.8.61] — 2026-09-10
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- chore: correct now-false `admin-scroll` deprecation-window claims (gh#3745) (#3826)
|
|
8
|
+
`skills/demo-audit/references/admin-shell-anatomy.md` and
|
|
9
|
+
`skills/primitive-authoring/references/shell-patterns.md` described `admin-scroll` as a
|
|
10
|
+
working compat alias for "the deprecation window only", but that window has closed and the
|
|
11
|
+
module is deleted. Both now say so and point at `<page-scroll>` as the current successor;
|
|
12
|
+
the historical pre-migration anatomy each file documents for auditing legacy surfaces is
|
|
13
|
+
otherwise unchanged.
|
|
14
|
+
- chore: generalize release-pack.mjs's own stale-plugin-cache warning into a reusable packages/plugins/adia-ui-forge/skills/package-release/scripts/stale-copy-warning.mjs helper, wired into release-pack.mjs, dispatch-publish.mjs, and tag-lockstep.mjs (gh#3943) (#4201)
|
|
15
|
+
- chore: shell-patterns.md's admin-cluster reference points at admin-shell-anatomy.md instead of re-enumerating stale, partly-deleted admin-page children (gh#4130) (#4178)
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- fix: package-release gate 27/28 health-record path follows the evals single-root move to packages/gen-ui/engine/evals/health (gh#3751) (#4295)
|
|
20
|
+
- fix: vendored lint-rule bank mirror regenerated after MISSING-SCOPE's substring-loophole fix (gh#3888) (#3917)
|
|
21
|
+
- fix: Step 5's releaseFiles allowlist now stages changes/*.md and packages/web-modules/index.css, closing the "244 tracked file(s) modified by this cut are still unstaged" stop the v0.8.60 cut hit after all 36 gates had already passed. (#4210)
|
|
22
|
+
- fix: correct now-false `admin-page` deprecation-window claims (gh#4155) (#4166)
|
|
23
|
+
`skills/demo-audit/references/admin-shell-anatomy.md` part 10 called the `admin-page` family
|
|
24
|
+
"retired deprecate-then-delete" inside an open compat window, and part 9's prose still
|
|
25
|
+
offered `<admin-page>` for the non-routed case. `admin-page`/`admin-page-header`/
|
|
26
|
+
`admin-page-body` are deleted outright per ADR-0098, with no compat alias; `<page-scroll>`
|
|
27
|
+
wrapping `<page-ui band>` is the sole successor for the routed and non-routed case alike.
|
|
28
|
+
Both parts and the violation table now say so.
|
|
29
|
+
|
|
30
|
+
### Docs
|
|
31
|
+
|
|
32
|
+
- docs: eval-diagnostics reference retargeted to the evals single-root paths (gh#3751) (#4310)
|
|
33
|
+
Fixes two stale `evals/corpus`/`evals/health` path citations left over from slice 1/3's
|
|
34
|
+
moves.
|
|
35
|
+
- docs: note the ADIA_THINKING_OPT_IN runtime kill switch and the lowered default thinking budget (10000 to 4000) in a2ui-maintenance's strategy-engines.md/pipeline-overview.md references (LLD-3516 slices 1 and 3, gh#3516) (#4254)
|
|
36
|
+
- docs: fix token-contract.md's drawer/modal scrim token, corrected from --a-chrome-backdrop (zero CSS consumers) to --a-scrim-dialog, matching drawer.css and modal.css; --a-chrome-backdrop's palette entry now states it is reserved with no current consumers (gh#3840) (#4032)
|
|
37
|
+
- docs: state the `<name>.examples.html` section-order convention (`examples-structure.md`): variant sections, Combinations, Typography registers, Edge Cases, then the generated API tail (gh#4159) (#4175)
|
|
38
|
+
|
|
39
|
+
### Maintenance
|
|
40
|
+
- **`.claude-plugin/plugin.json` version bump**: moves in lockstep with package.json (the `/plugin update` cache key).
|
|
41
|
+
- **`.codex-plugin/` touched in this release window** (1 file(s), e.g. `.codex-plugin/plugin.json`): carried by the entries above.
|
|
42
|
+
|
|
43
|
+
## [0.8.60] — 2026-09-06
|
|
44
|
+
|
|
45
|
+
### Changed
|
|
46
|
+
|
|
47
|
+
- chore: gen-ui-review's decompose script now imports its overflow/clip predicate from a build-vendored copy of apps/genui/app/_shared/overflow-detect.js instead of a hand-kept inline copy that had drifted (missing the layout-overflow and svg-exclusion checks), closing the drift gap gh#3577 left open (gh#3616) (#3666)
|
|
48
|
+
|
|
49
|
+
### Fixed
|
|
50
|
+
|
|
51
|
+
- fix: gen-ui-review's vendored gen-review-decompose.mjs copy matches gallery prompts by their real label instead of a slug-derived guess, fixing false RENDER_FAILURE reports on any prompt whose label isn't the mechanical title-case of its slug (gh#3249) (#3286)
|
|
52
|
+
- fix: release-pack.mjs allowlists icons-cdn.js, builds llm/agent/persona before gate 4, rebuilds dist bundles post-bump, and polls publishes with E409-aware retry + a Step 10 resume flag that now hard-verifies the release tags exist and point at HEAD before jumping (gh#3342); Step 5's PINNED_REFS-covered allowlist entries now derive straight from bump.mjs's own tables instead of being hand-duplicated, closing that drift class structurally (gh#3361) (#3364)
|
|
53
|
+
- fix: vendored lint-rule bank mirror no longer emits an em dash (gh#3834) (#3878)
|
|
54
|
+
|
|
55
|
+
### Docs
|
|
56
|
+
|
|
57
|
+
- docs: document `allowedChildrenBySlot` in the yaml contract (gh#3308) (#3314)
|
|
58
|
+
- docs: document allowedParents' nearest-custom-element-ancestor semantics in the yaml contract reference (gh#3310) (#3317)
|
|
59
|
+
- docs: update `a2ui-mcp-surface.md`'s `plan_app_state` row for the ontology-context -> app-state-context rename (gh#3385) (#3415)
|
|
60
|
+
- docs: document noCompositionConstraint's new schema- and build-enforced exclusion with allowedParents/allowedChildren (#3527)
|
|
61
|
+
- docs: a2ui-maintenance skill's pipeline-overview reference documents the strategy-level provider thinking opt-in (which call sites, their budget constants, which stay off), cross-referencing LLD-0033 (gh#3516) (#3780)
|
|
62
|
+
- docs: cut-procedure step 4a-pre notes the changes/gh-<issue>.md fragment form and how assembly credits it to the merging PR (gh#3638) (#3653)
|
|
63
|
+
|
|
64
|
+
### Maintenance
|
|
65
|
+
- **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
|
|
66
|
+
- **`.codex-plugin/` touched in this release window** (1 file(s), e.g. `.codex-plugin/plugin.json`) — carried by the entries above.
|
|
67
|
+
- **`references/` touched in this release window** (1 file(s), e.g. `contracts/a2ui-mcp-surface.md`) — carried by the entries above.
|
|
68
|
+
- **`scripts/` touched in this release window** (1 file(s), e.g. `scripts/lint-rules.generated.mjs`) — carried by the entries above.
|
|
69
|
+
- **`skills/` touched in this release window** (8 file(s), e.g. `references/pipeline-overview.md`) — carried by the entries above.
|
|
70
|
+
|
|
3
71
|
## [0.8.59] — 2026-09-04
|
|
4
72
|
|
|
5
73
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adia-ai/adia-ui-forge",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.61",
|
|
4
4
|
"description": "Maintain the adia-ui (@adia-ai) framework itself — author primitives and shells, run the A2UI generation pipeline and its corpus, review gen-UI quality, sweep QA, cut releases, deploy. The maintainer counterpart to adia-factory (the consumer/app-author plugin).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adia-ui",
|
package/plugin.yaml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
name: "adia-ui-kit-forge"
|
|
2
|
-
version: "0.8.
|
|
2
|
+
version: "0.8.61"
|
|
3
3
|
description: "Maintain the adia-ui (@adia-ai) framework itself — author primitives and shells, run the A2UI generation pipeline and its corpus, review gen-UI quality, sweep QA, cut releases, deploy. The maintainer counterpart to adia-ui-kit-factory (the consumer/app-author plugin)."
|
|
4
4
|
manifest_version: 1
|
|
@@ -31,7 +31,7 @@ frozen-unless-versioned:
|
|
|
31
31
|
| Tool | Consumer use |
|
|
32
32
|
|---|---|
|
|
33
33
|
| `generate_ui`, `refine_ui` | gen-UI generation loop (gen-ui-wiring) |
|
|
34
|
-
| `plan_app_state` |
|
|
34
|
+
| `plan_app_state` | app-state-context feed for `generate_ui` (REQ-03, gh#1208; renamed from "ontology-context" gh#3385 so "ontology" is owned by the archetype/facet vocabulary, ADR-0112) — the agent operator's (P4's) only Reasoning Ladder surface; mechanizes ~Tier 0/1 only, honestly (see the tool's own description) |
|
|
35
35
|
| `validate_schema`, `check_anti_patterns` | the trust gate on LLM-emitted A2UI (screen-composition-agent) |
|
|
36
36
|
| `search_chunks`, `lookup_component`, `get_component_map`, `get_traits` | catalog literacy (screen-composition — "the MCP is the live catalog, don't memorize names") |
|
|
37
37
|
| `convert_html` | migration aid (app-migration) |
|