@adia-ai/adia-ui-forge 0.8.22 → 0.8.24

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
- "name": "adia-forge",
3
- "version": "0.8.22",
2
+ "name": "adia-ui-kit-forge",
3
+ "version": "0.8.24",
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,4 +1,22 @@
1
- # Changelog — adia-forge
1
+ # Changelog — adia-ui-kit-forge
2
+
3
+ ## [0.8.24] — 2026-07-30
4
+
5
+ ### Maintenance
6
+ - **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.24 work shipped in requiredIcons drift cleared across 16 components + checker comment handling (gh#550), worktree bootstrap workspace-link hardening + retrieval corpus-pin fix (gh#554), list-item two-line icon centering (gh#558), card footer bottom-pinning (gh#559). See `packages/web-components/CHANGELOG.md#0824--2026-07-30` for details.
7
+ - **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
8
+
9
+ ## [0.8.23] — 2026-07-30
10
+
11
+ ### Changed
12
+ - **Plugin renamed: `adia-forge` → `adia-ui-kit-forge`** (gh#520, operator ruling 2026-07-30). The in-repo marketplace renames `adia` → `adia-ui-kit`; the install pattern becomes `adia-ui-kit-forge@adia-ui-kit`. Directory and npm package identity (`@adia-ai/…`) unchanged. A new manifest name means a FRESH install — consumers re-add the marketplace under the new key and re-enable `adia-ui-kit-forge@adia-ui-kit`; old `adia-forge@adia` refs no longer resolve.
13
+
14
+ ### Changed
15
+ - **`bump.mjs` moves web-modules' exact peer pins each cut** (gh#489) — a `PINNED_REFS` entry rewrites the three `@adia-ai/*` peers alongside the version fields, with a mutation-free pre-flight and selftest coverage (digit-safe package-name matcher; no prefix-match on longer versions). Pairs with `check:lockstep`'s new `peer-exact-mismatch` rule so a pin left a cut behind fails the gate instead of shipping.
16
+
17
+ ### Maintenance
18
+ - **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
19
+ - **`skills/` touched in this release window** (1 file(s), e.g. `scripts/bump.mjs`) — carried by the entries above.
2
20
 
3
21
  ## [0.8.22] — 2026-07-29
4
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/adia-ui-forge",
3
- "version": "0.8.22",
3
+ "version": "0.8.24",
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",
@@ -47,6 +47,18 @@ const PINNED_REFS = {
47
47
  pattern: (from) => new RegExp(`(@adia-ai/a2ui-mcp@)${from.replace(/\./g, '\\.')}(?![\\d.])`),
48
48
  replace: (to) => `$1${to}`,
49
49
  },
50
+ // web-modules' internal peers pin the EXACT lockstep version (gh#489 —
51
+ // a caret peer never moves on a lockstep bump; adia-v2 sat on llm 0.8.19
52
+ // under web-modules 0.8.22). Same file bumpAll already rewrote for
53
+ // "version", so this pass re-reads it from disk before matching. The
54
+ // check:lockstep peer-exact-mismatch guard catches a pin left behind.
55
+ 'packages/web-modules': {
56
+ file: 'package.json',
57
+ label: '@adia-ai/* exact peer pins',
58
+ pattern: (from) =>
59
+ new RegExp(`("@adia-ai/[a-z0-9-]+":\\s*")${from.replace(/\./g, '\\.')}(?![\\d.])`, 'g'),
60
+ replace: (to) => `$1${to}`,
61
+ },
50
62
  };
51
63
 
52
64
  // Repo-level version references (path relative to REPO ROOT, not a package) —
@@ -263,6 +275,18 @@ function selftest() {
263
275
  console.error('selftest FAIL: PINNED_REFS pattern prefix-matched a longer version'); process.exit(1);
264
276
  }
265
277
 
278
+ // web-modules exact peer pins (gh#489) — all three move in one pass; a
279
+ // longer version must not prefix-match.
280
+ const peerCfg = PINNED_REFS['packages/web-modules'];
281
+ const peersBefore = '{"peerDependencies":{"@adia-ai/web-components": "0.8.22","@adia-ai/a2ui-runtime": "0.8.22","@adia-ai/llm": "0.8.22"}}';
282
+ const peersAfter = bumpPinnedRef(peersBefore, peerCfg, '0.8.22', '0.8.23');
283
+ if ((peersAfter.match(/0\.8\.23/g) || []).length !== 3 || peersAfter.includes('0.8.22')) {
284
+ console.error('selftest FAIL: web-modules peer pins did not all move'); process.exit(1);
285
+ }
286
+ if (bumpPinnedRef('{"@adia-ai/llm": "0.8.220"}', peerCfg, '0.8.22', '0.8.23') !== '{"@adia-ai/llm": "0.8.220"}') {
287
+ console.error('selftest FAIL: peer-pin pattern prefix-matched a longer version'); process.exit(1);
288
+ }
289
+
266
290
  // validatePinsAtFrom — the mutation-free pre-flight (reviewer finding: the
267
291
  // mid-loop pin check fired only after two files were already written).
268
292
  const goodPin = [{ pkg: 'packages/plugins/adia-ui-factory', cfg: pinCfg, path: '/nonexistent/.mcp.json', txt: pinBefore }];