@adia-ai/adia-ui-forge 0.8.26 → 0.8.27

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-ui-kit-forge",
3
- "version": "0.8.26",
3
+ "version": "0.8.27",
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,16 @@
1
1
  # Changelog — adia-ui-kit-forge
2
2
 
3
+ ## [0.8.27] — 2026-08-05
4
+
5
+ ### Changed
6
+ - **Agent seats pin explicit models** — no seat rides the caller's tier (gh#618, PR #620).
7
+ - Release tooling: Step 4d.5 regenerates the derived genui catalog post-bump (gh#617, PR #619); publish workflows for `@adia-ai/agent`/`@adia-ai/persona` with tag↔manifest guards (v0.8.26 recovery, PR #624); `tag-lockstep` selftest derives its count from the roster.
8
+
9
+ ### Maintenance
10
+ - **`.claude-plugin/plugin.json` version bump** — moves in lockstep with package.json (the `/plugin update` cache key).
11
+ - **`agents/` touched in this release window** (3 file(s), e.g. `agents/a2ui-builder.md`) — carried by the entries above.
12
+ - **`skills/` touched in this release window** (2 file(s), e.g. `references/cut-procedure.md`) — carried by the entries above.
13
+
3
14
  ## [0.8.26] — 2026-08-05
4
15
 
5
16
  ### Maintenance
@@ -22,7 +22,10 @@ description: |
22
22
  tools: Read, Grep, Glob, Edit, Write, Bash
23
23
  skills:
24
24
  - adia-a2ui
25
- model: inherit
25
+ # Explicit pin (gh#618): never `inherit` — a Fable/planning caller would
26
+ # silently run this seat's pipeline-tuning and eval-diagnosis work on the
27
+ # caller's tier. Coding/execution seat → opus.
28
+ model: opus
26
29
  ---
27
30
 
28
31
  The a2ui-builder works the pipeline to the preloaded `adia-a2ui` procedure:
@@ -21,7 +21,10 @@ tools: Read, Grep, Glob, Bash
21
21
  skills:
22
22
  - adia-dogfood
23
23
  - adia-gen-review
24
- model: inherit
24
+ # Explicit pin (gh#618): a review/critic seat's verdict must not depend on
25
+ # the caller's model tier — never `inherit`. Sonnet matches the
26
+ # component-author precedent for framework-surface work.
27
+ model: sonnet
25
28
  ---
26
29
 
27
30
  The framework-reviewer runs the preloaded sweep and review procedures and
@@ -22,7 +22,10 @@ description: |
22
22
  tools: Read, Grep, Glob, Edit, Write, Bash
23
23
  skills:
24
24
  - adia-release
25
- model: inherit
25
+ # Explicit pin (gh#618): never `inherit` — this seat runs UNATTENDED cuts,
26
+ # where a cheap caller tier would make live gate-failure judgment calls
27
+ # with no operator watching. Execution seat with real judgment → opus.
28
+ model: opus
26
29
  ---
27
30
 
28
31
  The release-builder runs the preloaded `adia-release` procedure under its
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/adia-ui-forge",
3
- "version": "0.8.26",
3
+ "version": "0.8.27",
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",
@@ -129,6 +129,8 @@ Any red → route via [`gates-catalog.md`](gates-catalog.md); fix at the source,
129
129
 
130
130
  **4d.** `npm run check:lockstep` → `OK — all packages at X.Y.Z, all internal ranges at ^X.Y.0`.
131
131
 
132
+ **4d.5. Regenerate the derived genui catalog** (gh#617): `node scripts/build/derive-genui-catalog.mjs`. Its `catalogId` embeds the lockstep version (`adia.base@X.Y.Z`), so the 4b bump just invalidated `packages/genui/adia-catalog/{base,adia-pack}.json` — regenerated pre-bump (§3.0) or not. The v0.8.26 cut skipped this and `check:genui-catalog` failed in CI one push later. Both files ride the release commit (Step 5 stages them).
133
+
132
134
  **4e. Release docs + team notes** (gated, not optional): review the entry
133
135
  files the release touches (root README/CHANGELOG, per-package READMEs —
134
136
  content currency is YOUR judgment; the gate only proves presence), then
@@ -165,6 +167,7 @@ section already names, in this order:
165
167
  node "${CLAUDE_PLUGIN_ROOT}/skills/adia-release/scripts/bump.mjs" --from X.Y.Z-1 --to X.Y.Z # 4b
166
168
  npm install --package-lock-only --no-audit --no-fund # 4c
167
169
  npm run check:lockstep # 4d
170
+ node scripts/build/derive-genui-catalog.mjs # 4d.5 — catalogId carries the bumped version (gh#617)
168
171
  node scripts/release/check-release.mjs --pending-version X.Y.Z --fix # 4f
169
172
  node scripts/release/generate-release-notes.mjs --version X.Y.Z --write # 4e
170
173
  node scripts/release/check-release-docs.mjs --version X.Y.Z # 4e gate
@@ -187,6 +190,7 @@ git -C "$REPO" checkout -b "release/vX.Y.Z"
187
190
  git -C "$REPO" reset HEAD >/dev/null 2>&1
188
191
  git -C "$REPO" add package-lock.json packages/*/package.json packages/*/CHANGELOG.md \
189
192
  packages/a2ui/*/package.json packages/a2ui/*/CHANGELOG.md \
193
+ packages/genui/adia-catalog/base.json packages/genui/adia-catalog/adia-pack.json \
190
194
  docs/releases/vX.Y.Z.md # + in-scope source + Step-3.0 regen outputs
191
195
  git -C "$REPO" diff --cached --stat | tail -3 # count must match the allowlist
192
196
  ```
@@ -408,6 +408,13 @@ function step4PromoteAndBump(args) {
408
408
  sh('npm install --package-lock-only --no-audit --no-fund', args);
409
409
  sh('npm run check:lockstep', args);
410
410
 
411
+ // Step 4d.5 — regenerate the derived genui catalog (gh#617): its catalogId
412
+ // embeds the lockstep version (`adia.base@X.Y.Z`), so the bump above just
413
+ // invalidated base.json/adia-pack.json. The v0.8.26 cut skipped this and
414
+ // check:genui-catalog failed in CI one push later. Step 5 stages both files.
415
+ console.log('\n Step 4d.5 — regenerate derived genui catalog (catalogId carries the lockstep version):');
416
+ sh('node scripts/build/derive-genui-catalog.mjs', args);
417
+
411
418
  // Step 4e — generate docs/releases/vX.Y.Z.md (gh#399: neither this step nor
412
419
  // its staging into the release commit existed before — check-cut-hygiene's
413
420
  // "notes present" claim (Step 4g, below) went unverified until
@@ -484,6 +491,10 @@ function step5Commit(args) {
484
491
  // gh#399: Step 4e generates this but never staged it before — it landed
485
492
  // in a second PR after the release commit instead (v0.8.11 cut).
486
493
  `docs/releases/v${args.version}.md`,
494
+ // gh#617: Step 4d.5 regenerates these post-bump (catalogId embeds the
495
+ // lockstep version); unstaged, check:genui-catalog fails in CI (v0.8.26).
496
+ 'packages/genui/adia-catalog/base.json',
497
+ 'packages/genui/adia-catalog/adia-pack.json',
487
498
  ...PACKAGE_ROSTER.flatMap(({ name, dir, plugin }) => {
488
499
  // Roster-driven (H3): each package stages its manifest + CHANGELOG;
489
500
  // plugins also stage .claude-plugin/plugin.json (the /plugin-update