@adia-ai/adia-ui-forge 0.8.33 → 0.8.34
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/CHANGELOG.md +9 -0
- package/hooks/hooks.json +5 -5
- package/package.json +2 -2
- package/{bin → scripts}/forge-lint +1 -1
- package/skills/adia-author/references/canonical-pattern-index.md +10 -5
- /package/{bin → scripts}/demo-postwrite-pattern-gate +0 -0
- /package/{bin → scripts}/release-pretag-docs-gate +0 -0
- /package/{bin → scripts}/sidecar-prewrite-guard +0 -0
- /package/{bin → scripts}/site-postwrite-derivation-gate +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adia-ui-kit-forge",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.34",
|
|
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-ui-kit-forge
|
|
2
2
|
|
|
3
|
+
## [0.8.34] — 2026-08-11
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Top-level `bin/` directory renamed to `scripts/` — claude.ai-hosted plugin validation was rejecting this plugin outright (gh#934).** claude.ai auto-adds any plugin's top-level `bin/` to PATH on the CLI, which isn't shown on the admin approval surface, so hosted validation refused to approve the plugin at all ("2 plugins found, 2 failed validation" alongside `adia-ui-kit-factory`, same defect). `bin/demo-postwrite-pattern-gate`, `bin/forge-lint`, `bin/release-pretag-docs-gate`, `bin/sidecar-prewrite-guard`, `bin/site-postwrite-derivation-gate` moved to `scripts/` with executable bits preserved; `hooks/hooks.json`'s `${CLAUDE_PLUGIN_ROOT}/bin/...` commands and `scripts/forge-lint`'s cross-reference to the factory plugin's vendored lint copy updated to `scripts/...`; `package.json`'s `files` array updated so the published tarball ships the renamed directory. Hook gates still fire the same scripts, just from a non-PATH-reserved location.
|
|
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/canonical-pattern-index.md`) — carried by the entries above.
|
|
11
|
+
|
|
3
12
|
## [0.8.33] — 2026-08-11
|
|
4
13
|
|
|
5
14
|
### Fixed
|
package/hooks/hooks.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"hooks": [
|
|
7
7
|
{
|
|
8
8
|
"type": "command",
|
|
9
|
-
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/
|
|
9
|
+
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/scripts/sidecar-prewrite-guard\" --hook"
|
|
10
10
|
}
|
|
11
11
|
]
|
|
12
12
|
},
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"hooks": [
|
|
16
16
|
{
|
|
17
17
|
"type": "command",
|
|
18
|
-
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/
|
|
18
|
+
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/scripts/release-pretag-docs-gate\" --hook",
|
|
19
19
|
"timeout": 90
|
|
20
20
|
}
|
|
21
21
|
]
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"hooks": [
|
|
28
28
|
{
|
|
29
29
|
"type": "command",
|
|
30
|
-
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/
|
|
30
|
+
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/scripts/forge-lint\" --hook"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"type": "command",
|
|
34
|
-
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/
|
|
34
|
+
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/scripts/demo-postwrite-pattern-gate\" --hook"
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"type": "command",
|
|
38
|
-
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/
|
|
38
|
+
"command": "python3 \"${CLAUDE_PLUGIN_ROOT}/scripts/site-postwrite-derivation-gate\" --hook"
|
|
39
39
|
}
|
|
40
40
|
]
|
|
41
41
|
}
|
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.34",
|
|
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",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"agents",
|
|
23
23
|
"commands",
|
|
24
24
|
"references",
|
|
25
|
-
"
|
|
25
|
+
"scripts",
|
|
26
26
|
"hooks",
|
|
27
27
|
"README.md",
|
|
28
28
|
"CHANGELOG.md"
|
|
@@ -19,7 +19,7 @@ A clean forge-lint says "no structural tells," never "this is right."
|
|
|
19
19
|
|
|
20
20
|
Shared core: the regex bank below (RAW-COLOR/PX, SCOPE-EXTENT, NATIVE-PRIMITIVE, LEGACY-SHELL,
|
|
21
21
|
the _is_foundation_css exemption) is mirrored in the sibling CONSUMER plugin's
|
|
22
|
-
adia-ui-factory/
|
|
22
|
+
adia-ui-factory/scripts/adia-lint. They are deliberate VENDORED copies — the catalog forbids
|
|
23
23
|
cross-plugin imports (each plugin installs copy-alone) — so any change to a shared rule must be
|
|
24
24
|
reconciled in BOTH files. forge-lint drops the consumer/app traps (SSR double-router, top-level
|
|
25
25
|
import, hardcoded overlay open) and adds MISSING-SCOPE; that divergence is the point.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Auto-generated** by this skill's `scripts/build-canonical-pattern-index.mjs`. Do not edit by hand — re-run the build script (from the monorepo root) after adding new canonicals to `apps/`, `catalog/`, or `playgrounds/`.
|
|
4
4
|
|
|
5
|
-
**Total canonical `.contents.html` files**:
|
|
5
|
+
**Total canonical `.contents.html` files**: 116
|
|
6
6
|
|
|
7
7
|
## How to use this index
|
|
8
8
|
|
|
@@ -105,14 +105,15 @@
|
|
|
105
105
|
- `catalog/ui-patterns/app/chat-streaming-surface/chat-streaming-surface.contents.html` — 16 lines (from UI-pattern atomics (catalog))
|
|
106
106
|
- `catalog/page-shells/app/chat-page/chat-page.contents.html` — 67 lines (from Page-shell templates (catalog))
|
|
107
107
|
|
|
108
|
-
## editor (
|
|
108
|
+
## editor (7)
|
|
109
109
|
|
|
110
110
|
> Editor panes (code, preview, toolbar). Lift editor-shell composition.
|
|
111
111
|
|
|
112
112
|
- `apps/genui/app/a2ui-editor/a2ui-editor.contents.html` — 261 lines (from GenUI app routes)
|
|
113
|
-
- `apps/genui/app/render-preview/render-preview.contents.html` —
|
|
113
|
+
- `apps/genui/app/render-preview/render-preview.contents.html` — 93 lines (from GenUI app routes)
|
|
114
114
|
- `catalog/ui-patterns/app/editor-code-pane/editor-code-pane.contents.html` — 16 lines (from UI-pattern atomics (catalog))
|
|
115
115
|
- `catalog/ui-patterns/app/editor-preview-pane/editor-preview-pane.contents.html` — 13 lines (from UI-pattern atomics (catalog))
|
|
116
|
+
- `catalog/ui-patterns/app/split-pane-editor/split-pane-editor.contents.html` — 31 lines (from UI-pattern atomics (catalog))
|
|
116
117
|
- `catalog/page-shells/app/doc-editor/doc-editor.contents.html` — 65 lines (from Page-shell templates (catalog))
|
|
117
118
|
- `catalog/page-shells/app/editor-page/editor-page.contents.html` — 25 lines (from Page-shell templates (catalog))
|
|
118
119
|
|
|
@@ -156,7 +157,7 @@
|
|
|
156
157
|
|
|
157
158
|
> Activity / event feeds. Lift activity-feed composition.
|
|
158
159
|
|
|
159
|
-
- `apps/genui/app/gen-ui-feed/gen-ui-feed.contents.html` —
|
|
160
|
+
- `apps/genui/app/gen-ui-feed/gen-ui-feed.contents.html` — 390 lines (from GenUI app routes)
|
|
160
161
|
- `catalog/ui-patterns/app/order-tracking-timeline/order-tracking-timeline.contents.html` — 45 lines (from UI-pattern atomics (catalog))
|
|
161
162
|
|
|
162
163
|
## marketing (2)
|
|
@@ -185,11 +186,12 @@
|
|
|
185
186
|
- `apps/genui/app/css-channel-demo/css-channel-demo.contents.html` — 70 lines (from GenUI app routes)
|
|
186
187
|
- `apps/genui/app/streams-bridge/streams-bridge.contents.html` — 80 lines (from GenUI app routes)
|
|
187
188
|
|
|
188
|
-
## other (
|
|
189
|
+
## other (44)
|
|
189
190
|
|
|
190
191
|
> Misc canonicals. Inspect contents.html to determine UI type.
|
|
191
192
|
|
|
192
193
|
- `apps/genui/app/gen-ui/gen-ui.contents.html` — 47 lines (from GenUI app routes)
|
|
194
|
+
- `apps/genui/app/patient-visit/patient-visit.contents.html` — 58 lines (from GenUI app routes)
|
|
193
195
|
- `apps/user-flow/app/auth/accept-invite/accept-invite.contents.html` — 52 lines (from User-flow templates)
|
|
194
196
|
- `apps/user-flow/app/auth/forgot-password/sent/sent.contents.html` — 33 lines (from User-flow templates)
|
|
195
197
|
- `apps/user-flow/app/auth/sign-in/magic-link/sent/sent.contents.html` — 35 lines (from User-flow templates)
|
|
@@ -216,6 +218,7 @@
|
|
|
216
218
|
- `apps/user-flow/app/registration/use-case/use-case.contents.html` — 77 lines (from User-flow templates)
|
|
217
219
|
- `apps/user-flow/app/registration/workspace/workspace.contents.html` — 45 lines (from User-flow templates)
|
|
218
220
|
- `catalog/ui-patterns/app/email-inbox-list/email-inbox-list.contents.html` — 135 lines (from UI-pattern atomics (catalog))
|
|
221
|
+
- `catalog/ui-patterns/app/filter-popover-form/filter-popover-form.contents.html` — 22 lines (from UI-pattern atomics (catalog))
|
|
219
222
|
- `catalog/ui-patterns/app/import-mapping/import-mapping.contents.html` — 217 lines (from UI-pattern atomics (catalog))
|
|
220
223
|
- `catalog/ui-patterns/app/loading-skeleton-placeholder/loading-skeleton-placeholder.contents.html` — 62 lines (from UI-pattern atomics (catalog))
|
|
221
224
|
- `catalog/ui-patterns/app/product-card-buy/product-card-buy.contents.html` — 39 lines (from UI-pattern atomics (catalog))
|
|
@@ -226,6 +229,8 @@
|
|
|
226
229
|
- `catalog/page-shells/app/form-page/form-page.contents.html` — 26 lines (from Page-shell templates (catalog))
|
|
227
230
|
- `catalog/page-shells/app/gallery-page/gallery-page.contents.html` — 79 lines (from Page-shell templates (catalog))
|
|
228
231
|
- `playgrounds/admin-shell/app/admin-shell.contents.html` — 99 lines (from Playgrounds)
|
|
232
|
+
- `playgrounds/agent-admin/app/agent-admin.contents.html` — 29 lines (from Playgrounds)
|
|
233
|
+
- `playgrounds/agent-chat/app/agent-chat.contents.html` — 28 lines (from Playgrounds)
|
|
229
234
|
- `playgrounds/chat/app/chat.contents.html` — 49 lines (from Playgrounds)
|
|
230
235
|
- `playgrounds/composed-flow/app/composed-flow.contents.html` — 294 lines (from Playgrounds)
|
|
231
236
|
- `playgrounds/table-toolbar/app/table-toolbar.contents.html` — 31 lines (from Playgrounds)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|