@adia-ai/adia-ui-factory 0.8.12 → 0.8.14
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/.mcp.json +1 -1
- package/CHANGELOG.md +14 -0
- package/README.md +35 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adia-factory",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.14",
|
|
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",
|
package/.mcp.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog — adia-factory
|
|
2
2
|
|
|
3
|
+
## [0.8.14] — 2026-07-25
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **The documented install command works** (`README.md`; PR #412) — it read `adia-factory@gen-ui-kit`, but the marketplace manifest's own `name` field is `adia`; corrected to `adia-factory@adia`. The same PR relocated that manifest to the repo root, without which `claude plugin marketplace add` could not find it at all (see `adia-forge`'s entry for the mechanism).
|
|
7
|
+
|
|
8
|
+
### Maintenance
|
|
9
|
+
- **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
|
|
10
|
+
|
|
11
|
+
## [0.8.13] — 2026-07-25
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 11-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.13 work shipped in 12 named theme identities + select-menu Theme row in theme-panel; fixes scale.css wiring, Preset/Reset UX, and a Theme-select XSS finding. See `packages/web-modules/CHANGELOG.md#0813--2026-07-25` for details.
|
|
15
|
+
- **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
|
|
16
|
+
|
|
3
17
|
## [0.8.12] — 2026-07-24
|
|
4
18
|
|
|
5
19
|
### Fixed
|
package/README.md
CHANGED
|
@@ -7,6 +7,41 @@ hosts. Maintainer counterpart: **adia-forge**.
|
|
|
7
7
|
Re-engineered 2026-07 for the Fable 5 harness (design:
|
|
8
8
|
`.claude/docs/specs/plugin-estate-v2.md`).
|
|
9
9
|
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
**Via Git** (Claude Code plugin marketplace — requires access to this repo,
|
|
13
|
+
which is private):
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
/plugin marketplace add adiahealth/gen-ui-kit
|
|
17
|
+
/plugin install adia-factory@adia
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
(`adia-factory@adia`, not `@gen-ui-kit` — the marketplace registers under
|
|
21
|
+
its own manifest name, `adia`, not the repo name.)
|
|
22
|
+
|
|
23
|
+
Sources the in-repo manifest at `.claude-plugin/marketplace.json` (repo
|
|
24
|
+
root — `claude plugin marketplace add` always expects the manifest there,
|
|
25
|
+
with or without `--sparse`; it does not resolve a subdirectory manifest).
|
|
26
|
+
Only reachable by people who already have repo access — there is no public
|
|
27
|
+
marketplace repo for external/no-access installs (`docs/tickets/TKT-0001`,
|
|
28
|
+
`wontfix`).
|
|
29
|
+
|
|
30
|
+
**Via npm** (package content only):
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
npm install @adia-ai/adia-ui-factory
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Published in lockstep with the framework packages — pulls this plugin's
|
|
37
|
+
`skills`/`agents`/`commands`/`references`/`hooks` into
|
|
38
|
+
`node_modules/@adia-ai/adia-ui-factory` for vendoring or inspection. This
|
|
39
|
+
does **not** by itself register the plugin with Claude Code's `/plugin`
|
|
40
|
+
system — no marketplace manifest currently sources it from npm. The bare-repo
|
|
41
|
+
posture (ADR-0040) is about this plugin working standalone in any consumer
|
|
42
|
+
repo once installed some other way (no monorepo path assumptions in its own
|
|
43
|
+
scripts) — it does not add an npm-sourced marketplace entry.
|
|
44
|
+
|
|
10
45
|
## Skills (13)
|
|
11
46
|
|
|
12
47
|
| Skill | Species | Job |
|
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.14",
|
|
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
|
"keywords": [
|
|
6
6
|
"adia-ui",
|