@adia-ai/adia-ui-forge 0.8.17 → 0.8.18

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adia-forge",
3
- "version": "0.8.17",
3
+ "version": "0.8.18",
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-factory (the consumer/app-author plugin).",
5
5
  "author": {
6
6
  "name": "Kim",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog — adia-forge
2
2
 
3
+ ## [0.8.18] — 2026-07-27
4
+
5
+ ### Added
6
+ - **`adia-author` writes down the tag-naming rule across tiers** (`references/code-style.md`) — primitives and standalone feature composites carry `-ui`; shell/bespoke-cluster children and runtime roots are bare, namespaced by their cluster prefix. Ratified when `form-popover` shipped as the only unsuffixed standalone composite (renamed `form-popover-ui` the next release); `theme-panel` is explicitly grandfathered, not precedent.
7
+
8
+ ### Maintenance
9
+ - **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
10
+ - **`skills/` touched in this release window** (1 file(s), e.g. `references/code-style.md`) — carried by the entries above.
11
+
3
12
  ## [0.8.17] — 2026-07-27
4
13
 
5
14
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/adia-ui-forge",
3
- "version": "0.8.17",
3
+ "version": "0.8.18",
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-factory (the consumer/app-author plugin).",
5
5
  "keywords": [
6
6
  "adia-ui",
@@ -24,6 +24,24 @@ Every interactive surface, form control, layout container, and content block shi
24
24
 
25
25
  The catalog has 125 component directories under `packages/web-components/components/`. Before composing, confirm via `get_component_map` (the a2ui MCP) that the one you want exists — and what its real prop names are.
26
26
 
27
+ ### Tag naming across tiers (`-ui` or bare)
28
+
29
+ Two rules cover every tag in the monorepo (ratified 2026-07-27, when
30
+ `form-popover` shipped as the only standalone composite without the
31
+ suffix and was renamed to `form-popover-ui` one release later):
32
+
33
+ | Tier | Convention | Examples |
34
+ | --- | --- | --- |
35
+ | Primitives (`packages/web-components`) | **always `-ui`** | `button-ui`, `select-ui`, `nav-item-ui` |
36
+ | Standalone feature composites (`packages/web-modules`) — drop-in anywhere, consumer-facing | **always `-ui`** | `confirm-dialog-ui`, `plan-picker-ui`, `date-range-selector-ui`, `form-popover-ui` |
37
+ | Shell/bespoke-cluster children + runtime roots | **bare** — the cluster prefix is the namespace | `admin-topbar`, `chat-composer`, `editor-canvas`, `simple-shell`, `a2ui-root`, `gen-root` |
38
+
39
+ `theme-panel` (bare, standalone) predates this rule and is grandfathered —
40
+ do not copy it as precedent for a new standalone composite. The DIRECTORY
41
+ name never carries the suffix in either tier (`plan-picker/` →
42
+ `<plan-picker-ui>`), and the a2ui `component:` name is unaffected
43
+ (`FormPopover`).
44
+
27
45
  ## Layout primitives
28
46
 
29
47
  Use `<col-ui>`, `<row-ui>`, `<grid-ui>`, `<stack-ui>` for layout — never a bare `<div>`. The primitives carry the project's spacing scale (`gap`, padding tokens) and respond to density / theme providers; a plain `<div>` strands content outside that system.