@adia-ai/gen-ui 0.8.37
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/CHANGELOG.md +26 -0
- package/README.md +77 -0
- package/compose/CHANGELOG.md +1707 -0
- package/compose/README.md +215 -0
- package/compose/core/artifacts.js +262 -0
- package/compose/core/context-store.js +218 -0
- package/compose/core/generator.d.ts +4 -0
- package/compose/core/generator.js +602 -0
- package/compose/core/pipeline/engine.js +289 -0
- package/compose/core/pipeline/types.js +91 -0
- package/compose/core/plan-primitives.js +120 -0
- package/compose/core/plan-turn.js +145 -0
- package/compose/core/reference.js +150 -0
- package/compose/core/state.js +15 -0
- package/compose/evals/harness.d.ts +4 -0
- package/compose/evals/harness.mjs +193 -0
- package/compose/index.d.ts +4 -0
- package/compose/index.js +16 -0
- package/compose/shared/validate-and-repair.js +122 -0
- package/compose/strategies/_shared/chunk-loader.js +282 -0
- package/compose/strategies/cascade.d.ts +67 -0
- package/compose/strategies/cascade.js +165 -0
- package/compose/strategies/escalation.d.ts +13 -0
- package/compose/strategies/escalation.js +132 -0
- package/compose/strategies/free-form-composer/index.js +254 -0
- package/compose/strategies/free-form-composer/system-prompt.js +205 -0
- package/compose/strategies/free-form-composer/transpile.js +279 -0
- package/compose/strategies/monolithic/_shared.js +1619 -0
- package/compose/strategies/monolithic/generate-instant.js +228 -0
- package/compose/strategies/monolithic/generate-pro.js +490 -0
- package/compose/strategies/monolithic/generate-thinking.js +206 -0
- package/compose/strategies/registry.d.ts +20 -0
- package/compose/strategies/registry.js +495 -0
- package/compose/strategies/zettel/_smoke.js +27 -0
- package/compose/strategies/zettel/chunk-composer.js +214 -0
- package/compose/strategies/zettel/chunk-refiner.js +582 -0
- package/compose/strategies/zettel/chunk-synthesizer.js +458 -0
- package/compose/strategies/zettel/composer.js +78 -0
- package/compose/strategies/zettel/composition-library.js +418 -0
- package/compose/strategies/zettel/generate.js +15 -0
- package/compose/strategies/zettel/generator-adapter.d.ts +4 -0
- package/compose/strategies/zettel/generator-adapter.js +242 -0
- package/compose/strategies/zettel/issue-reporter.js +607 -0
- package/compose/strategies/zettel/session-store.js +121 -0
- package/compose/strategies/zettel/state-cache.js +158 -0
- package/compose/transpiler/transpiler-maps.js +675 -0
- package/compose/transpiler/transpiler.d.ts +4 -0
- package/compose/transpiler/transpiler.js +962 -0
- package/corpus/CHANGELOG.md +1957 -0
- package/corpus/README.md +279 -0
- package/corpus/catalog-a2ui_0_9.d.ts +4 -0
- package/corpus/catalog-a2ui_0_9.json +29571 -0
- package/corpus/catalog-a2ui_0_9_rules.txt +1215 -0
- package/corpus/chunk-embeddings.d.ts +4 -0
- package/corpus/chunk-embeddings.json +1 -0
- package/corpus/chunks/_index.json +16658 -0
- package/corpus/chunks/_source-hashes.json +571 -0
- package/corpus/chunks/access-denied-with-request.json +124 -0
- package/corpus/chunks/access-request-form.json +166 -0
- package/corpus/chunks/access-request-pending.json +133 -0
- package/corpus/chunks/accordion-settings.json +176 -0
- package/corpus/chunks/achievement-badges.json +413 -0
- package/corpus/chunks/achievement-unlock.json +104 -0
- package/corpus/chunks/action-list-record-actions.json +84 -0
- package/corpus/chunks/activity-feed.json +390 -0
- package/corpus/chunks/admin-page-header-flush.json +83 -0
- package/corpus/chunks/admin-page-header-title-description.json +80 -0
- package/corpus/chunks/admin-page-header-with-actions.json +107 -0
- package/corpus/chunks/admin-page-header-with-tabs.json +144 -0
- package/corpus/chunks/admin-shell-rounded-borderless.json +287 -0
- package/corpus/chunks/admin-shell-standard.json +310 -0
- package/corpus/chunks/admin-sidebar-brand-signin.json +158 -0
- package/corpus/chunks/admin-sidebar-brand-version.json +130 -0
- package/corpus/chunks/admin-sidebar-flat-nav.json +131 -0
- package/corpus/chunks/admin-sidebar-nav-dividers.json +150 -0
- package/corpus/chunks/admin-sidebar-nav-groups.json +171 -0
- package/corpus/chunks/admin-sidebar-workspace-switcher.json +139 -0
- package/corpus/chunks/admin-topbar-breadcrumb-actions.json +130 -0
- package/corpus/chunks/admin-topbar-breadcrumb-minimal.json +79 -0
- package/corpus/chunks/admin-topbar-deep-breadcrumb.json +129 -0
- package/corpus/chunks/admin-topbar-search.json +104 -0
- package/corpus/chunks/admin-topbar-status-indicator.json +122 -0
- package/corpus/chunks/admin-topbar-trailing-toggle.json +114 -0
- package/corpus/chunks/agent-activity-feed.json +163 -0
- package/corpus/chunks/agent-artifact-stub-card.json +115 -0
- package/corpus/chunks/agent-canvas-shell.json +305 -0
- package/corpus/chunks/agent-citations-source-chips.json +82 -0
- package/corpus/chunks/agent-command-palette-search.json +120 -0
- package/corpus/chunks/agent-cost-detailed.json +260 -0
- package/corpus/chunks/agent-cost-inline.json +78 -0
- package/corpus/chunks/agent-memory-detail.json +181 -0
- package/corpus/chunks/agent-memory-editor.json +173 -0
- package/corpus/chunks/agent-memory-list.json +207 -0
- package/corpus/chunks/agent-pipeline-status-stages.json +61 -0
- package/corpus/chunks/agent-prompt-card.json +179 -0
- package/corpus/chunks/agent-prompt-library-grid.json +341 -0
- package/corpus/chunks/agent-prompt-picker.json +282 -0
- package/corpus/chunks/agent-rate-limit.json +100 -0
- package/corpus/chunks/agent-reasoning-collapsed.json +128 -0
- package/corpus/chunks/agent-tool-call-accordion.json +109 -0
- package/corpus/chunks/agent-tool-call-collapsed.json +98 -0
- package/corpus/chunks/agent-tool-call-error.json +112 -0
- package/corpus/chunks/agent-tool-call-result.json +145 -0
- package/corpus/chunks/agent-tool-call-running.json +85 -0
- package/corpus/chunks/agent-tool-call-success.json +137 -0
- package/corpus/chunks/agent-trace-timeline.json +244 -0
- package/corpus/chunks/ai-streaming-response.json +147 -0
- package/corpus/chunks/alert-banner-stack.json +78 -0
- package/corpus/chunks/alert-banner.json +55 -0
- package/corpus/chunks/alert-dialog-simple.json +72 -0
- package/corpus/chunks/alert-dialog-typed.json +107 -0
- package/corpus/chunks/alert-dialog-unsaved.json +81 -0
- package/corpus/chunks/analytics-chart.json +213 -0
- package/corpus/chunks/analytics-sparklines-dashboard.json +259 -0
- package/corpus/chunks/anchor-bar-selection-bar.json +226 -0
- package/corpus/chunks/api-key-table.json +148 -0
- package/corpus/chunks/api-keys-create.json +140 -0
- package/corpus/chunks/api-keys-list.json +271 -0
- package/corpus/chunks/app-nav-badges-counts.json +77 -0
- package/corpus/chunks/app-nav-badges-group-rollup-badges.json +100 -0
- package/corpus/chunks/app-nav-badges-plan-tiers.json +76 -0
- package/corpus/chunks/app-nav-badges-status-callouts.json +75 -0
- package/corpus/chunks/app-nav-full-example.json +195 -0
- package/corpus/chunks/app-nav-groups.json +103 -0
- package/corpus/chunks/app-nav-items.json +74 -0
- package/corpus/chunks/app-nav-labels-and-dividers.json +92 -0
- package/corpus/chunks/app-nav-spacer.json +77 -0
- package/corpus/chunks/app-product-listing-card.json +214 -0
- package/corpus/chunks/approvals-detail.json +240 -0
- package/corpus/chunks/approvals-queue.json +321 -0
- package/corpus/chunks/audit-log-basic.json +184 -0
- package/corpus/chunks/audit-log.json +174 -0
- package/corpus/chunks/auth-account-deleted-actions.json +51 -0
- package/corpus/chunks/auth-account-deleted.json +202 -0
- package/corpus/chunks/auth-card-content.json +260 -0
- package/corpus/chunks/auth-card-header.json +205 -0
- package/corpus/chunks/auth-email-entry.json +65 -0
- package/corpus/chunks/auth-email-verify-confirm.json +52 -0
- package/corpus/chunks/auth-email-verify.json +196 -0
- package/corpus/chunks/auth-forbidden-actions.json +59 -0
- package/corpus/chunks/auth-forbidden.json +203 -0
- package/corpus/chunks/auth-invite-actions.json +49 -0
- package/corpus/chunks/auth-invite-team-card.json +86 -0
- package/corpus/chunks/auth-link-expired-form.json +65 -0
- package/corpus/chunks/auth-link-expired.json +196 -0
- package/corpus/chunks/auth-locked-account.json +211 -0
- package/corpus/chunks/auth-locked-recovery-options.json +60 -0
- package/corpus/chunks/auth-mfa-enrollment-submit.json +54 -0
- package/corpus/chunks/auth-mfa-enrollment.json +284 -0
- package/corpus/chunks/auth-mfa-fallback-actions.json +52 -0
- package/corpus/chunks/auth-mfa-recovery.json +61 -0
- package/corpus/chunks/auth-new-password-form.json +75 -0
- package/corpus/chunks/auth-new-password.json +217 -0
- package/corpus/chunks/auth-oauth-fallback-actions.json +52 -0
- package/corpus/chunks/auth-oauth-interstitial.json +160 -0
- package/corpus/chunks/auth-password-challenge.json +94 -0
- package/corpus/chunks/auth-password-reset-form.json +64 -0
- package/corpus/chunks/auth-password-reset.json +195 -0
- package/corpus/chunks/auth-profile-form.json +72 -0
- package/corpus/chunks/auth-profile-setup.json +194 -0
- package/corpus/chunks/auth-reset-sent.json +188 -0
- package/corpus/chunks/auth-session-expired-actions.json +52 -0
- package/corpus/chunks/auth-session-expired.json +201 -0
- package/corpus/chunks/auth-signin-card-email.json +245 -0
- package/corpus/chunks/auth-signin-card-magic-link.json +147 -0
- package/corpus/chunks/auth-signin-card-mfa.json +231 -0
- package/corpus/chunks/auth-signin-card-otp.json +205 -0
- package/corpus/chunks/auth-signin-card-password.json +264 -0
- package/corpus/chunks/auth-signin-card-recovery.json +218 -0
- package/corpus/chunks/auth-signout-actions.json +51 -0
- package/corpus/chunks/auth-signout.json +184 -0
- package/corpus/chunks/auth-signup-email-entry.json +66 -0
- package/corpus/chunks/auth-signup-entry.json +281 -0
- package/corpus/chunks/auth-signup-social-auths.json +54 -0
- package/corpus/chunks/auth-signup-verify.json +227 -0
- package/corpus/chunks/auth-social-auths.json +62 -0
- package/corpus/chunks/auth-sso-providers.json +55 -0
- package/corpus/chunks/auth-sso-required.json +213 -0
- package/corpus/chunks/auth-team-invite.json +288 -0
- package/corpus/chunks/avatar-group-overflow.json +137 -0
- package/corpus/chunks/avatar-stack-overflow.json +124 -0
- package/corpus/chunks/banner-announcement-beta.json +99 -0
- package/corpus/chunks/banner-announcement-promo.json +102 -0
- package/corpus/chunks/banner-live-update.json +102 -0
- package/corpus/chunks/banner-system-maintenance.json +101 -0
- package/corpus/chunks/banner-system-offline.json +85 -0
- package/corpus/chunks/banner-system-update.json +102 -0
- package/corpus/chunks/bell-menu-empty.json +107 -0
- package/corpus/chunks/bell-menu-unread.json +395 -0
- package/corpus/chunks/billing-cancel-subscription-danger.json +61 -0
- package/corpus/chunks/billing-invoice-history-table.json +75 -0
- package/corpus/chunks/billing-overview.json +202 -0
- package/corpus/chunks/billing-payment-method-card-on-file.json +157 -0
- package/corpus/chunks/billing-progress-label.json +101 -0
- package/corpus/chunks/blog-post-card.json +212 -0
- package/corpus/chunks/breadcrumb-navigation.json +72 -0
- package/corpus/chunks/bulk-action-toolbar-floating.json +199 -0
- package/corpus/chunks/bulk-action-toolbar-swap.json +158 -0
- package/corpus/chunks/bulk-selection-actions-bar.json +162 -0
- package/corpus/chunks/business-address-form.json +953 -0
- package/corpus/chunks/calendar-month-view.json +74 -0
- package/corpus/chunks/card-grid-images.json +459 -0
- package/corpus/chunks/card-header-with-description.json +47 -0
- package/corpus/chunks/card-with-empty-state.json +96 -0
- package/corpus/chunks/card-with-form.json +143 -0
- package/corpus/chunks/card-with-sparkline.json +90 -0
- package/corpus/chunks/card-with-stat-kpi.json +86 -0
- package/corpus/chunks/changelog-feed-basic.json +470 -0
- package/corpus/chunks/chart-in-card-chart-plus-breakdown.json +188 -0
- package/corpus/chunks/chart-in-card-chart-plus-stat.json +89 -0
- package/corpus/chunks/chart-in-card-chart-with-filter-pills.json +124 -0
- package/corpus/chunks/chart-in-card-full-bleed-legend.json +116 -0
- package/corpus/chunks/chart-in-card-full-chart.json +107 -0
- package/corpus/chunks/chart-in-card-sparkline-tile.json +93 -0
- package/corpus/chunks/chart-in-card-stat-with-sparkline.json +73 -0
- package/corpus/chunks/chart-in-card-trend-footer.json +115 -0
- package/corpus/chunks/chart-with-filter-pills.json +169 -0
- package/corpus/chunks/chat-empty-state-hero.json +102 -0
- package/corpus/chunks/chat-message-assistant-byline.json +85 -0
- package/corpus/chunks/chat-message-user-byline.json +84 -0
- package/corpus/chunks/chat-page-shell.json +379 -0
- package/corpus/chunks/chat-streaming-surface.json +169 -0
- package/corpus/chunks/checkout-order-summary-card.json +140 -0
- package/corpus/chunks/code-snippet.json +107 -0
- package/corpus/chunks/col-form-stack.json +93 -0
- package/corpus/chunks/col-heading-body-action.json +79 -0
- package/corpus/chunks/col-stat-label.json +63 -0
- package/corpus/chunks/color-picker-swatches.json +153 -0
- package/corpus/chunks/command-palette.json +327 -0
- package/corpus/chunks/comments-composer.json +158 -0
- package/corpus/chunks/comments-mention-menu.json +237 -0
- package/corpus/chunks/comments-thread.json +344 -0
- package/corpus/chunks/commerce-pricing-tiers.json +401 -0
- package/corpus/chunks/comparison-table.json +246 -0
- package/corpus/chunks/contact-form-card.json +197 -0
- package/corpus/chunks/contact-form.json +157 -0
- package/corpus/chunks/contact-support-form.json +702 -0
- package/corpus/chunks/conversion-funnel-4-step-funnel.json +139 -0
- package/corpus/chunks/conversion-funnel-6step.json +151 -0
- package/corpus/chunks/conversion-funnel-wide-summary.json +192 -0
- package/corpus/chunks/conversion-funnel-with-segment-compare.json +202 -0
- package/corpus/chunks/cta-banner-centered.json +102 -0
- package/corpus/chunks/dashboard-acquisition-panel.json +212 -0
- package/corpus/chunks/dashboard-admin-page.json +104 -0
- package/corpus/chunks/dashboard-audience-kpis.json +165 -0
- package/corpus/chunks/dashboard-audience-panel.json +756 -0
- package/corpus/chunks/dashboard-behavior-panel.json +114 -0
- package/corpus/chunks/dashboard-chart-recent.json +566 -0
- package/corpus/chunks/dashboard-cohort-retention.json +83 -0
- package/corpus/chunks/dashboard-conversion-panel.json +234 -0
- package/corpus/chunks/dashboard-country-list.json +304 -0
- package/corpus/chunks/dashboard-filter-bar.json +118 -0
- package/corpus/chunks/dashboard-funnel.json +142 -0
- package/corpus/chunks/dashboard-notifications-panel.json +423 -0
- package/corpus/chunks/dashboard-overview-panel.json +1644 -0
- package/corpus/chunks/dashboard-page-header.json +166 -0
- package/corpus/chunks/dashboard-pages-table.json +86 -0
- package/corpus/chunks/dashboard-quick-actions.json +116 -0
- package/corpus/chunks/dashboard-reports-panel.json +166 -0
- package/corpus/chunks/dashboard-reports-table.json +138 -0
- package/corpus/chunks/dashboard-storage-card.json +117 -0
- package/corpus/chunks/dashboard-tabs.json +86 -0
- package/corpus/chunks/dashboard-team-actions-storage.json +605 -0
- package/corpus/chunks/dashboard-team-list.json +334 -0
- package/corpus/chunks/dashboard-traffic-channels.json +184 -0
- package/corpus/chunks/dashboard-transactions-table.json +145 -0
- package/corpus/chunks/data-export-history.json +192 -0
- package/corpus/chunks/data-export-request.json +197 -0
- package/corpus/chunks/data-import-wizard.json +391 -0
- package/corpus/chunks/date-range-picker.json +156 -0
- package/corpus/chunks/date-time-picker-form.json +222 -0
- package/corpus/chunks/departments-checkbox-form.json +390 -0
- package/corpus/chunks/destructive-confirm-modal.json +149 -0
- package/corpus/chunks/diff-inline.json +84 -0
- package/corpus/chunks/diff-side-by-side.json +131 -0
- package/corpus/chunks/diff-structured.json +216 -0
- package/corpus/chunks/digest-email-preview.json +374 -0
- package/corpus/chunks/divider-text-label.json +87 -0
- package/corpus/chunks/doc-editor-shell.json +356 -0
- package/corpus/chunks/drawer-2fa-key.json +273 -0
- package/corpus/chunks/drawer-2fa-sms.json +261 -0
- package/corpus/chunks/drawer-2fa-totp.json +385 -0
- package/corpus/chunks/drawer-cancel-sub.json +636 -0
- package/corpus/chunks/drawer-change-plan.json +561 -0
- package/corpus/chunks/drawer-custom-roles.json +696 -0
- package/corpus/chunks/drawer-data-start.json +171 -0
- package/corpus/chunks/drawer-delete-account.json +341 -0
- package/corpus/chunks/drawer-delete-workspace.json +362 -0
- package/corpus/chunks/drawer-discord.json +434 -0
- package/corpus/chunks/drawer-figma.json +401 -0
- package/corpus/chunks/drawer-first-dashboard.json +220 -0
- package/corpus/chunks/drawer-gcal.json +475 -0
- package/corpus/chunks/drawer-github.json +589 -0
- package/corpus/chunks/drawer-invite.json +397 -0
- package/corpus/chunks/drawer-record-detail.json +44 -0
- package/corpus/chunks/drawer-report.json +528 -0
- package/corpus/chunks/drawer-revoke-session.json +331 -0
- package/corpus/chunks/drawer-role.json +190 -0
- package/corpus/chunks/drawer-slack.json +429 -0
- package/corpus/chunks/drawer-smtp.json +476 -0
- package/corpus/chunks/drawer-source.json +294 -0
- package/corpus/chunks/drawer-transaction.json +493 -0
- package/corpus/chunks/drawer-with-create-form.json +43 -0
- package/corpus/chunks/editor-code-pane.json +204 -0
- package/corpus/chunks/editor-page-shell.json +149 -0
- package/corpus/chunks/editor-preview-pane.json +136 -0
- package/corpus/chunks/editor-statusbar-ready.json +99 -0
- package/corpus/chunks/editor-toolbar-import-export.json +195 -0
- package/corpus/chunks/email-inbox-list.json +678 -0
- package/corpus/chunks/empty-state-danger.json +58 -0
- package/corpus/chunks/empty-state-minimal.json +44 -0
- package/corpus/chunks/empty-state-warning.json +53 -0
- package/corpus/chunks/empty-state.json +65 -0
- package/corpus/chunks/error-404-actions.json +54 -0
- package/corpus/chunks/error-404.json +204 -0
- package/corpus/chunks/error-500-actions.json +61 -0
- package/corpus/chunks/error-500.json +220 -0
- package/corpus/chunks/error-maintenance-actions.json +53 -0
- package/corpus/chunks/error-maintenance.json +203 -0
- package/corpus/chunks/error-page-shell.json +132 -0
- package/corpus/chunks/export-flow-async.json +210 -0
- package/corpus/chunks/export-flow-delivery.json +163 -0
- package/corpus/chunks/export-flow-sync.json +162 -0
- package/corpus/chunks/extended-profile-form.json +512 -0
- package/corpus/chunks/faq-accordion.json +123 -0
- package/corpus/chunks/feature-grid-icons.json +314 -0
- package/corpus/chunks/feature-grid-three-cards.json +187 -0
- package/corpus/chunks/feature-toggle-switch-grid.json +213 -0
- package/corpus/chunks/file-upload-dnd.json +166 -0
- package/corpus/chunks/file-upload-field.json +97 -0
- package/corpus/chunks/file-upload-form.json +251 -0
- package/corpus/chunks/filter-bar-active-filters.json +176 -0
- package/corpus/chunks/filter-bar-filter-bar-with-table.json +113 -0
- package/corpus/chunks/filter-bar-saved-views.json +117 -0
- package/corpus/chunks/filter-popover-form.json +137 -0
- package/corpus/chunks/footer-multi-column.json +270 -0
- package/corpus/chunks/footer-primary-only.json +41 -0
- package/corpus/chunks/form-checkbox-group.json +65 -0
- package/corpus/chunks/form-drawer-edit-form.json +178 -0
- package/corpus/chunks/form-drawer-simple-form.json +151 -0
- package/corpus/chunks/form-drawer-tall-form.json +325 -0
- package/corpus/chunks/form-field-email-hint.json +53 -0
- package/corpus/chunks/form-field-range.json +54 -0
- package/corpus/chunks/form-field-required.json +52 -0
- package/corpus/chunks/form-field-select.json +66 -0
- package/corpus/chunks/form-field-textarea.json +51 -0
- package/corpus/chunks/form-field-with-error.json +151 -0
- package/corpus/chunks/form-fields-two-column.json +69 -0
- package/corpus/chunks/form-page-shell.json +146 -0
- package/corpus/chunks/form-switch-toggle.json +41 -0
- package/corpus/chunks/form-system-live-demo.json +123 -0
- package/corpus/chunks/forms-address-autocomplete.json +277 -0
- package/corpus/chunks/forms-address-fields.json +221 -0
- package/corpus/chunks/forms-conditional-reveal.json +195 -0
- package/corpus/chunks/gallery-page-shell.json +444 -0
- package/corpus/chunks/grid-2col-entry-cards.json +140 -0
- package/corpus/chunks/grid-kpi-4col.json +164 -0
- package/corpus/chunks/grid-responsive-kpi.json +165 -0
- package/corpus/chunks/hero-cta-simple.json +107 -0
- package/corpus/chunks/hero-cta-split.json +183 -0
- package/corpus/chunks/hero-section-split.json +111 -0
- package/corpus/chunks/icon-text-row.json +60 -0
- package/corpus/chunks/image-caption-tile.json +99 -0
- package/corpus/chunks/image-carousel.json +156 -0
- package/corpus/chunks/image-thumbnail-grid.json +77 -0
- package/corpus/chunks/image-upload-preview.json +118 -0
- package/corpus/chunks/import-mapping-flow.json +972 -0
- package/corpus/chunks/inline-dialog-rename.json +128 -0
- package/corpus/chunks/inline-dialog-schedule.json +154 -0
- package/corpus/chunks/inline-dialog-status.json +179 -0
- package/corpus/chunks/integrations-api-keys-card-list.json +475 -0
- package/corpus/chunks/integrations-connect-form.json +550 -0
- package/corpus/chunks/integrations-grid.json +141 -0
- package/corpus/chunks/integrations-webhooks-empty-state.json +66 -0
- package/corpus/chunks/inventory-list-stock.json +137 -0
- package/corpus/chunks/invite-members.json +153 -0
- package/corpus/chunks/invoice-line-items.json +493 -0
- package/corpus/chunks/kanban-board-3col.json +713 -0
- package/corpus/chunks/kanban-page-shell.json +671 -0
- package/corpus/chunks/key-value-detail-list.json +242 -0
- package/corpus/chunks/keyboard-shortcut-display.json +250 -0
- package/corpus/chunks/labeled-textarea.json +45 -0
- package/corpus/chunks/leaderboard-table.json +140 -0
- package/corpus/chunks/library-browser-search-filter.json +109 -0
- package/corpus/chunks/linked-record-row.json +61 -0
- package/corpus/chunks/loading-skeleton-placeholder.json +387 -0
- package/corpus/chunks/login-form-card.json +207 -0
- package/corpus/chunks/logo-cloud-trusted-by.json +235 -0
- package/corpus/chunks/map-with-location-list.json +293 -0
- package/corpus/chunks/marketing-hero-cta.json +102 -0
- package/corpus/chunks/marketing-page-shell.json +352 -0
- package/corpus/chunks/masonry-gallery.json +154 -0
- package/corpus/chunks/member-edit-drawer.json +236 -0
- package/corpus/chunks/members-active-table-search-filter.json +184 -0
- package/corpus/chunks/members-pending-invites-cards.json +251 -0
- package/corpus/chunks/members-roles-permissions-list.json +146 -0
- package/corpus/chunks/menu-context-actions.json +113 -0
- package/corpus/chunks/metadata-description-list.json +178 -0
- package/corpus/chunks/modal-create-project-form.json +133 -0
- package/corpus/chunks/modal-preferences-tabs.json +147 -0
- package/corpus/chunks/multi-field-form-validation.json +394 -0
- package/corpus/chunks/nav-menu-icons.json +74 -0
- package/corpus/chunks/newsletter-subscription.json +190 -0
- package/corpus/chunks/notification-badges-feed.json +411 -0
- package/corpus/chunks/notification-preferences-panel.json +238 -0
- package/corpus/chunks/onb-completion.json +139 -0
- package/corpus/chunks/onb-extension-install.json +172 -0
- package/corpus/chunks/onb-hero-welcome.json +156 -0
- package/corpus/chunks/onb-import-picker.json +86 -0
- package/corpus/chunks/onb-mobile-handoff.json +121 -0
- package/corpus/chunks/onb-notification-prefs.json +83 -0
- package/corpus/chunks/onb-persona-picker.json +82 -0
- package/corpus/chunks/onb-provider-tiles.json +137 -0
- package/corpus/chunks/onb-settings-review.json +257 -0
- package/corpus/chunks/onb-step-footer.json +121 -0
- package/corpus/chunks/onb-step-header.json +121 -0
- package/corpus/chunks/onb-step-progress.json +140 -0
- package/corpus/chunks/onb-step-shell.json +380 -0
- package/corpus/chunks/onb-story-pane.json +121 -0
- package/corpus/chunks/onb-tutorial-steps.json +193 -0
- package/corpus/chunks/order-confirmation-success-card.json +177 -0
- package/corpus/chunks/order-tracking-timeline.json +131 -0
- package/corpus/chunks/pagination-controls.json +82 -0
- package/corpus/chunks/pane-settings-sidebar.json +204 -0
- package/corpus/chunks/patient-visit-shell.json +191 -0
- package/corpus/chunks/payment-checkout-form.json +341 -0
- package/corpus/chunks/payment-method-form.json +328 -0
- package/corpus/chunks/period-comparison.json +236 -0
- package/corpus/chunks/permission-matrix-table.json +438 -0
- package/corpus/chunks/permissions-matrix-grid.json +111 -0
- package/corpus/chunks/permissions-matrix-summary.json +157 -0
- package/corpus/chunks/permissions-role-picker-radio.json +107 -0
- package/corpus/chunks/permissions-role-picker-select.json +101 -0
- package/corpus/chunks/permissions-share-link.json +256 -0
- package/corpus/chunks/permissions-share-people.json +297 -0
- package/corpus/chunks/permissions-sharing-scopes.json +109 -0
- package/corpus/chunks/plan-selection-form.json +529 -0
- package/corpus/chunks/playground-a2ui.json +181 -0
- package/corpus/chunks/playground-agent-admin.json +117 -0
- package/corpus/chunks/playground-agent-chat.json +126 -0
- package/corpus/chunks/playground-app-shell.json +488 -0
- package/corpus/chunks/playground-chat.json +265 -0
- package/corpus/chunks/playground-construct-canvas.json +118 -0
- package/corpus/chunks/playground-css-channel.json +487 -0
- package/corpus/chunks/playground-gen-ui.json +224 -0
- package/corpus/chunks/playground-render-preview.json +369 -0
- package/corpus/chunks/playground-streams-bridge.json +437 -0
- package/corpus/chunks/playground-table-toolbar.json +38 -0
- package/corpus/chunks/popover-with-content.json +118 -0
- package/corpus/chunks/pricing-tiers.json +561 -0
- package/corpus/chunks/product-tour.json +158 -0
- package/corpus/chunks/profile-public.json +297 -0
- package/corpus/chunks/progress-tracker-milestones.json +294 -0
- package/corpus/chunks/radio-button-group.json +83 -0
- package/corpus/chunks/rating-stars-review-summary.json +259 -0
- package/corpus/chunks/reactions-bar.json +75 -0
- package/corpus/chunks/reactions-picker.json +245 -0
- package/corpus/chunks/real-time-metrics-dashboard.json +344 -0
- package/corpus/chunks/record-detail-drawer-simple-detail.json +296 -0
- package/corpus/chunks/record-detail-drawer-tabbed-detail.json +443 -0
- package/corpus/chunks/referral-share-link.json +128 -0
- package/corpus/chunks/referral-status.json +243 -0
- package/corpus/chunks/reg-address-form.json +825 -0
- package/corpus/chunks/reg-billing-card.json +210 -0
- package/corpus/chunks/reg-brand-scrape.json +599 -0
- package/corpus/chunks/reg-departments-toggle.json +259 -0
- package/corpus/chunks/reg-extended-profile.json +356 -0
- package/corpus/chunks/reg-final-done.json +457 -0
- package/corpus/chunks/reg-helpdesk-grid.json +571 -0
- package/corpus/chunks/reg-import-picker.json +112 -0
- package/corpus/chunks/reg-integrations-grid.json +418 -0
- package/corpus/chunks/reg-invite-form.json +245 -0
- package/corpus/chunks/reg-legal-entity.json +260 -0
- package/corpus/chunks/reg-org-chart-review.json +891 -0
- package/corpus/chunks/reg-profile-identity.json +188 -0
- package/corpus/chunks/reg-step-footer.json +201 -0
- package/corpus/chunks/reg-step-header.json +201 -0
- package/corpus/chunks/reg-step-progress.json +236 -0
- package/corpus/chunks/reg-step-shell.json +605 -0
- package/corpus/chunks/reg-story-pane.json +201 -0
- package/corpus/chunks/reg-success-summary.json +257 -0
- package/corpus/chunks/reg-team-size.json +128 -0
- package/corpus/chunks/reg-usecase-picker.json +104 -0
- package/corpus/chunks/reg-workspace-name.json +159 -0
- package/corpus/chunks/responsive-grid-pattern.json +71 -0
- package/corpus/chunks/responsive-kpi-grid.json +166 -0
- package/corpus/chunks/responsive-row-pattern.json +71 -0
- package/corpus/chunks/responsive-shell-sidebar.json +308 -0
- package/corpus/chunks/responsive-wrap-at-pattern.json +124 -0
- package/corpus/chunks/retention-cohort-default-retention.json +80 -0
- package/corpus/chunks/retention-cohort-stat-pair.json +163 -0
- package/corpus/chunks/retention-cohort-with-legend.json +135 -0
- package/corpus/chunks/revenue-heatmap.json +82 -0
- package/corpus/chunks/role-management.json +272 -0
- package/corpus/chunks/row-action-cluster.json +54 -0
- package/corpus/chunks/row-avatar-name-role.json +71 -0
- package/corpus/chunks/row-icon-label.json +52 -0
- package/corpus/chunks/row-spread-label-value.json +54 -0
- package/corpus/chunks/row-wrap-tags.json +72 -0
- package/corpus/chunks/schedule-meeting-form-card.json +229 -0
- package/corpus/chunks/search-recents-menu.json +195 -0
- package/corpus/chunks/search-results-grouped.json +357 -0
- package/corpus/chunks/search-results-list.json +202 -0
- package/corpus/chunks/search-saved-views.json +356 -0
- package/corpus/chunks/search-with-filters.json +311 -0
- package/corpus/chunks/searchable-picker-modal.json +164 -0
- package/corpus/chunks/section-with-stack.json +48 -0
- package/corpus/chunks/security-active-sessions-devices.json +287 -0
- package/corpus/chunks/security-change-password-form.json +102 -0
- package/corpus/chunks/security-delete-account-danger.json +79 -0
- package/corpus/chunks/segmented-control-billing-tabs.json +164 -0
- package/corpus/chunks/select-multiple-preselected.json +70 -0
- package/corpus/chunks/settings-2fa-setup.json +307 -0
- package/corpus/chunks/settings-admin-page.json +1205 -0
- package/corpus/chunks/settings-appearance-primitives.json +145 -0
- package/corpus/chunks/settings-appearance-theme-panel.json +55 -0
- package/corpus/chunks/settings-appearance.json +81 -0
- package/corpus/chunks/settings-danger-zone-delete-workspace.json +93 -0
- package/corpus/chunks/settings-general-form.json +69 -0
- package/corpus/chunks/settings-integrations.json +298 -0
- package/corpus/chunks/settings-members-invite.json +112 -0
- package/corpus/chunks/settings-notification-activity-checkboxes.json +108 -0
- package/corpus/chunks/settings-notification-channels-switches.json +101 -0
- package/corpus/chunks/settings-page-shell.json +190 -0
- package/corpus/chunks/settings-privacy.json +83 -0
- package/corpus/chunks/settings-profile-security.json +122 -0
- package/corpus/chunks/settings-toggle-switches.json +66 -0
- package/corpus/chunks/sidebar-nav.json +120 -0
- package/corpus/chunks/sidebar-navigation-panel.json +165 -0
- package/corpus/chunks/signup-form-card.json +218 -0
- package/corpus/chunks/signup-team-size-form.json +259 -0
- package/corpus/chunks/single-select-card-form.json +231 -0
- package/corpus/chunks/slider-range-controls.json +119 -0
- package/corpus/chunks/social-media-post-card.json +159 -0
- package/corpus/chunks/sortable-list.json +307 -0
- package/corpus/chunks/sortable-search-paginate-table.json +162 -0
- package/corpus/chunks/split-pane-editor.json +146 -0
- package/corpus/chunks/stack-avatar-badge-overlay.json +53 -0
- package/corpus/chunks/stack-image-shimmer.json +51 -0
- package/corpus/chunks/stat-cards-kpi-dashboard.json +178 -0
- package/corpus/chunks/stats-band-big-numbers.json +175 -0
- package/corpus/chunks/status-dashboard.json +282 -0
- package/corpus/chunks/stepper-form-wizard.json +165 -0
- package/corpus/chunks/subscription-status-renewal-card.json +285 -0
- package/corpus/chunks/survey-rating-form.json +165 -0
- package/corpus/chunks/swiper-product-carousel.json +349 -0
- package/corpus/chunks/swiper-testimonial-carousel.json +279 -0
- package/corpus/chunks/table-empty-state.json +116 -0
- package/corpus/chunks/table-inline-edit-row.json +269 -0
- package/corpus/chunks/table-spreadsheet-cells.json +334 -0
- package/corpus/chunks/table-toolbar-no-search.json +42 -0
- package/corpus/chunks/table-toolbar-with-table.json +208 -0
- package/corpus/chunks/table-with-toolbar-card.json +80 -0
- package/corpus/chunks/tabs-with-panels.json +187 -0
- package/corpus/chunks/tag-chips-filter.json +100 -0
- package/corpus/chunks/team-invite-form.json +380 -0
- package/corpus/chunks/team-members-list.json +341 -0
- package/corpus/chunks/testimonial-grid.json +269 -0
- package/corpus/chunks/testimonial-pull-quote.json +137 -0
- package/corpus/chunks/testimonials-avatar-cards.json +286 -0
- package/corpus/chunks/timeline-events.json +89 -0
- package/corpus/chunks/timezone-selector-basic.json +99 -0
- package/corpus/chunks/timezone-selector-preview.json +104 -0
- package/corpus/chunks/toolbar-icons.json +216 -0
- package/corpus/chunks/toolbar-rich-text-editor.json +230 -0
- package/corpus/chunks/toolbar-tooltips.json +191 -0
- package/corpus/chunks/tooltip-hover-button.json +106 -0
- package/corpus/chunks/tree-file-explorer.json +136 -0
- package/corpus/chunks/tree-table-basic.json +171 -0
- package/corpus/chunks/trial-banner.json +158 -0
- package/corpus/chunks/url-import-form.json +728 -0
- package/corpus/chunks/usage-quota-meter-card.json +217 -0
- package/corpus/chunks/user-identity-row.json +81 -0
- package/corpus/chunks/user-onboarding-checklist.json +301 -0
- package/corpus/chunks/user-profile-card.json +192 -0
- package/corpus/chunks/users-table-badge.json +135 -0
- package/corpus/chunks/verification-document-upload.json +179 -0
- package/corpus/chunks/verification-status.json +97 -0
- package/corpus/chunks/verification-stepper.json +111 -0
- package/corpus/chunks/video-player-controls.json +120 -0
- package/corpus/chunks/webhook-config.json +209 -0
- package/corpus/chunks/webhooks-list.json +204 -0
- package/corpus/chunks/wizard-drawer-three-step-wizard.json +443 -0
- package/corpus/manifest.d.ts +4 -0
- package/corpus/manifest.json +6 -0
- package/corpus/scripts/chunk-library.d.ts +4 -0
- package/corpus/scripts/chunk-library.js +335 -0
- package/node-shims.d.ts +48 -0
- package/package.json +215 -0
- package/retrieval/CHANGELOG.md +1073 -0
- package/retrieval/README.md +71 -0
- package/retrieval/anti-patterns.js +189 -0
- package/retrieval/authoring/index.d.ts +4 -0
- package/retrieval/authoring/index.js +9 -0
- package/retrieval/authoring/web-research.js +220 -0
- package/retrieval/catalog.js +250 -0
- package/retrieval/component-catalog.js +168 -0
- package/retrieval/component-entry.js +80 -0
- package/retrieval/context-assembler.js +174 -0
- package/retrieval/domain-router.js +417 -0
- package/retrieval/embedding/chunk-embedding-retriever.js +117 -0
- package/retrieval/embedding/embedding-provider.js +72 -0
- package/retrieval/embedding/index.d.ts +4 -0
- package/retrieval/embedding/index.js +2 -0
- package/retrieval/feedback/dialog-recorder.js +107 -0
- package/retrieval/feedback/feedback-analyzer.js +180 -0
- package/retrieval/feedback/feedback-store.js +194 -0
- package/retrieval/feedback/feedback.js +117 -0
- package/retrieval/feedback/gap-registry.js +80 -0
- package/retrieval/feedback/human-signal.js +113 -0
- package/retrieval/feedback/index.d.ts +4 -0
- package/retrieval/feedback/index.js +24 -0
- package/retrieval/feedback/submit-feedback.js +45 -0
- package/retrieval/index.d.ts +4 -0
- package/retrieval/index.js +53 -0
- package/retrieval/intent/clarity.js +139 -0
- package/retrieval/intent/decomposer.js +124 -0
- package/retrieval/intent/index.d.ts +4 -0
- package/retrieval/intent/index.js +18 -0
- package/retrieval/intent/intent-alignment.js +172 -0
- package/retrieval/intent/intent-categorizer.js +69 -0
- package/retrieval/intent/intent-gate.js +96 -0
- package/retrieval/intent/prompt-analyzer.js +162 -0
- package/retrieval/wiring-catalog.js +168 -0
- package/validate/catalog-validator.d.ts +4 -0
- package/validate/catalog-validator.js +327 -0
- package/validate/semantic/cache.js +54 -0
- package/validate/semantic/classify-intent.js +128 -0
- package/validate/semantic/index.js +163 -0
- package/validate/semantic/intent-specs.js +162 -0
- package/validate/semantic/judge.js +180 -0
|
@@ -0,0 +1,1073 @@
|
|
|
1
|
+
# Changelog — @adia-ai/a2ui-retrieval
|
|
2
|
+
|
|
3
|
+
## [0.8.36] — 2026-08-13
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Three module specifiers walked out of the package root (gh#1186).** `anti-patterns.js` → `../runtime/registry.js`, and `context-assembler.js` + `intent/clarity.js` → the zettel `composition-library.js`. Correct inside the monorepo, unresolvable in an installed package. Now `@adia-ai/a2ui-runtime/registry` and `@adia-ai/a2ui-compose/strategies/zettel/composition-library`.
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- **`@adia-ai/a2ui-compose` declared as a dependency.** This closes a genuine package-level cycle — compose depends on retrieval and retrieval now depends on compose. npm and Node ESM both handle it, and it is honest about a coupling that already existed in the code; but it is a smell worth a dedicated ticket rather than a silent relative path. The two call sites (clarity scoring, context assembly) both want composition search, which is arguably retrieval's own concern and could move here.
|
|
10
|
+
|
|
11
|
+
## [0.8.35] — 2026-08-13
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.35 work shipped in factory-DX program (scaffold boot+CSS fixes, class-B npm marketplace, consumer CI recipe, DX sweep) + audit-wave plugin hardening + ~20 component/pattern fixes. See `packages/plugins/adia-ui-factory/CHANGELOG.md#0835--2026-08-13` for details.
|
|
15
|
+
|
|
16
|
+
## [0.8.34] — 2026-08-11
|
|
17
|
+
|
|
18
|
+
### Maintenance
|
|
19
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.34 work shipped in date-range-picker unified selection, core boolean-reflect fix, nav state-color spec, component polish + docs repair wave. See `packages/web-components/CHANGELOG.md#0834--2026-08-11` for details.
|
|
20
|
+
|
|
21
|
+
## [0.8.33] — 2026-08-11
|
|
22
|
+
|
|
23
|
+
### Maintenance
|
|
24
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.33 work shipped in variant/color/tone convention completes on alert/mark/toast; combobox-ui gains real option/optgroup support; 22 registry entries close the last unmapped-tag class. See `packages/web-components/CHANGELOG.md#0833--2026-08-11` for details.
|
|
25
|
+
|
|
26
|
+
## [0.8.32] — 2026-08-09
|
|
27
|
+
|
|
28
|
+
### Maintenance
|
|
29
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.32 work shipped in component fixes (nav selected states, avatar centering, stat Phosphor arrows, tag solid default, card-table chrome, breadcrumb ellipsis, input min-width) + a2ui eval overhaul (render probe navigates, refine passthrough, Tier-1 plans). See `packages/web-components/CHANGELOG.md#0832--2026-08-09` for details.
|
|
30
|
+
|
|
31
|
+
## [0.8.31] — 2026-08-07
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
- **A domain with no evidence at all reports `signal: 'none'`, not a phantom zero (gh#678).** `rankWeakDomains` skipped only the `executions === 0 && ratings === 0` bucket, so a domain whose executions were ALL scoreless and which nobody rated came out as `blendedScore: 0, signal: 'self-only', selfScoreSamples: 0` — an unmeasured domain sitting at the WEAK end of a weakest-first list, ahead of domains that were measured and were genuinely bad. Same defect as "a missing signal is not a zero" (gh#668), one corner further in. Such a bucket is now labelled `signal: 'none'` and sorts AFTER every ranked domain, ordered among its peers by execution count — the most ungraded traffic first, because that is an instrumentation gap, not a quality one. The bucket is kept rather than dropped: `getQualityMetrics` builds `byDomain` from this same ranking and would otherwise lose the domain's execution count. `blendedScore` stays `0` for these (a placeholder the `signal` field disambiguates) so no consumer's value type changes.
|
|
35
|
+
|
|
36
|
+
### Maintenance
|
|
37
|
+
- **`feedback/` touched in this release window** (3 file(s), e.g. `feedback/human-signal.js`) — carried by the entries above.
|
|
38
|
+
|
|
39
|
+
## [0.8.30] — 2026-08-07
|
|
40
|
+
|
|
41
|
+
### Maintenance
|
|
42
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.30 work shipped in agent-harness v1 wave: MCP-client mode, guardrails/tracing/memory hardening, auto engine, chat agent-event rendering, human feedback loop. See `packages/agent/CHANGELOG.md#0830--2026-08-07` for details.
|
|
43
|
+
|
|
44
|
+
## [0.8.29] — 2026-08-06
|
|
45
|
+
|
|
46
|
+
### Maintenance
|
|
47
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.29 work shipped in web-components (icon-ui tone prop gh#652) + web-modules (plan-envelope chrome gh#648) + a2ui-runtime (registry drift fix gh#645) + a2ui-compose (plan-turn executor gh#648) + a2ui-corpus (chunk re-harvest). See `0829--2026-08-06` for details.
|
|
48
|
+
|
|
49
|
+
## [0.8.28] — 2026-08-05
|
|
50
|
+
|
|
51
|
+
### Maintenance
|
|
52
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.28 work shipped in sideEffects tree-shaking fix + CSS barrel regen (gh#625/632). See `0828--2026-08-05` for details.
|
|
53
|
+
|
|
54
|
+
## [0.8.27] — 2026-08-05
|
|
55
|
+
|
|
56
|
+
### Maintenance
|
|
57
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.27 work shipped in menu subtitle + roster migration, agent model pins, proper deflake, release tooling (gh#614/616/617/618). See `packages/web-modules/CHANGELOG.md#0827--2026-08-05` for details.
|
|
58
|
+
|
|
59
|
+
## [0.8.26] — 2026-08-05
|
|
60
|
+
|
|
61
|
+
### Maintenance
|
|
62
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the lockstep version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.26 work shipped in WCH chat-harness wave + genui conformance train; first publish of @adia-ai/agent + @adia-ai/persona. See `packages/web-modules/CHANGELOG.md#0826--2026-08-05` for details.
|
|
63
|
+
|
|
64
|
+
## [0.8.25] — 2026-07-31
|
|
65
|
+
|
|
66
|
+
### Maintenance
|
|
67
|
+
- **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.25 work shipped in theme-panel scoped-target [parametric] density/radius fix (gh#570) + System scheme option; anchor-bar-ui; stat-ui band chart layout; chart-ui dots/series-emphasis. See `packages/web-components/CHANGELOG.md#0825--2026-07-31` for details.
|
|
68
|
+
|
|
69
|
+
## [0.8.24] — 2026-07-30
|
|
70
|
+
|
|
71
|
+
### Fixed
|
|
72
|
+
- **`optionalDependencies["@adia-ai/a2ui-corpus"]` rejoins the lockstep range** (gh#554): the `^0.3.0` pin could never match the 0.8.x workspace, so every pnpm install silently resolved the published 0.3.6 from the registry — retrieval ran against a year-old corpus while the workspace copy sat unused. Now `^0.8.0`, and `check:lockstep` scans `optionalDependencies` so this class cannot recur.
|
|
73
|
+
|
|
74
|
+
## [0.8.23] — 2026-07-30
|
|
75
|
+
|
|
76
|
+
### Maintenance
|
|
77
|
+
- **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.23 work shipped in operator-report day: 20+ fixes, BREAKING --a-font removal, deployed-site freeze fix, plugin rename to adia-ui-kit-*. See `packages/web-components/CHANGELOG.md#0823--2026-07-30` for details.
|
|
78
|
+
|
|
79
|
+
## [0.8.22] — 2026-07-29
|
|
80
|
+
|
|
81
|
+
### Maintenance
|
|
82
|
+
- **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.22 work shipped in select-ui aria-selected action-row fix, combobox radio indicator, form-popover summary hardening, resumable release Step 10. See `packages/web-components/CHANGELOG.md#0822--2026-07-29` for details.
|
|
83
|
+
|
|
84
|
+
## [0.8.21] — 2026-07-28
|
|
85
|
+
|
|
86
|
+
### Maintenance
|
|
87
|
+
- **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.21 work shipped in card/table/select/form-popover fixes from adia-v2 adoption + three drift gates (gh#473, gh#425, gh#435). See `packages/web-components/CHANGELOG.md#0821--2026-07-28` for details.
|
|
88
|
+
|
|
89
|
+
## [0.8.20] — 2026-07-28
|
|
90
|
+
|
|
91
|
+
### Fixed
|
|
92
|
+
- **The npm tarball no longer ships `*.test.js`** (gh#462) — the `files` roster excluded examples/html but never unit tests, so 1 test file(s) rode the 0.8.19 tarball. `!**/*.test.js` appended as the roster's LAST entry (npm's files globbing is order-sensitive — a leading exclude is overridden by later directory includes). Proof: `npm pack --dry-run` → 0 test files, runtime files intact.
|
|
93
|
+
|
|
94
|
+
## [0.8.19] — 2026-07-27
|
|
95
|
+
|
|
96
|
+
### Maintenance
|
|
97
|
+
- **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.19 work shipped in form/ cluster publishes (form-popover-ui installable, gh#448) + select-ui summary-label (gh#442) + row-hover container-ladder token fix. See `packages/web-modules/CHANGELOG.md#0819--2026-07-27` for details.
|
|
98
|
+
|
|
99
|
+
## [0.8.18] — 2026-07-27
|
|
100
|
+
|
|
101
|
+
### Maintenance
|
|
102
|
+
- **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.18 work shipped in form-popover-ui rename + 9-test surface + first passing rendered-dom probe (harness repaired for all composites). See `packages/web-modules/CHANGELOG.md#0818--2026-07-27` for details.
|
|
103
|
+
|
|
104
|
+
## [0.8.17] — 2026-07-27
|
|
105
|
+
|
|
106
|
+
### Maintenance
|
|
107
|
+
- **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.17 work shipped in one selection language (radios + tonal + container tier) · form-popover module · check:demo-routes sweep. See `packages/web-components/CHANGELOG.md#0817--2026-07-27` for details.
|
|
108
|
+
|
|
109
|
+
## [0.8.16] — 2026-07-26
|
|
110
|
+
|
|
111
|
+
### Maintenance
|
|
112
|
+
- **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.16 work shipped in text-on-fill AA (90/90 pairs) + release-gate roster 18→22 + the theming guide. See `packages/web-components/CHANGELOG.md#0816--2026-07-26` for details.
|
|
113
|
+
|
|
114
|
+
## [0.8.15] — 2026-07-26
|
|
115
|
+
|
|
116
|
+
### Maintenance
|
|
117
|
+
- **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.15 work shipped in hover darkens in both schemes (600/550 role + filled-button wiring); find-unused adoption skill + measured routing evals. See `packages/web-components/CHANGELOG.md#0815--2026-07-26` for details.
|
|
118
|
+
|
|
119
|
+
## [0.8.14] — 2026-07-25
|
|
120
|
+
|
|
121
|
+
### Maintenance
|
|
122
|
+
- **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.14 work shipped in overlay surface plane + nav-item selected fill + theme neutral hues + examples.md drift gate. See `packages/web-components/CHANGELOG.md#0814--2026-07-25` for details.
|
|
123
|
+
|
|
124
|
+
## [0.8.13] — 2026-07-25
|
|
125
|
+
|
|
126
|
+
### Maintenance
|
|
127
|
+
- **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.
|
|
128
|
+
|
|
129
|
+
## [0.8.12] — 2026-07-24
|
|
130
|
+
|
|
131
|
+
### Maintenance
|
|
132
|
+
- **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.12 work shipped in tag-ui size parity (badge-ui sm/md/lg); plugin skills learn v0.8.11 size model; primitive count fix. See `packages/web-components/CHANGELOG.md#0812--2026-07-24` for details.
|
|
133
|
+
|
|
134
|
+
## [0.8.11] — 2026-07-23
|
|
135
|
+
|
|
136
|
+
### Maintenance
|
|
137
|
+
- **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.11 work shipped in sm/md/lg size model + ancestor [scale] context; adia-wordmark-ui; forge release-cycle hardening. See `packages/web-components/CHANGELOG.md#0811--2026-07-23` for details.
|
|
138
|
+
|
|
139
|
+
## [0.8.10] — 2026-07-20
|
|
140
|
+
|
|
141
|
+
### Maintenance
|
|
142
|
+
- **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.10 work shipped in tag-ui accent variant, dialog-scrim/card-ui fixes; adia-charts/adia-tables skills. See `packages/web-components/CHANGELOG.md#0810--2026-07-20` for details.
|
|
143
|
+
|
|
144
|
+
## [0.8.9] — 2026-07-19
|
|
145
|
+
|
|
146
|
+
### Maintenance
|
|
147
|
+
- **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.9 work shipped in select-ui mark visual (gh#339); release-tooling hardened (branch creation, settle-wait poll, pr-bridge draft guard). See `packages/web-components/CHANGELOG.md#unreleased` for details.
|
|
148
|
+
|
|
149
|
+
## [0.8.8] — 2026-07-19
|
|
150
|
+
|
|
151
|
+
### Maintenance
|
|
152
|
+
- **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.8 work shipped in Type scale tightened one step (body 14px / ui 13px base); release machinery hardened (pr-bridge, mechanized pins, single-sourced roster). See `packages/web-components/CHANGELOG.md#088--2026-07-19` for details.
|
|
153
|
+
|
|
154
|
+
## [0.8.7] — 2026-07-19
|
|
155
|
+
|
|
156
|
+
### Maintenance
|
|
157
|
+
- **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.7 work shipped in factory enrichment (adia-patterns/adia-audit + harvests), forge dogfood/gate fixes, a2ui-corpus content-hash freshness, bundle rebuilds. See `packages/plugins/adia-ui-factory/CHANGELOG.md#087--2026-07-19` for details.
|
|
158
|
+
|
|
159
|
+
## [0.8.6] — 2026-07-18
|
|
160
|
+
|
|
161
|
+
### Maintenance
|
|
162
|
+
- **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.6 work shipped in SSR attribute-replay fix + table declarative data + token repoints (@adia-ai/web-components), gh#268 forge modernization campaign (adia-forge). See `packages/web-components/CHANGELOG.md#086--2026-07-18` for details.
|
|
163
|
+
|
|
164
|
+
## [0.8.5] — 2026-07-17
|
|
165
|
+
|
|
166
|
+
### Maintenance
|
|
167
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.5 work shipped in gemini production passthrough + hardening (@adia-ai/llm), SSR browser-API guards + gh issue 276 wave-4 button-ui/option-card-ui migrations (@adia-ai/web-components), admin-sidebar SSR collapse fix (@adia-ai/web-modules), kbd-ui A2UI-render fix (@adia-ai/a2ui-runtime), full chunk/embeddings regen (@adia-ai/a2ui-corpus). See `packages/llm/CHANGELOG.md#085--2026-07-17` for details.
|
|
168
|
+
|
|
169
|
+
## [0.8.4] — 2026-07-16
|
|
170
|
+
|
|
171
|
+
### Maintenance
|
|
172
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.8.4 work shipped in gen-UI provider routing by model id + gemini fixes (@adia-ai/llm), focus-ring/caret rulings + the button-ui purge (@adia-ai/web-components), chat-shell html messages (@adia-ai/web-modules). See `packages/llm/CHANGELOG.md#084--2026-07-16` for details.
|
|
173
|
+
|
|
174
|
+
## [0.8.3] — 2026-07-16
|
|
175
|
+
|
|
176
|
+
### Maintenance
|
|
177
|
+
- **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.3 work shipped in the two Claude Code plugins — the adia-tokens knowledge pack + command refresh (adia-ui-factory) and the release-tooling invariant-3 reconciliation (adia-ui-forge); see `packages/plugins/adia-ui-factory/CHANGELOG.md#083--2026-07-16`.
|
|
178
|
+
## [0.8.2] — 2026-07-16
|
|
179
|
+
|
|
180
|
+
### Maintenance
|
|
181
|
+
- **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.2 work — the `button-ui` ellipsis fix + tarball-shipped MIGRATION.md (@adia-ai/web-components) and the factory-plugin modernization campaign (adia-ui-factory; gh#259) — see `packages/web-components/CHANGELOG.md#082--2026-07-16`.
|
|
182
|
+
## [0.8.1] — 2026-07-15
|
|
183
|
+
|
|
184
|
+
### Maintenance
|
|
185
|
+
- **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.1 work — the `tags-input-ui` chip slot template (TKT-0023) + the `--a-link` AA contrast fix — shipped in @adia-ai/web-components; see `packages/web-components/CHANGELOG.md#081--2026-07-15`.
|
|
186
|
+
## [0.8.0] — 2026-07-15
|
|
187
|
+
|
|
188
|
+
### Changed
|
|
189
|
+
- **`anti-patterns.js` — token-name sweep** onto `--md-sys-color-*` (Material color-token adoption, lockstep with @adia-ai/web-components@0.8.0 — see that CHANGELOG + `.claude/docs/MIGRATION GUIDE.md` § v0.8.0).
|
|
190
|
+
## [0.7.28] — 2026-07-14
|
|
191
|
+
|
|
192
|
+
### Fixed
|
|
193
|
+
|
|
194
|
+
- **`anti-patterns.js`'s `noInventedComponents` derives its allowlist
|
|
195
|
+
live, not from a hand-frozen list.** The ~140-tag `Set` was a manual
|
|
196
|
+
snapshot ("regenerated 2026-06-10") with a documented prior staleness
|
|
197
|
+
incident (missing `field-ui`, a core primitive) — independent of the
|
|
198
|
+
live `registry` Map `validator.js` already imports for the same class
|
|
199
|
+
of check. Now built once at module load from `registry`
|
|
200
|
+
(`@adia-ai/a2ui-runtime`) + `component-catalog.js`'s per-component
|
|
201
|
+
sidecars, plus one named exception (`router-ui`, core-defined, no yaml
|
|
202
|
+
sidecar). Diffing the old list against the live union incidentally
|
|
203
|
+
surfaced a second staleness bug (the registry was itself missing
|
|
204
|
+
several shell-family tags the old list never had either) and dropped
|
|
205
|
+
6 confirmed-stale entries. New regression suite,
|
|
206
|
+
`anti-patterns.test.js` (6 cases).
|
|
207
|
+
|
|
208
|
+
## [0.7.27] — 2026-07-12
|
|
209
|
+
|
|
210
|
+
### Lockstep
|
|
211
|
+
Ride-along PATCH cut — no changes this cycle.
|
|
212
|
+
|
|
213
|
+
## [0.7.26] — 2026-07-04
|
|
214
|
+
|
|
215
|
+
### Maintenance
|
|
216
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.26 work shipped in variant="outline" retired as the reach-for-secondary generation-time habit. See `packages/a2ui/compose/CHANGELOG.md#unreleased` for details.
|
|
217
|
+
|
|
218
|
+
## [0.7.25] — 2026-07-03
|
|
219
|
+
|
|
220
|
+
### Maintenance
|
|
221
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.25 work shipped in accordion-ui variant="flat|contained" posture + 2 footnote fixes + keyboard a11y. See `packages/web-components/CHANGELOG.md#0725--2026-07-03` for details.
|
|
222
|
+
|
|
223
|
+
## [0.7.24] — 2026-07-01
|
|
224
|
+
|
|
225
|
+
### Maintenance
|
|
226
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.24 work shipped in @adia-ai/web-components upstream consumer findings F1/F2/F4/F5/F6 — icon-ui fail-loud registry wiring, @phosphor-icons/core direct dep, custom-elements.json de-fabrication, new display-field-ui primitive, table-ui rowExpandable per-row gate. See `packages/web-components/CHANGELOG.md#0724--2026-07-01` for details.
|
|
227
|
+
|
|
228
|
+
## [0.7.23] — 2026-06-30
|
|
229
|
+
|
|
230
|
+
### Maintenance
|
|
231
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.23 work shipped in @adia-ai/web-components button-ui child-text label parity + accordion-ui block-flow gap. See `packages/web-components/CHANGELOG.md#0723--2026-06-30` for details.
|
|
232
|
+
|
|
233
|
+
## [0.7.22] — 2026-06-16
|
|
234
|
+
|
|
235
|
+
### Maintenance
|
|
236
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.22 work shipped in the @adia-ai/web-components + @adia-ai/web-modules surface-token alignment (symmetric canvas ramp). See `packages/web-components/CHANGELOG.md#0722--2026-06-16` for details.
|
|
237
|
+
|
|
238
|
+
## [0.7.21] — 2026-06-10
|
|
239
|
+
|
|
240
|
+
### Maintenance
|
|
241
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.21 work shipped in corpus harvester scope expansion (gated web-components examples root) + 26 curated chunks (368->394). See `packages/a2ui/corpus/CHANGELOG.md#0721--2026-06-10` for details.
|
|
242
|
+
|
|
243
|
+
## [0.7.20] — 2026-06-10
|
|
244
|
+
|
|
245
|
+
### Fixed
|
|
246
|
+
- **Catalog loaders work on statically-served sites.** `component-catalog.js` + `catalog.js` gain the same static-fetch branch as the compose loaders: one consolidated `catalog-a2ui_0_9.json` request (181 component schemas) replaces the vite-only glob over 138 sidecars.
|
|
247
|
+
|
|
248
|
+
### Added
|
|
249
|
+
- **3 anti-pattern rules from the gen-UI contact-form incident** (these feed BOTH the generation prompt and post-validation): `noCssPropAttrs` (`display=`/`visibility=` as markup attributes — components silently ignore them, so "hidden" content renders visibly), `inputTypeTextarea` (`input-ui[type="textarea"]` → `textarea-ui`), `fieldOwnsLabelHintError` (a sibling `text-ui` label / raw `<label>` / `<small>` error inside `field-ui` → use `label=`/`hint=`/`error=`).
|
|
250
|
+
|
|
251
|
+
### Fixed
|
|
252
|
+
- **`noInventedComponents` known-tags list regenerated from the yaml `tag:` SoT (145 tags).** The hand-rolled list was stale — it was missing `field-ui` (a core primitive), so every canonical labeled form false-positived as an invented component.
|
|
253
|
+
|
|
254
|
+
## [0.7.19] — 2026-06-10
|
|
255
|
+
|
|
256
|
+
### Maintenance
|
|
257
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.19 work shipped in icon-ui standalone-import paint fix + late-connect retry (web-components); full 308-chunk embedding vectors (a2ui-corpus). See `packages/web-components/CHANGELOG.md#0719--2026-06-10` for details.
|
|
258
|
+
|
|
259
|
+
## [0.7.18] — 2026-06-09
|
|
260
|
+
|
|
261
|
+
### Maintenance
|
|
262
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.18 work shipped in combobox menu-overflow fix + max-visible-items + the dropdown-family caret OPEN state + the theme-provider CDN bundle (web-components); corpus regrowth batch 1, +24 chunks (a2ui-corpus). See `packages/web-components/CHANGELOG.md#0718--2026-06-09` for details.
|
|
263
|
+
|
|
264
|
+
## [0.7.17] — 2026-06-08
|
|
265
|
+
|
|
266
|
+
### Maintenance
|
|
267
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.17 work shipped in badge-ui/tag-ui icon-spacing fix — icon-bearing chips no longer inflate row height + tighter [icon]-gated spacing. See `packages/web-components/CHANGELOG.md#0717--2026-06-08` for details.
|
|
268
|
+
|
|
269
|
+
## [0.7.16] — 2026-06-08
|
|
270
|
+
|
|
271
|
+
### Maintenance
|
|
272
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.16 work shipped in the dist CSS + JS bundle refresh. See `packages/web-components/CHANGELOG.md (0.7.16)` for details.
|
|
273
|
+
|
|
274
|
+
## [0.7.15] — 2026-06-08
|
|
275
|
+
|
|
276
|
+
### Maintenance
|
|
277
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.15 work shipped in the menu-label-ui new component + badge/tag padding. See `packages/web-components/CHANGELOG.md (0.7.15)` for details.
|
|
278
|
+
|
|
279
|
+
## [0.7.14] — 2026-06-08
|
|
280
|
+
|
|
281
|
+
### Maintenance
|
|
282
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.14 work shipped in input-ui/textarea-ui .value upgrade-safety fix. See `packages/web-components/CHANGELOG.md (0.7.14)` for details.
|
|
283
|
+
|
|
284
|
+
## [0.7.13] — 2026-06-06
|
|
285
|
+
|
|
286
|
+
### Maintenance
|
|
287
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.13 work: the `./css/sheet` exports `types` fix (`@adia-ai/web-components` + `@adia-ai/web-modules`) + a corpus re-harvest (`@adia-ai/a2ui-corpus`). See `packages/web-components/CHANGELOG.md` for details.
|
|
288
|
+
|
|
289
|
+
## [0.7.12] — 2026-06-04
|
|
290
|
+
|
|
291
|
+
### Maintenance
|
|
292
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.12 work: the BREAKING `data-theme`→`theme` token-attribute rename + the new `<theme-provider>` element + CDN `.sheet.js` twins (`@adia-ai/web-components`), and a corpus re-harvest. See `packages/web-components/CHANGELOG.md` for details.
|
|
293
|
+
|
|
294
|
+
## [0.7.11] — 2026-06-04
|
|
295
|
+
|
|
296
|
+
### Maintenance
|
|
297
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.11 work: the `<frame-ui>` slot-override regions + `button-ui` hover `-strong` step + `resizable` trait corner handles + `list-item-ui` / `<preview-ui>` fixes (`@adia-ai/web-components`), `<embed-shell>` extending `UIElement` to compose the `resizable` trait (`@adia-ai/web-modules`), and a corpus re-harvest. See `packages/web-components/CHANGELOG.md` for details.
|
|
298
|
+
|
|
299
|
+
## [0.7.10] — 2026-06-03
|
|
300
|
+
|
|
301
|
+
### Maintenance
|
|
302
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.10 work: the `<frame-ui>` layout primitive + `list-item-ui` grid fix + `[verse]` type-tier bump (`@adia-ai/web-components`), the new `<embed-shell>` (`@adia-ai/web-modules`), and a corpus re-harvest. See `packages/web-components/CHANGELOG.md` for details.
|
|
303
|
+
|
|
304
|
+
## [0.7.9] — 2026-06-03
|
|
305
|
+
|
|
306
|
+
### Maintenance
|
|
307
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.9 work shipped in Lockstep release — no package-specific source changes this cut; substantive v0.7.9 work in `@adia-ai/web-components` (verse control/chrome tier bump + semantic color cusp-lift) + root tooling (PLAN-claim trip-wire, slot-vocab + foundation-layer gate fixes).. See `packages/web-components/CHANGELOG.md#079--2026-06-03` for details.
|
|
308
|
+
|
|
309
|
+
## [0.7.8] — 2026-06-02
|
|
310
|
+
|
|
311
|
+
### Maintenance
|
|
312
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.8 work shipped in Lockstep release — no package-specific source changes this cut; substantive v0.7.8 work in `@adia-ai/web-components` (wrapper-trap arm-2 drain: 14 consumer-slot reads pierced via the new `core/logical-children.js` helper).. See `packages/web-components/CHANGELOG.md#078--2026-06-02` for details.
|
|
313
|
+
|
|
314
|
+
## [0.7.7] — 2026-06-02
|
|
315
|
+
|
|
316
|
+
### Maintenance
|
|
317
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.7 work shipped in Lockstep release — no package-specific source changes this cut; substantive v0.7.7 work in `@adia-ai/web-components` (drawer/verse register-aware insets + agent-artifact wrapper-pierce).. See `packages/web-components/CHANGELOG.md#077--2026-06-02` for details.
|
|
318
|
+
|
|
319
|
+
## [0.7.6] — 2026-06-02
|
|
320
|
+
|
|
321
|
+
### Maintenance
|
|
322
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.6 work shipped in Lockstep release — no package-specific source changes this cut; substantive v0.7.6 work in `@adia-ai/web-components` (block-ui, parametric [padding]/[margin] scale, host.css barrel split, FB-97/98 + command wrapper-trap fixes).. See `packages/web-components/CHANGELOG.md#076--2026-06-02` for details.
|
|
323
|
+
|
|
324
|
+
## [0.7.5] — 2026-06-02
|
|
325
|
+
|
|
326
|
+
### Maintenance
|
|
327
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.5 work shipped in Lockstep release — no package-specific source changes this cut; the substantive v0.7.5 fix is in `@adia-ai/web-components` (button-ui colored-variant: readable solid text + outline composes + excluded from the `[color]` text utility).. See `packages/web-components/CHANGELOG.md#075--2026-06-02` for details.
|
|
328
|
+
|
|
329
|
+
## [0.7.4] — 2026-06-02
|
|
330
|
+
|
|
331
|
+
### Maintenance
|
|
332
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.4 work shipped in Lockstep release — no package-specific source changes this cut; substantive work in `@adia-ai/web-components` + `@adia-ai/web-modules` (verse register, OD-5 `-default` revert, grid align/justify, font-family floor).. See `packages/web-components/CHANGELOG.md#074--2026-06-02` for details.
|
|
333
|
+
|
|
334
|
+
## [0.7.3] — 2026-06-01
|
|
335
|
+
|
|
336
|
+
### Maintenance
|
|
337
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.3 work shipped in @adia-ai/web-components parametric named gap scale (xs–xl) + explicit/ambient [gap] split (no leak) + FB-96 tree slot-adopt. See `packages/web-components/CHANGELOG.md#073--2026-06-01` for details.
|
|
338
|
+
|
|
339
|
+
## [0.7.2] — 2026-06-01
|
|
340
|
+
|
|
341
|
+
### Maintenance
|
|
342
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.2 work shipped in @adia-ai/web-components template-engine ARIA-transparent wrapper spans (FB-94) + menu-item orphan fix (FB-95) + tokens cascade-layer; @adia-ai/web-modules admin-page-footer sticky band (bug-54). See `packages/web-components/CHANGELOG.md#072--2026-06-01` for details.
|
|
343
|
+
|
|
344
|
+
## [0.7.1] — 2026-05-31
|
|
345
|
+
|
|
346
|
+
### Maintenance
|
|
347
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.1 work shipped in @adia-ai/web-components a11y/reactivity fixes — input-ui affordance centering (bug-60), tree-ui role=group WAI-ARIA (FB-91), menu-ui dynamic items (FB-92), input-ui reactive prefix/suffix (FB-93). See `packages/web-components/CHANGELOG.md#071--2026-05-31` for details.
|
|
348
|
+
|
|
349
|
+
## [0.7.0] — 2026-05-31
|
|
350
|
+
|
|
351
|
+
### Maintenance
|
|
352
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.7.0 work shipped in MINOR: @adia-ai/web-components BREAKING removals (avatar-ui [name] alias, chart-ui [aspect]/[heading]) + docs-QA pass (bug-21, bug-50..55) + new features (stat [bleed], page regions, kbd lg); @adia-ai/web-modules dialog/plan-picker/onboarding/integrations fixes. See `packages/web-components/CHANGELOG.md#070--2026-05-31` for details.
|
|
353
|
+
|
|
354
|
+
## [0.6.50] — 2026-05-30
|
|
355
|
+
|
|
356
|
+
### Maintenance
|
|
357
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.50 work shipped in @adia-ai/web-components slot="caret" disclosure convention + tree-item-ui adopt-or-stamp (FEEDBACK-89, ADR-0036); @adia-ai/a2ui-corpus catalog regen for the renamed slot vocabulary. See `packages/web-components/CHANGELOG.md#0650--2026-05-30` for details.
|
|
358
|
+
|
|
359
|
+
## [0.6.49] — 2026-05-30
|
|
360
|
+
|
|
361
|
+
### Maintenance
|
|
362
|
+
|
|
363
|
+
- **Lockstep version bump only.** Substantive v0.6.49 in `@adia-ai/web-components` (date-range-picker two-month fix + calendar `month` prop + card-ui demo slot sweep) and `@adia-ai/a2ui-corpus` (corpus + catalog regen). See those packages CHANGELOGs.
|
|
364
|
+
|
|
365
|
+
## [0.6.48] — 2026-05-29
|
|
366
|
+
|
|
367
|
+
### Maintenance
|
|
368
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.48 work shipped in foundation-styles dimension×layer reorg (ADR-0035) + library-wide demo consolidation + date-range-picker popover fix + corpus re-harvest. See `packages/web-components/CHANGELOG.md#0648--2026-05-29` for details.
|
|
369
|
+
|
|
370
|
+
## [0.6.47] — 2026-05-29
|
|
371
|
+
|
|
372
|
+
### Maintenance
|
|
373
|
+
|
|
374
|
+
- **Lockstep version bump only.** Substantive v0.6.47 in `@adia-ai/web-components` (`<card-ui>` `[grow]` section attribute) and `@adia-ai/a2ui-corpus` (chunk re-harvest). See those packages CHANGELOGs.
|
|
375
|
+
|
|
376
|
+
## [0.6.46] — 2026-05-29
|
|
377
|
+
|
|
378
|
+
### Maintenance
|
|
379
|
+
|
|
380
|
+
- **Lockstep version bump only.** Substantive v0.6.46 in `@adia-ai/web-components` (56 trait pages + slot docs + bleed/token fixes) and `@adia-ai/a2ui-corpus` (chunk re-harvest). See those packages CHANGELOGs.
|
|
381
|
+
|
|
382
|
+
## [0.6.45] — 2026-05-29
|
|
383
|
+
|
|
384
|
+
### Maintenance
|
|
385
|
+
|
|
386
|
+
- **Lockstep version bump only.** Substantive v0.6.45 in `@adia-ai/web-components` (FB-85 canvas-ui bare-specifier + FB-88 select-ui accessible name). See its CHANGELOG.
|
|
387
|
+
|
|
388
|
+
## [0.6.44] — 2026-05-28
|
|
389
|
+
|
|
390
|
+
### Maintenance
|
|
391
|
+
|
|
392
|
+
- **Lockstep version bump only.** Substantive v0.6.44 in `@adia-ai/web-components` (FB-81 canvas-ui decouple), `@adia-ai/a2ui-compose` (FB-79 select-options transpiler), `@adia-ai/a2ui-corpus` (FB-79/80 re-harvest + embeddings regen). See those packages' CHANGELOGs.
|
|
393
|
+
|
|
394
|
+
## [0.6.43] — 2026-05-27
|
|
395
|
+
|
|
396
|
+
### Maintenance
|
|
397
|
+
|
|
398
|
+
- **Lockstep version bump only.** Substantive v0.6.43 in `@adia-ai/web-components` (`<list-ui contained>` yaml + button/card/alert RL+RL2 substrate fixes), `@adia-ai/a2ui-compose` (transpiler RL+RL2 sweeps), `@adia-ai/a2ui-corpus` (chunk re-harvest absorbing the substrate fixes). See those packages' CHANGELOGs.
|
|
399
|
+
|
|
400
|
+
## [0.6.42] — 2026-05-26
|
|
401
|
+
|
|
402
|
+
### Maintenance
|
|
403
|
+
|
|
404
|
+
- **Lockstep version bump only.** Substantive v0.6.42: `@adia-ai/a2ui-corpus` (gen-review cycles 8-17 — chunk count 240 → 284, +44 new training chunks + chunk-embeddings regen 6.92 → 8.19 MB), `@adia-ai/web-components` (yaml/sidecar polish for description-list/table/upload + core/provider.js), `@adia-ai/web-modules` (admin-page-header yaml header-anatomy fix), `@adia-ai/a2ui-runtime` (registry.js + renderer.js polish). See those packages' CHANGELOGs.
|
|
405
|
+
|
|
406
|
+
## [0.6.41] — 2026-05-26
|
|
407
|
+
|
|
408
|
+
### Maintenance
|
|
409
|
+
|
|
410
|
+
- **Lockstep version bump only — pure ride-along.** No source changes in any of the 9 packages this cycle. Substantive v0.6.41 work is REPO-LEVEL: adia-ui-release skill v1.8.0 → v1.9.0 (catalog-drift recurring graduation — §Step 5.5 pre-commit trip-wire + supersedes-WT contract + §Step 5 allowlist convention; closes FEEDBACK-75). Version bump preserves 9-package lockstep coherence; published tarballs identical to v0.6.40 modulo version metadata.
|
|
411
|
+
|
|
412
|
+
## [0.6.40] — 2026-05-26
|
|
413
|
+
|
|
414
|
+
### Maintenance
|
|
415
|
+
|
|
416
|
+
- **Lockstep version bump only.** Substantive v0.6.40 in `@adia-ai/web-components` (index.js barrel side-effect-imports `core/provider.js` — cold-start `<router-ui>` registration, FB-69-class fix) and `@adia-ai/web-modules` (`<admin-entity-item>` `<span slot="icon">` wrap — mirrors `<nav-item-ui>`).
|
|
417
|
+
|
|
418
|
+
## [0.6.39] — 2026-05-26
|
|
419
|
+
|
|
420
|
+
### Maintenance
|
|
421
|
+
|
|
422
|
+
- **Lockstep version bump only.** Substantive v0.6.39 in `@adia-ai/web-components` (<tour-ui> primitive — Wave 5e last P1, #259 + substrate slot-selector defensive sweep + admin-entity-item icon-size parity + list-item-ui slot=action declaration). `@adia-ai/web-modules` ships dist rebuild only.
|
|
423
|
+
|
|
424
|
+
## [0.6.38] — 2026-05-26
|
|
425
|
+
|
|
426
|
+
### Maintenance
|
|
427
|
+
|
|
428
|
+
- **Lockstep version bump only.** No source changes in this package. Substantive v0.6.38: `@adia-ai/web-components` (Wave 5e — mark-ui + inline-edit-ui + feed-ui deep-link demo + list-item-ui/segmented-ui/stat-ui/toolbar-ui fixes + slot-vocab-vs-css backlog closure), `@adia-ai/web-modules` (catalog/ui-patterns import-mapping + saas/billing cancellation save-offer + onboarding-checklist demo), `@adia-ai/a2ui-corpus` (240 chunks + catalog regen for Wave 5e cohort).
|
|
429
|
+
|
|
430
|
+
## [0.6.37] — 2026-05-25
|
|
431
|
+
|
|
432
|
+
### Maintenance
|
|
433
|
+
|
|
434
|
+
- **Lockstep version bump only.** No source changes in this package. Substantive v0.6.37: `@adia-ai/web-components` (Wave 1+2+3+4 cohort — blockquote, slider dual-thumb, password-strength, qr-code, toc, relative-time, number-format, anchor-link, number-stepper, pagination, toast-undo, blockquote, table demos column-resize/sticky-header/virtualized, alert-dialog destructive-confirm, context-menu, visually-hidden, skip-nav + FB-67/68/69/70/71 close + popover-ui/pagination/slider/qr-code fixes + --a-warning-bg redirect + 5 new audits) and `@adia-ai/web-modules` (Wave 3+4 pattern demos + brand-chrome canonicals + integration-card/segmented console-warn silence).
|
|
435
|
+
|
|
436
|
+
## [0.6.36] — 2026-05-24
|
|
437
|
+
|
|
438
|
+
### Maintenance
|
|
439
|
+
|
|
440
|
+
- **Lockstep version bump only.** No source changes in this package. Substantive v0.6.36: `@adia-ai/web-components` (tag-ui solid-default flip + [tone] prop + dismiss X variant inheritance + tag.warning amber fix + caret-at-content-start fix for input/textarea/combobox/tags-input + post-v0.6.35 QA sweep), `@adia-ai/web-modules` (Wave A+B+C+D demos via authoring v1.8.0 Mode 8 + payment-method-form recursion guard + payment-method-list card-ui rewrite + billing-overview/dashboard-layout fixes), `@adia-ai/a2ui-corpus` (catalog regen for tag-ui solid-default flip).
|
|
441
|
+
|
|
442
|
+
## [0.6.35] — 2026-05-24
|
|
443
|
+
|
|
444
|
+
### Maintenance
|
|
445
|
+
|
|
446
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain 9-package coherence. Substantive v0.6.35: `@adia-ai/web-components` (Waves A+B+C — 14 P1 component implementations + FB-57/61/62/63 substrate sweep + class.js → <slug>.class.js refactor + spinner/calendar-grid fixes), `@adia-ai/web-modules` (FB-55 admin-shell warn + delegation refactor + Wave A+B+C cluster work), `@adia-ai/llm` (server.js SIGINT/SIGTERM handlers — dev-only fix), `@adia-ai/a2ui-corpus` (catalog regen absorbing FB-61/62/63 yaml backfills).
|
|
447
|
+
|
|
448
|
+
## [0.6.34] — 2026-05-23
|
|
449
|
+
|
|
450
|
+
### Maintenance
|
|
451
|
+
|
|
452
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain 9-package coherence. Substantive v0.6.34: `@adia-ai/web-components` (Wave 1 + Wave 2 — 10 P1 components shipped from SPECs + OD-5 `-default` token sweep across 98 components + `<calendar-grid-ui>` substrate primitive), `@adia-ai/web-modules` (Wave 1/2 cluster registrations + `everything.min.js` rebuild), `@adia-ai/a2ui-runtime` (Phase 1 CSS channel: `updateStyles`/`removeStyles`), `@adia-ai/a2ui-corpus` (`playground-css-channel` chunk + embeddings regen). See those packages' CHANGELOGs.
|
|
453
|
+
|
|
454
|
+
## [0.6.33] — 2026-05-23
|
|
455
|
+
|
|
456
|
+
### Maintenance
|
|
457
|
+
|
|
458
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.33 work shipped in `@adia-ai/web-components` (FB-53 §2 table[raw] short-circuit + FB-54 field row-gap :has gate + tabs --tabs-button-height anchor + dist icons-manifest header refresh) and `@adia-ai/web-modules` (FB-53 §1 CDN icons-manifest co-emit to web-modules/dist/) and `@adia-ai/a2ui-runtime` (card-ui body-slot drift fix). See those packages' CHANGELOGs for details.
|
|
459
|
+
|
|
460
|
+
## [0.6.31] — 2026-05-23
|
|
461
|
+
|
|
462
|
+
### Maintenance
|
|
463
|
+
|
|
464
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.31 work shipped in `@adia-ai/web-modules` (`admin-shell.examples` taming CSS + README canonical-hierarchy example) and `@adia-ai/web-components` (3 legacy `patterns/*` hubs rewritten). Docs-and-skills scrub — see those packages' CHANGELOGs for details.
|
|
465
|
+
|
|
466
|
+
## [0.6.30] — 2026-05-23
|
|
467
|
+
|
|
468
|
+
### Maintenance
|
|
469
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.30 work shipped in CDN-ready JS bundles (web-components.min.js primitives + 4 per-shell + everything.min.js kitchen-sink for CodePen); new ./js/bundled + ./everything + 4 */js-bundled exports; check:js-bundles-fresh pre-flight gate; README + site CDN docs + AI-agent discoverability; examples/codepen.html template. See `packages/web-components/CHANGELOG.md#0630--2026-05-23` for details.
|
|
470
|
+
|
|
471
|
+
## [0.6.29] — 2026-05-23
|
|
472
|
+
|
|
473
|
+
### Maintenance
|
|
474
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.29 work shipped in CDN-ready rolled-up CSS bundles (web-components + 4 web-modules shells); ./css/bundled + per-shell /bundled exports; check:css-bundles-fresh pre-flight gate. See `packages/web-components/CHANGELOG.md#0629--2026-05-23` for details.
|
|
475
|
+
|
|
476
|
+
## [0.6.28] — 2026-05-23
|
|
477
|
+
|
|
478
|
+
### Maintenance
|
|
479
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.28 work shipped in editor-sidebar rAF debounce for wide->narrow display-flip transient (FB-50, 3rd iteration of the latch saga; belt-and-braces with v0.6.26 width guard + v0.6.27 computedStyle guard). See `packages/web-modules/CHANGELOG.md#0628--2026-05-23` for details.
|
|
480
|
+
|
|
481
|
+
## [0.6.27] — 2026-05-22
|
|
482
|
+
|
|
483
|
+
### Maintenance
|
|
484
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.27 work shipped in chart-ui[loading] skeleton placeholder (FB-12); admin-shell CSS pitfall fix (FB-04); responsive horizontal-scroll for kanban + pricing tables; editor-sidebar computedStyle guard for small-nonzero transients (FB-49); a2ui-corpus catalog tracks chart-ui[loading]. See `packages/web-components/CHANGELOG.md#0627--2026-05-22` for details.
|
|
485
|
+
|
|
486
|
+
## [0.6.26] — 2026-05-22
|
|
487
|
+
|
|
488
|
+
### Maintenance
|
|
489
|
+
- **Lockstep version bump only.** No source changes. Substantive v0.6.26 work in `@adia-ai/web-modules`.
|
|
490
|
+
|
|
491
|
+
## [0.6.25] — 2026-05-22
|
|
492
|
+
|
|
493
|
+
### Maintenance
|
|
494
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.25 work shipped in select-ui[multiple] pre-init via <option selected> + .value= setter (FB-46); table-ui Enter key activates focused body cell (FB-47); corpus select-multiple-preselected exemplar chunk + harvest refresh. See `packages/web-components/CHANGELOG.md#0625--2026-05-22` for details.
|
|
495
|
+
|
|
496
|
+
## [0.6.24] — 2026-05-22
|
|
497
|
+
|
|
498
|
+
### Maintenance
|
|
499
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain 9-package version coherence. Substantive v0.6.24 work: `slider-ui` label/suffix reactive binding fix (FB-45), `editor-shell` `--a-font-mono` token rename (FB-43), `toast-ui` demo shell `feed.css` import. See `packages/web-components/CHANGELOG.md#0624` for details.
|
|
500
|
+
|
|
501
|
+
## [0.6.23] — 2026-05-22
|
|
502
|
+
|
|
503
|
+
### Maintenance
|
|
504
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.23 work shipped in row-ui wrap-at='bp' responsive flex-wrap (@adia-ai/web-components) + 4 new v053-coverage-fill training chunks for empty-state danger/warning/minimal + responsive-kpi-grid (@adia-ai/a2ui-corpus). See `packages/web-components/CHANGELOG.md#0623--2026-05-22` for details.
|
|
505
|
+
|
|
506
|
+
## [0.6.22] — 2026-05-22
|
|
507
|
+
|
|
508
|
+
### Maintenance
|
|
509
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.22 work shipped in @bp responsive attribute system (grid/col/row/text/block accept @bp), empty-state-ui variant=danger|warning, alert/segmented/stat/table truncation fixes, UI inset/gap scale reduction, 21 component example pages corrected; @adia-ai/web-modules admin-topbar/statusbar padding + admin-page-header/body breakpoint refinements. See `packages/web-components/CHANGELOG.md#0622--2026-05-22` for details.
|
|
510
|
+
|
|
511
|
+
## [0.6.21] — 2026-05-21
|
|
512
|
+
|
|
513
|
+
### Maintenance
|
|
514
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.21 work shipped in `@adia-ai/web-components` (`table-ui` truncate-by-default + `[wrap]` opt-in §403; toast / feed-item variant text colour; `input-ui` slot-label crowding fix) and `@adia-ai/web-modules` (`<admin-entity-item>` row-inset alignment; FEEDBACK-37 retraction — spurious slot-contract `console.warn` removed; page-header title row no longer stacks under `?chunks` dev overlay). See `packages/web-modules/CHANGELOG.md#0621--2026-05-21` for details.
|
|
515
|
+
|
|
516
|
+
## [0.6.20] — 2026-05-21
|
|
517
|
+
|
|
518
|
+
### Maintenance
|
|
519
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.20 work shipped in `@adia-ai/web-components` + `@adia-ai/web-modules` — the claims-ui-v5 inbound feedback batch (FEEDBACK-34…39: `table-ui` / `select-ui` / `chart-ui` fixes, the new `<admin-entity-item>` shell primitive, `admin-topbar` / `admin-statusbar` slot diagnostics) plus the `<admin-page-header>` `--a-canvas-0` rebase. See `packages/web-modules/CHANGELOG.md#0620--2026-05-21` for details.
|
|
520
|
+
|
|
521
|
+
## [0.6.19] — 2026-05-21
|
|
522
|
+
|
|
523
|
+
### Maintenance
|
|
524
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.19 work shipped in `@adia-ai/web-components` + `@adia-ai/web-modules` — the claims-ui-v4 inbound feedback batch (FEEDBACK-22…33: `drawer-ui` / `chart-ui` / `segmented-ui` fixes, `UIElement` lifecycle, exports-map `types` conditions) — plus an `@adia-ai/a2ui-corpus` drift remediation. See `packages/web-components/CHANGELOG.md#0619--2026-05-21` for details.
|
|
525
|
+
|
|
526
|
+
## [0.6.18] — 2026-05-21
|
|
527
|
+
|
|
528
|
+
### Maintenance
|
|
529
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.18 work shipped in `@adia-ai/web-components` — `stat-ui` + `table-ui` `loading` props (FB-12 P2) and `text-ui` `size` / `color` / `weight` / `text-align` overlay attributes (FB-10). See `packages/web-components/CHANGELOG.md#0618--2026-05-21` for details.
|
|
530
|
+
|
|
531
|
+
## [0.6.17] — 2026-05-21
|
|
532
|
+
|
|
533
|
+
### Maintenance
|
|
534
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.17 work shipped in `@adia-ai/web-modules` — collapsed-sidebar rules grew a forgiving fallback block for vanilla HTML consumers (`<button class="nav-item">`, `[slot="heading"]`) so text labels don't overflow the 48px rail. See `packages/web-modules/CHANGELOG.md#0617--2026-05-21` for details.
|
|
535
|
+
|
|
536
|
+
## [0.6.16] — 2026-05-21
|
|
537
|
+
|
|
538
|
+
### Maintenance
|
|
539
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.16 work shipped in `@adia-ai/web-modules`: (1) `<admin-page>` selector relaxed to descendant combinator so router-wrapped layouts no longer collapse to `display: inline` at narrow viewports (was the root of the page-header/KPI overlap regression); (2) `--page-content-header-bg` rebased from `--a-canvas-2` to `--a-canvas-1` so the page-header reads as shell-chrome continuation. See `packages/web-modules/CHANGELOG.md#0616--2026-05-21` for details.
|
|
540
|
+
|
|
541
|
+
## [0.6.15] — 2026-05-21
|
|
542
|
+
|
|
543
|
+
### Maintenance
|
|
544
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.15 work shipped in `@adia-ai/web-components` — `installIconLoaders` shape-detects malformed flat globs (FB-07 auto-promote + warn), `icons-phosphor.js` surfaces silent-fail diagnostics (FB-08), and .claude/docs/skill examples corrected (FB-09). See `packages/web-components/CHANGELOG.md#0615--2026-05-21` for details.
|
|
545
|
+
|
|
546
|
+
## [0.6.14] — 2026-05-21
|
|
547
|
+
|
|
548
|
+
### Maintenance
|
|
549
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.14 work shipped in `@adia-ai/web-modules` — `<admin-page-header>` now uses `var(--page-content-header-bg)` (= `--a-canvas-2`) + `var(--a-shadow-sm)` so the page-header band reads as elevated chrome over the body canvas. See `packages/web-modules/CHANGELOG.md#0614--2026-05-21` for details.
|
|
550
|
+
|
|
551
|
+
## [0.6.13] — 2026-05-20
|
|
552
|
+
|
|
553
|
+
### Maintenance
|
|
554
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.13 work shipped in `@adia-ai/web-modules` — `<admin-shell>` default `mode` is now `"rounded borderless"` (bare-tag auto-promote on connect; any explicit `mode` attribute still wins). See `packages/web-modules/CHANGELOG.md#0613--2026-05-20` for details.
|
|
555
|
+
|
|
556
|
+
## [0.6.12] — 2026-05-20
|
|
557
|
+
|
|
558
|
+
### Maintenance
|
|
559
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.12 work shipped in `@adia-ai/web-modules` — admin-shell legacy CSS bridges retired per ADR-0032 (continuation of ADR-0023 + ADR-0024). See `packages/web-modules/CHANGELOG.md#0612--2026-05-20` for the breaking-change details + migration path.
|
|
560
|
+
|
|
561
|
+
## [0.6.11] — 2026-05-20
|
|
562
|
+
|
|
563
|
+
### Maintenance
|
|
564
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.11 work shipped in `@adia-ai/web-components` (`<canvas-ui>` `.d.ts` hand-author covering 9 imperative runtime methods, claims-ui-v2 inbound FB-02 finding 2 closure) and `adia-ui-kit` skill v2.8.0 bundled feedback close (FB-01, FB-02 findings 1+3, FB-03; graduated `/with-css` opt-in docs + `ADIA_TICKETS_DIR` central-inbound workflow).
|
|
565
|
+
|
|
566
|
+
## [0.6.10] — 2026-05-21
|
|
567
|
+
|
|
568
|
+
### Maintenance
|
|
569
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.10 work shipped in `@adia-ai/web-modules` (4 shell `/with-css` opt-in companion subpaths, claims-ui FB-06 closure, ADR-0030) and `@adia-ai/web-components` (`<table-toolbar-ui>` unknown-attr `console.warn`, FB-04 enhancement; release-gate hygiene).
|
|
570
|
+
|
|
571
|
+
## [0.6.9] — 2026-05-21
|
|
572
|
+
|
|
573
|
+
### Maintenance
|
|
574
|
+
- **Lockstep version bump only.** No source changes in this package; bumped to maintain the 9-package version coherence enforced by `scripts/release/check-lockstep.mjs`. Substantive v0.6.9 work shipped in `@adia-ai/web-components` (CSS `@scope` codemod, F-002) and `@adia-ai/web-modules` (cross-package subpath docs, FB-08).
|
|
575
|
+
|
|
576
|
+
## [0.6.8] — 2026-05-20
|
|
577
|
+
|
|
578
|
+
- Lockstep version bump. Headlining work in `@adia-ai/web-components`
|
|
579
|
+
(FB-55 `.camelCaseProp=${expr}` two-layer name resolution + FB-57
|
|
580
|
+
SVG/MathML namespace-aware `mount()` + USAGE.md docs cluster) and
|
|
581
|
+
`@adia-ai/web-modules` (claims-ui F-001 chat-shell.js barrel-import
|
|
582
|
+
fix + F-006 required-CSS callouts). No source changes in this package.
|
|
583
|
+
|
|
584
|
+
## [0.6.7] — 2026-05-19
|
|
585
|
+
|
|
586
|
+
- Lockstep version bump; no source changes.
|
|
587
|
+
|
|
588
|
+
## [0.6.6] — 2026-05-18
|
|
589
|
+
|
|
590
|
+
### Changed
|
|
591
|
+
- Lockstep version bump for §304 `<field-ui align>` prop.
|
|
592
|
+
## [0.6.5] — 2026-05-18
|
|
593
|
+
|
|
594
|
+
### Fixed
|
|
595
|
+
- `wiring-catalog.ts`: replaced `export declare function` stubs with real
|
|
596
|
+
typed implementations — `getControllerInfo` and `getHandlerInfo` were no-ops
|
|
597
|
+
after Phase 4 conversion (body was in the deleted .js file).
|
|
598
|
+
- `node-shims.d.ts` (shared): ambient `declare module` stubs for `node:*`
|
|
599
|
+
built-ins so `tsconfig.base.json` `"types":[]` doesn't block retrieval.
|
|
600
|
+
- `embedding/chunk-embedding-retriever.ts`: exactOptionalPropertyTypes
|
|
601
|
+
conditional spread for `{ model }` arg.
|
|
602
|
+
- `feedback/dialog-recorder.ts`, `feedback-analyzer.ts`, `feedback-store.ts`,
|
|
603
|
+
`feedback/gap-registry.ts`, `intent/decomposer.ts`, `intent/intent-alignment.ts`,
|
|
604
|
+
`intent/prompt-analyzer.ts`: noUncheckedIndexedAccess guards, implicit-any
|
|
605
|
+
filter params, null-coalesce fallbacks on regex match groups.
|
|
606
|
+
- All .ts files re-emitted to .js via esbuild (18ms per package) — runtime
|
|
607
|
+
module resolution was broken after Phase 4 deleted the original .js sources.
|
|
608
|
+
- `tsconfig.json`: include `../node-shims.d.ts`.
|
|
609
|
+
Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
610
|
+
[Semantic Versioning](https://semver.org/).
|
|
611
|
+
## [0.6.32] — 2026-05-23
|
|
612
|
+
|
|
613
|
+
_No pending changes._
|
|
614
|
+
|
|
615
|
+
## [0.6.4] - 2026-05-18
|
|
616
|
+
|
|
617
|
+
### v0.6.4 — Lockstep ride-along
|
|
618
|
+
|
|
619
|
+
TS Phase 5: a2ui.schema.json schema-driven codegen (§359). No source changes in this package.
|
|
620
|
+
|
|
621
|
+
## [0.6.3] - 2026-05-18
|
|
622
|
+
|
|
623
|
+
### v0.6.3 — Lockstep ride-along
|
|
624
|
+
|
|
625
|
+
TS Phase 5: runtime real declarations (§358) + compose branded IDs.
|
|
626
|
+
No source changes in this package. Internal dep ranges stay at `^0.6.0`.
|
|
627
|
+
|
|
628
|
+
## [0.6.2] - 2026-05-18
|
|
629
|
+
|
|
630
|
+
### v0.6.2 §356 — TypeScript-first Phase 4: `@adia-ai/a2ui-retrieval` sources → `.ts`
|
|
631
|
+
|
|
632
|
+
19 `.ts` source files. Closes TS-MIG-001 `skipLibCheck` override in
|
|
633
|
+
`@adia-ai/a2ui-compose`. `tsconfig.build.json` added. **No BREAKING changes.**
|
|
634
|
+
|
|
635
|
+
## [0.6.1] - 2026-05-18
|
|
636
|
+
|
|
637
|
+
### v0.6.1 — Lockstep ride-along
|
|
638
|
+
|
|
639
|
+
`@adia-ai/llm` TS Phase 2 (§353) + `<link-ui>` token rename (§354) +
|
|
640
|
+
`@adia-ai/a2ui-compose` TS Phase 3 (§355). No source changes in this package.
|
|
641
|
+
Internal dep ranges stay at `^0.6.0`.
|
|
642
|
+
|
|
643
|
+
## [0.6.0] - 2026-05-18
|
|
644
|
+
|
|
645
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.6.0 — see root CHANGELOG)._
|
|
646
|
+
|
|
647
|
+
**MINOR-line internal-dep range update:** internal `@adia-ai/*` dependency ranges move from `^0.5.0` to `^0.6.0` per AdiaUI lockstep policy.
|
|
648
|
+
|
|
649
|
+
## [0.5.21] - 2026-05-18
|
|
650
|
+
|
|
651
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.21 — see root CHANGELOG)._
|
|
652
|
+
|
|
653
|
+
## [0.5.20] - 2026-05-18
|
|
654
|
+
|
|
655
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.20 — see root CHANGELOG)._
|
|
656
|
+
|
|
657
|
+
## [0.5.19] - 2026-05-17
|
|
658
|
+
|
|
659
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.19 — see root CHANGELOG)._
|
|
660
|
+
|
|
661
|
+
## [0.5.18] - 2026-05-16
|
|
662
|
+
|
|
663
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.18 — see root CHANGELOG)._
|
|
664
|
+
|
|
665
|
+
## [0.5.17] - 2026-05-16
|
|
666
|
+
|
|
667
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.17 — see root CHANGELOG)._
|
|
668
|
+
|
|
669
|
+
## [0.5.16] - 2026-05-16
|
|
670
|
+
|
|
671
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.16 — see root CHANGELOG)._
|
|
672
|
+
|
|
673
|
+
## [0.5.15] - 2026-05-16
|
|
674
|
+
|
|
675
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.15 — see root CHANGELOG)._
|
|
676
|
+
|
|
677
|
+
## [0.5.14] - 2026-05-15
|
|
678
|
+
|
|
679
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.14 — see root CHANGELOG)._
|
|
680
|
+
|
|
681
|
+
## [0.5.13] - 2026-05-15
|
|
682
|
+
|
|
683
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.13 — see root CHANGELOG)._
|
|
684
|
+
|
|
685
|
+
## [0.5.12] - 2026-05-15
|
|
686
|
+
|
|
687
|
+
_Lockstep ride-along (no source change in this package; companion to web-components v0.5.12 — see root CHANGELOG)._
|
|
688
|
+
|
|
689
|
+
## [0.5.11] - 2026-05-15
|
|
690
|
+
|
|
691
|
+
_Lockstep ride-along (no source change)._
|
|
692
|
+
|
|
693
|
+
## [0.5.10] - 2026-05-15
|
|
694
|
+
|
|
695
|
+
_Lockstep ride-along (no source change)._
|
|
696
|
+
|
|
697
|
+
## [0.5.9] - 2026-05-15
|
|
698
|
+
|
|
699
|
+
_Lockstep ride-along (no source change)._
|
|
700
|
+
|
|
701
|
+
## [0.5.8] - 2026-05-15
|
|
702
|
+
|
|
703
|
+
_Lockstep ride-along (no source change)._
|
|
704
|
+
|
|
705
|
+
## [0.5.7] - 2026-05-15
|
|
706
|
+
|
|
707
|
+
_Lockstep ride-along (no source change)._
|
|
708
|
+
|
|
709
|
+
## [0.5.6] - 2026-05-14
|
|
710
|
+
|
|
711
|
+
_Lockstep ride-along (no source change)._
|
|
712
|
+
## [0.5.5] - 2026-05-14
|
|
713
|
+
|
|
714
|
+
### Changed — lockstep ride-along; no source changes
|
|
715
|
+
|
|
716
|
+
`version`: `0.5.4` → `0.5.5`. Source byte-identical to `0.5.4`.
|
|
717
|
+
|
|
718
|
+
Tracking the v0.5.5 cycle's detector-driven cleanup arcs (§176-§179) + exe.dev LLM Gateway migration (§181-§188) + FEEDBACK-08 closure (§184): see root `CHANGELOG.md` for the full narrative. This package carries no source changes this cycle.
|
|
719
|
+
## [0.5.4] - 2026-05-14
|
|
720
|
+
|
|
721
|
+
### Changed — lockstep ride-along; no source changes
|
|
722
|
+
|
|
723
|
+
`version`: `0.5.3` → `0.5.4`. Source byte-identical to `0.5.3`.
|
|
724
|
+
Tarball changes: none.
|
|
725
|
+
|
|
726
|
+
Tracking the v0.5.4 cycle's prop-fidelity arcs (§163 transpiler fix,
|
|
727
|
+
§164 chunk re-harvest, §165 validator check #19, §166a/b/c audit-script
|
|
728
|
+
family slots 12+13 + smoke shift-left): see root `CHANGELOG.md` for the
|
|
729
|
+
full narrative. This package carries no source changes this cycle.
|
|
730
|
+
## [0.5.3] - 2026-05-14
|
|
731
|
+
|
|
732
|
+
_No pending changes._
|
|
733
|
+
## [0.5.2] - 2026-05-13
|
|
734
|
+
|
|
735
|
+
_Lockstep ride-along (no source change)._
|
|
736
|
+
## [0.5.1] - 2026-05-13
|
|
737
|
+
|
|
738
|
+
_Lockstep ride-along (no source change)._
|
|
739
|
+
## [0.5.0] - 2026-05-13
|
|
740
|
+
|
|
741
|
+
_Lockstep ride-along (no source change)._
|
|
742
|
+
## [0.4.9] - 2026-05-13
|
|
743
|
+
|
|
744
|
+
_No pending changes._
|
|
745
|
+
## [0.4.8] - 2026-05-12
|
|
746
|
+
|
|
747
|
+
### Ride-along (no source changes)
|
|
748
|
+
|
|
749
|
+
Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.8` (§80 event-types codegen for 38 non-form primitives + §85 class-subpath script fix + §89 icons.js split + B+C+D consumer-friction infra), `@adia-ai/web-modules@0.4.8` (FEEDBACK-02 #1 `.d.ts` shipment + `composes:` ADR-0027 wiring), `@adia-ai/a2ui-compose@0.4.8` (§87 zettel `ensureBooted()` race fix + §88 free-form composition mode), `@adia-ai/a2ui-corpus@0.4.8` (catalog regen ride-along), `@adia-ai/a2ui-mcp@0.4.8` (§87 eval threshold rebaseline). Source byte-identical to v0.4.7.
|
|
750
|
+
|
|
751
|
+
Internal `@adia-ai/*` dep ranges stay at `^0.4.0` (patch-cut asymmetry — `^0.4.0` covers `0.4.x` under semver). See root [CHANGELOG.md `## [0.4.8]`](../../../CHANGELOG.md) for the cut narrative.
|
|
752
|
+
## [0.4.7] - 2026-05-12
|
|
753
|
+
|
|
754
|
+
### Removed — `embedding/embedding-retriever.js` + `concept-mapper.js` retired (§72, the §65 carry-over)
|
|
755
|
+
|
|
756
|
+
The pattern-embeddings retrieval surface — `embedding-retriever.js` and its sole consumer `concept-mapper.js` (dead since v0.4.6 §64 retired `pattern-library.js`) — has been deleted from `packages/a2ui/retrieval/`. Companion artifacts in `@adia-ai/a2ui-corpus` (`pattern-embeddings.json` data file + `./pattern-embeddings` subpath export) and repo-side (`scripts/build/embeddings.mjs` + `build:embeddings` / `build:embeddings:all` npm scripts) retired in the same arc.
|
|
757
|
+
|
|
758
|
+
`embedding/index.js` no longer re-exports from `embedding-retriever.js`. The remaining surface: `embedding-provider.js` (provider abstraction over Voyage / OpenAI) + `chunk-embedding-retriever.js` (the canonical embedding-based retriever, scoped to chunks).
|
|
759
|
+
|
|
760
|
+
### Changed — `intent/prompt-analyzer.js` `getVocab()` reads canonical catalog (§72)
|
|
761
|
+
|
|
762
|
+
Migrated from `@adia-ai/a2ui-corpus/patterns/_components.json` (retired) to `@adia-ai/a2ui-corpus/catalog-a2ui_0_9.json` (the canonical v0.9 catalog). Vocabulary now built from `components[name].x-adiaui.synonyms.tags`. Same `displayList` + `allowedSet` output shape; no behavior change for downstream callers.
|
|
763
|
+
## [0.4.6] - 2026-05-12
|
|
764
|
+
|
|
765
|
+
### Changed — `pattern-library.js` retired, consumers migrate to `composition-library` (§64 multi-step, 2026-05-12)
|
|
766
|
+
|
|
767
|
+
The legacy `pattern-library.js` retrieval surface is retired in v0.4.6. Compositions (`@adia-ai/a2ui-compose/strategies/zettel/composition-library.js`) are now the canonical retrieval source — the §41 unification of compositions + annotated chunks made `pattern-library.js` redundant. Six-step migration (commits `cd11939d` / `67d3075c` / `c2336895` / `7cd42ca4` / `9abcd8ce` / `a4814384`):
|
|
768
|
+
|
|
769
|
+
- **`pattern-library.js` retired** (§64 step 6). `reference.js` now delegates to `composition-library` for all reads; the file remains as a thin shim that re-exports the new path while emitting a one-shot deprecation warn for direct importers.
|
|
770
|
+
- **`component-catalog.js` carved out of `pattern-library`** (§64 step 1). Previously the catalog ride-along on the pattern surface; now lives at its own module path so consumers can drop `pattern-library` without losing the catalog. Re-exported from the package barrel.
|
|
771
|
+
- **`context-assembler.js` + `intent/clarity.js` migrated to `composition-library`** (§64 step 4). Both modules previously asked `pattern-library.search(intent)`; now ask `compositionLibrary.search(intent)`. Behavior preserved — the new lookup returns the same shape post-§41 normalization.
|
|
772
|
+
- **`authoring/index.js` + `authoring/pattern-promotion.js` + `authoring/synthetic-data.js` retired** (§64 step 2). All three were dead code by §63 (pattern-promotion fired on a surface that no consumer exercised; synthetic-data targeted the pattern shape). Files deleted; barrel re-exports cleaned.
|
|
773
|
+
- **`index.js`** — barrel updated to reflect the carved-out + retired modules.
|
|
774
|
+
|
|
775
|
+
See root [CHANGELOG.md `[Unreleased]`](../../../CHANGELOG.md) and `@adia-ai/a2ui-compose@[Unreleased]` for the cross-cutting arc narrative.
|
|
776
|
+
## [0.4.5] - 2026-05-12
|
|
777
|
+
|
|
778
|
+
### Ride-along (no source changes)
|
|
779
|
+
|
|
780
|
+
Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.5` (§61 CSS subpath exports + CustomEvent.detail sweep across 17 form-bearing primitives + slider reactivity test lock-in + §52 design-tokens export module + UI), `@adia-ai/web-modules@0.4.5` (§61 CSS subpath exports — six cluster `*.css` exports), `@adia-ai/a2ui-compose@0.4.5` (§56 system-prompt CORPUS CONTEXT block in monolithic strategies), `@adia-ai/llm@0.4.5` (§54 doc-comment path refresh). Source byte-identical to v0.4.4.
|
|
781
|
+
|
|
782
|
+
Internal `@adia-ai/*` dep ranges stay at `^0.4.0` (patch-cut asymmetry — `^0.4.0` covers `0.4.x` under semver). See root [CHANGELOG.md `## [0.4.5]`](../../../CHANGELOG.md) for the cut narrative.
|
|
783
|
+
## [0.4.4] - 2026-05-12
|
|
784
|
+
|
|
785
|
+
### Ride-along (no source changes)
|
|
786
|
+
|
|
787
|
+
Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.4` (14 yaml gap closures from corpus simplification arc), `@adia-ai/a2ui-runtime@0.4.4` (registry expansion +27 web-modules + renderer kebab-case fix), `@adia-ai/a2ui-compose@0.4.4` (composition-library rename + transpiler `<a>` → Link), `@adia-ai/a2ui-corpus@0.4.4` (corpus simplification arc §36–§51), `@adia-ai/a2ui-mcp@0.4.4` (`get_fragment` tool retirement). Source byte-identical to v0.4.3.
|
|
788
|
+
|
|
789
|
+
Internal `@adia-ai/*` dep ranges stay at `^0.4.0` (patch-cut asymmetry — `^0.4.0` covers `0.4.x` under semver). See root [CHANGELOG.md `## [0.4.4]`](../../../CHANGELOG.md) for the cut narrative.
|
|
790
|
+
## [0.4.3] - 2026-05-11
|
|
791
|
+
|
|
792
|
+
### Fixed
|
|
793
|
+
|
|
794
|
+
- **`process.env` browser-compat guard** — `feedback/dialog-recorder.js` was reading `process.env.A2UI_RETRIEVAL_DIALOG_RECORD` directly, which throws `ReferenceError: process is not defined` in browser execution paths. Now guarded by `const IS_NODE = typeof process !== 'undefined' && process.versions?.node;` before the env-lookup. Dialog recording is Node-only by design (writes to filesystem); the guard short-circuits cleanly in browser callers.
|
|
795
|
+
|
|
796
|
+
### Lockstep
|
|
797
|
+
|
|
798
|
+
9-package coordinated PATCH cut to v0.4.3. Internal `@adia-ai/*` dep ranges stay at `^0.4.0` (patch-cut asymmetry). Source change scoped to one file (`feedback/dialog-recorder.js`); pairs with the same fix in `@adia-ai/a2ui-compose` v0.4.3. See root [CHANGELOG.md `## [0.4.3]`](../../../CHANGELOG.md).
|
|
799
|
+
## [0.4.2] - 2026-05-11
|
|
800
|
+
|
|
801
|
+
### Ride-along (no source changes)
|
|
802
|
+
|
|
803
|
+
Lockstep PATCH cut alongside `@adia-ai/web-components@0.4.2` (`<input-ui type="number">` rewrite drops native `<input type=number>` wrapping) + `@adia-ai/web-modules@0.4.2` (`<editor-sidebar>` grid-track width-mirror fix). Source byte-identical to v0.4.1.
|
|
804
|
+
|
|
805
|
+
Internal `@adia-ai/*` dep ranges stay at `^0.4.0` (patch-cut asymmetry — `^0.4.0` covers `0.4.x` under semver). See root [CHANGELOG.md `## [0.4.2]`](../../../CHANGELOG.md) for the cut narrative.
|
|
806
|
+
## [0.4.1] - 2026-05-10
|
|
807
|
+
|
|
808
|
+
### Ride-along (no source changes)
|
|
809
|
+
|
|
810
|
+
Lockstep PATCH cut alongside `@adia-ai/web-modules@0.4.1` (simple cluster) + `@adia-ai/a2ui-validator@0.4.1` (Phase 3 foundation) + `@adia-ai/a2ui-corpus@0.4.1` (fragment metrics reconciliation). Source byte-identical to v0.4.0.
|
|
811
|
+
|
|
812
|
+
Internal `@adia-ai/*` dep ranges bumped from `^0.4.0` to `^0.4.1`. See root [CHANGELOG.md `## [0.4.1]`](../../../CHANGELOG.md) for the cut narrative.
|
|
813
|
+
## [0.4.0] - 2026-05-10
|
|
814
|
+
|
|
815
|
+
### Ride-along (no source changes)
|
|
816
|
+
|
|
817
|
+
Lockstep MINOR cut alongside `@adia-ai/web-modules@0.4.0` (ADR-0024 legacy shell shapes retired). Source byte-identical to v0.3.6.
|
|
818
|
+
|
|
819
|
+
Internal `@adia-ai/*` dep ranges bumped from `^0.3.0` to `^0.4.0`. See root [CHANGELOG.md `## [0.4.0]`](../../../CHANGELOG.md) for the cut narrative.
|
|
820
|
+
## [0.3.6] - 2026-05-10
|
|
821
|
+
|
|
822
|
+
### Ride-along (no source changes)
|
|
823
|
+
|
|
824
|
+
Lockstep version bump only — source byte-identical to v0.3.5. Internal `@adia-ai/*` dep ranges remain at `^0.3.0`. See root [CHANGELOG.md `## [0.3.6]`](../../../CHANGELOG.md) for the cut narrative.
|
|
825
|
+
## [0.3.5] - 2026-05-07
|
|
826
|
+
|
|
827
|
+
### Ride-along (no source changes)
|
|
828
|
+
|
|
829
|
+
Lockstep version bump only — source byte-identical to v0.3.4. Internal `@adia-ai/*` dep ranges remain at `^0.3.0`. See root [CHANGELOG.md `## [0.3.5]`](../../../CHANGELOG.md) for the cut narrative.
|
|
830
|
+
## [0.3.4] - 2026-05-07
|
|
831
|
+
|
|
832
|
+
### Ride-along (no source changes)
|
|
833
|
+
|
|
834
|
+
Lockstep version bump only — source byte-identical to v0.3.3. Internal `@adia-ai/*` dep ranges remain at `^0.3.0`. See root [CHANGELOG.md `## [0.3.4]`](../../../CHANGELOG.md) for the cut narrative.
|
|
835
|
+
## [0.3.3] - 2026-05-07
|
|
836
|
+
|
|
837
|
+
**Lockstep cut.** All 9 published `@adia-ai/*` packages now share version `0.3.3`, governed by [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` ranges stay at `^0.3.0` (patch-cut asymmetry — caret floats `0.3.x`).
|
|
838
|
+
|
|
839
|
+
### Changed
|
|
840
|
+
|
|
841
|
+
- **`feedback/dialog-recorder.isRecording()`** — extended to honor
|
|
842
|
+
the new `A2UI_COMPOSE_TRACE` env var (companion to the
|
|
843
|
+
`compose:trace` flag in `@adia-ai/a2ui-compose/core/generator.js`).
|
|
844
|
+
When tracing is on, `isRecording()` returns true so engines
|
|
845
|
+
populate `_debug` payloads (which the trace consumes); without
|
|
846
|
+
this, traces would be empty when feedback recording is off.
|
|
847
|
+
(closes backlog #89)
|
|
848
|
+
## [0.3.2] - 2026-05-06
|
|
849
|
+
|
|
850
|
+
**9-package lockstep patch cut to v0.3.2.** All lockstep members share
|
|
851
|
+
one version per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy).
|
|
852
|
+
Internal `@adia-ai/*` dep ranges unchanged at `^0.3.0`.
|
|
853
|
+
|
|
854
|
+
### No source changes
|
|
855
|
+
|
|
856
|
+
This package's source is byte-identical to v0.3.1. The cut bumps
|
|
857
|
+
version only.
|
|
858
|
+
|
|
859
|
+
### Changed
|
|
860
|
+
|
|
861
|
+
- `version`: `0.3.1` → `0.3.2`.
|
|
862
|
+
## [0.3.1] - 2026-05-06
|
|
863
|
+
|
|
864
|
+
**9-package lockstep patch cut.** All 9 published `@adia-ai/*` packages bump 0.3.0 → 0.3.1 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.3.0` (covers `0.3.1` under semver — patch-cut asymmetry).
|
|
865
|
+
|
|
866
|
+
This package itself ships **no source changes** in v0.3.1. The cut bumps version only — substantive content lives in [`@adia-ai/web-components`](https://github.com/adiahealth/gen-ui-kit/releases/tag/web-components-v0.3.1) (folder-per-trait restructure; barrel API unchanged).
|
|
867
|
+
|
|
868
|
+
### Changed
|
|
869
|
+
|
|
870
|
+
- `version`: `0.3.0` → `0.3.1`.
|
|
871
|
+
- Internal `@adia-ai/*` dep ranges: unchanged at `^0.3.0` (covers `0.3.1` under semver — patch-cut asymmetry).
|
|
872
|
+
## [0.3.0] - 2026-05-05
|
|
873
|
+
|
|
874
|
+
**9-package lockstep cut.** All 9 published `@adia-ai/*` packages bump 0.2.5 → 0.3.0 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges bump `^0.2.0` → `^0.3.0`.
|
|
875
|
+
|
|
876
|
+
The lockstep policy expanded from 8 to 9 packages with this cut — `@adia-ai/llm` joins as a 9th member, and `@adia-ai/a2ui-utils` was renamed to `@adia-ai/a2ui-runtime`. This package's `dependencies` updated accordingly.
|
|
877
|
+
|
|
878
|
+
This package itself ships **no source changes** in v0.3.0. The cut bumps version + dep ranges only.
|
|
879
|
+
|
|
880
|
+
### Changed
|
|
881
|
+
|
|
882
|
+
- `dependencies["@adia-ai/a2ui-utils"]` removed; replaced by `dependencies["@adia-ai/a2ui-runtime"]: ^0.3.0` (rename + bump).
|
|
883
|
+
- `dependencies["@adia-ai/a2ui-corpus"]`: `^0.2.0` → `^0.3.0`.
|
|
884
|
+
- `version`: `0.2.5` → `0.3.0`.
|
|
885
|
+
## [0.2.5] - 2026-05-04
|
|
886
|
+
|
|
887
|
+
**8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.4 → 0.2.5 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.2.0` (covers 0.2.5 under semver — patch-cut asymmetry).
|
|
888
|
+
|
|
889
|
+
This is a **patch cut on top of v0.2.4, no BREAKING changes.** Substantive content lives in `web-components` (new `<fields-ui>` form-grid primitive + `draggable-list-item` last-item drop-zone fix, both surfaced by the Tasks UI Playground at `.claude/docs/projects/tasks-playground/`); `a2ui-corpus` ships a catalog regen for the new `<fields-ui>` yaml. `a2ui-retrieval` rides along at version bump only — no source change.
|
|
890
|
+
|
|
891
|
+
### Changed
|
|
892
|
+
|
|
893
|
+
- `version`: `0.2.4` → `0.2.5`.
|
|
894
|
+
- Internal `@adia-ai/*` dep ranges: unchanged at `^0.2.0` (covers `0.2.5` under semver — patch-cut asymmetry).
|
|
895
|
+
## [0.2.4] - 2026-05-04
|
|
896
|
+
|
|
897
|
+
**8-package lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.3 → 0.2.4 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Internal `@adia-ai/*` dep ranges remain at `^0.2.0` (covers 0.2.4 under semver — patch-cut asymmetry).
|
|
898
|
+
|
|
899
|
+
This is a **patch cut on top of v0.2.3, no BREAKING changes.** Substantive content lives in `web-components` (Tier 4 trait library lift, 11 new traits + 2 architectural rewrites, plus accumulated bug fixes); `a2ui-corpus` ships a catalog regen for the new `<demo-toggle-ui>` primitive. Six packages ride along at version + dep-range bump.
|
|
900
|
+
|
|
901
|
+
### Changed
|
|
902
|
+
|
|
903
|
+
- `version`: `0.2.3` → `0.2.4`.
|
|
904
|
+
- `dependencies["@adia-ai/a2ui-utils"]`: `^0.2.0` (covers `0.2.4`).
|
|
905
|
+
|
|
906
|
+
This package's source tree is byte-identical to 0.2.3. The cut bumps version + the internal dep range only, per the lockstep policy.
|
|
907
|
+
|
|
908
|
+
_Nothing yet._
|
|
909
|
+
|
|
910
|
+
---
|
|
911
|
+
|
|
912
|
+
---
|
|
913
|
+
## [0.2.3] - 2026-05-04
|
|
914
|
+
|
|
915
|
+
**Lockstep cut.** All 8 published `@adia-ai/*` packages bump
|
|
916
|
+
0.2.2 → 0.2.3 per
|
|
917
|
+
[`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy).
|
|
918
|
+
Patch cut — no breaking changes.
|
|
919
|
+
|
|
920
|
+
### Changed
|
|
921
|
+
|
|
922
|
+
- `version`: `0.2.2` → `0.2.3`.
|
|
923
|
+
- `dependencies["@adia-ai/a2ui-corpus"]`: `^0.2.0` (covers `0.2.3`).
|
|
924
|
+
|
|
925
|
+
### No source changes
|
|
926
|
+
|
|
927
|
+
`@adia-ai/a2ui-retrieval` source is byte-identical to `0.2.2`. The cut bumps version + the internal dep range entries only.
|
|
928
|
+
## [0.2.2] - 2026-05-02
|
|
929
|
+
|
|
930
|
+
**Lockstep cut + `detectReferences` brand-only filter.** All 8 published `@adia-ai/*` packages bump 0.2.1 → 0.2.2 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Patch cut — no breaking changes.
|
|
931
|
+
|
|
932
|
+
### Changed
|
|
933
|
+
|
|
934
|
+
- `version`: `0.2.1` → `0.2.2`.
|
|
935
|
+
- `dependencies["@adia-ai/a2ui-corpus"]`: `^0.2.0` (covers `0.2.2`).
|
|
936
|
+
- `dependencies["@adia-ai/a2ui-utils"]`: `^0.2.0` (covers `0.2.2`).
|
|
937
|
+
- `authoring/web-research.js` is the surface that gained the EXPLICIT/IMPLICIT pattern split; no other retrieval subdirs touched.
|
|
938
|
+
|
|
939
|
+
### Fixed — `detectReferences` brand-only filter (2026-05-02)
|
|
940
|
+
|
|
941
|
+
`authoring/web-research.js` regex patterns were capturing generic nouns as brand references. For the intent `"tier pricing page"`, the pattern `\b(\w+)\s+(?:pricing|dashboard|landing|login|settings|profile)\s+page\b` captured `"tier"` and seeded a research query for `"tier pricing UI design components"` — useless, since `"tier"` is a generic noun, not a brand reference.
|
|
942
|
+
|
|
943
|
+
Fix: split `REFERENCE_PATTERNS` into two tiers by signal strength:
|
|
944
|
+
|
|
945
|
+
- **`EXPLICIT_PATTERNS`** — the surrounding language declares the captured token IS a brand reference (`"like X"`, `"X-style"`, `"similar to X"`, `"clone X"`). Captures accepted as references.
|
|
946
|
+
- **`IMPLICIT_PATTERNS`** — the surrounding language is a UI-shape verb (`"X pricing page"`). Captures accepted ONLY if in `KNOWN_REFERENCES` (Stripe, Notion, Figma, …); generic nouns dropped.
|
|
947
|
+
|
|
948
|
+
Verified:
|
|
949
|
+
- `"tier pricing page"` → no refs (was: `["tier"]`)
|
|
950
|
+
- `"fancy pricing page"` → no refs
|
|
951
|
+
- `"Stripe pricing page"` → `["stripe"]` ✓
|
|
952
|
+
- `"Notion-style sidebar"` → `["notion"]` ✓
|
|
953
|
+
- `"like Figma"` → `["figma"]` ✓
|
|
954
|
+
|
|
955
|
+
Per memory `feedback_panel_label_reliability.md`. Companion fix in `@adia-ai/a2ui-compose` Unreleased (generator.js panel emissions). Both surfaces feed the same reasoning-panel deception class — five distinct bugs caught + fixed in commit `9986c71e`.
|
|
956
|
+
|
|
957
|
+
---
|
|
958
|
+
## [0.2.1] - 2026-05-02
|
|
959
|
+
|
|
960
|
+
**Lockstep cut.** All 8 published `@adia-ai/*` packages bump 0.2.0 → 0.2.1 per [`.claude/docs/specs/package-architecture.md` § 15](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy). Patch cut — no breaking changes.
|
|
961
|
+
|
|
962
|
+
### Changed
|
|
963
|
+
|
|
964
|
+
- `version`: `0.2.0` → `0.2.1`.
|
|
965
|
+
- `dependencies["@adia-ai/a2ui-corpus"]`: `^0.2.0` (covers `0.2.1`).
|
|
966
|
+
- `dependencies["@adia-ai/a2ui-utils"]`: `^0.2.0` (covers `0.2.1`).
|
|
967
|
+
- `embedding/chunk-embedding-retriever.js` + `embedding/embedding-retriever.js` — defensive resolution path: when the `chunk-embeddings.json` / `pattern-embeddings.json` indexes aren't reachable (e.g. inside a `node_modules/@adia-ai/a2ui-corpus/` install layout where the `files:` array now excludes them), the retriever falls back to keyword-only retrieval gracefully instead of throwing on `ENOENT`. Aligns with the `@adia-ai/a2ui-corpus` 0.2.0 tarball-trim decision.
|
|
968
|
+
|
|
969
|
+
### No source-behavior changes
|
|
970
|
+
|
|
971
|
+
Public API of `a2ui-retrieval` is byte-identical to `0.2.0`. The above embedding-retriever updates only affect the failure path (`ENOENT` graceful fallback) and don't change the contract for callers passing valid index files. The cut bumps version + tracks dep ranges + softens the embedding-index-missing failure mode.
|
|
972
|
+
|
|
973
|
+
---
|
|
974
|
+
## [0.2.0] - 2026-05-02
|
|
975
|
+
|
|
976
|
+
**Lockstep cut + boundary reorganization.** All 8 published
|
|
977
|
+
`@adia-ai/*` packages now share one version, governed by
|
|
978
|
+
[`.claude/docs/specs/package-architecture.md` § 15 (Versioning Policy)](../../../.claude/docs/specs/package-architecture.md#15-versioning-policy).
|
|
979
|
+
This release also lands the boundary cleanup from T4 of the
|
|
980
|
+
`.claude/docs/plans/packages-architecture-fixes-2026-05-02.md`
|
|
981
|
+
plan.
|
|
982
|
+
|
|
983
|
+
### Changed
|
|
984
|
+
|
|
985
|
+
- `version`: `0.0.1` → `0.2.0`.
|
|
986
|
+
- `dependencies["@adia-ai/a2ui-utils"]`: `^0.0.2` → `^0.2.0`.
|
|
987
|
+
|
|
988
|
+
- **Subdir reorganization** — 26 .js files at the top level
|
|
989
|
+
reorganized into 4 named concerns. Lookup-shaped files stay at the
|
|
990
|
+
top level; the rest move into subdirs. Top-level external imports
|
|
991
|
+
(`@adia-ai/a2ui-retrieval`) continue to work unchanged via the
|
|
992
|
+
re-exporting top-level barrel.
|
|
993
|
+
|
|
994
|
+
| New path | Members |
|
|
995
|
+
|---|---|
|
|
996
|
+
| `intent/` | `intent-alignment`, `intent-categorizer`, `intent-gate`, `prompt-analyzer`, `decomposer`, `clarity` |
|
|
997
|
+
| `embedding/` | `embedding-provider`, `embedding-retriever`, `chunk-embedding-retriever` |
|
|
998
|
+
| `feedback/` | `feedback`, `feedback-store`, `feedback-analyzer`, `dialog-recorder`, `gap-registry` |
|
|
999
|
+
| `authoring/` | `synthetic-data`, `web-research`, `pattern-promotion` |
|
|
1000
|
+
| top level (kept) | `catalog`, `pattern-library`, `concept-mapper`, `domain-router`, `wiring-catalog`, `anti-patterns`, `context-assembler`, `component-entry`, `index` |
|
|
1001
|
+
|
|
1002
|
+
- New subpath exports: `./intent`, `./embedding`, `./feedback`,
|
|
1003
|
+
`./authoring` each expose a barrel `index.js`. Wildcard subpaths
|
|
1004
|
+
(`./intent/*`, `./embedding/*`, etc.) expose individual files for
|
|
1005
|
+
fine-grained imports. The old wildcard `./*` is retained for
|
|
1006
|
+
backward compatibility — direct imports of moved files still work
|
|
1007
|
+
(e.g. `import { feedbackStore } from '@adia-ai/a2ui-retrieval/feedback/feedback-store'`)
|
|
1008
|
+
but consumers should prefer the barrel form.
|
|
1009
|
+
|
|
1010
|
+
### Fixed
|
|
1011
|
+
|
|
1012
|
+
- 6 `__dirname`-based path computations (in `dialog-recorder`,
|
|
1013
|
+
`feedback-store`, `feedback-analyzer`, `gap-registry`, the two
|
|
1014
|
+
embedding retrievers, and `prompt-analyzer`) gained one more `..`
|
|
1015
|
+
segment to climb out of the new subdir to the corpus directory.
|
|
1016
|
+
Without this, the moved files would write to a non-existent path
|
|
1017
|
+
(`packages/a2ui/a2ui/corpus/...`). Caught during the post-move
|
|
1018
|
+
smoke run; same class as the
|
|
1019
|
+
`feedback_git_mv_audit_imports` memory entry.
|
|
1020
|
+
|
|
1021
|
+
### Migration
|
|
1022
|
+
|
|
1023
|
+
```diff
|
|
1024
|
+
- import { feedbackStore } from '@adia-ai/a2ui-retrieval'; // still works (top-level barrel)
|
|
1025
|
+
- import { feedbackStore } from '@adia-ai/a2ui-retrieval/feedback-store'; // BREAKS — file moved
|
|
1026
|
+
+ import { feedbackStore } from '@adia-ai/a2ui-retrieval/feedback'; // new barrel
|
|
1027
|
+
+ import { feedbackStore } from '@adia-ai/a2ui-retrieval/feedback/feedback-store'; // explicit
|
|
1028
|
+
```
|
|
1029
|
+
|
|
1030
|
+
The top-level `index.js` still re-exports the previously-public surface
|
|
1031
|
+
(`assessClarity`, `isConversational`, `decomposeIntent`,
|
|
1032
|
+
`checkIntentAlignment`, etc.) — those imports do not need updating.
|
|
1033
|
+
|
|
1034
|
+
---
|
|
1035
|
+
## [0.0.1] - 2026-04-24
|
|
1036
|
+
|
|
1037
|
+
First public release. Extracted from
|
|
1038
|
+
[`@adia-ai/a2ui-compose`](../compose/) during the 2026-04-24
|
|
1039
|
+
consolidation so non-compose tooling (tests, MCP validator tools,
|
|
1040
|
+
CI gates) can depend on retrieval without pulling the full
|
|
1041
|
+
generator graph.
|
|
1042
|
+
|
|
1043
|
+
### Included
|
|
1044
|
+
|
|
1045
|
+
- **Pattern library** (`pattern-library.js`) — indexed search over the
|
|
1046
|
+
catalog's patterns + fragments; domain-aware ranking; loads patterns
|
|
1047
|
+
from `@adia-ai/a2ui-corpus` at runtime.
|
|
1048
|
+
- **Intent gate** (`intent-gate.js`) — classifies UI-generating vs
|
|
1049
|
+
conversational intents based on domain-keyword signal. Zero-signal
|
|
1050
|
+
defaults to conversational (prevents hallucinated UI from
|
|
1051
|
+
motivational / abstract text).
|
|
1052
|
+
- **Domain router** (`domain-router.js`) — free-form text → catalog
|
|
1053
|
+
domain (`forms`, `data`, `agent`, `navigation`, `layout`, etc.).
|
|
1054
|
+
- **Anti-pattern detector** (`anti-patterns.js`) — flags invented
|
|
1055
|
+
components + bad attribute combos against the registry.
|
|
1056
|
+
- **Clarity analyzer** (`clarity.js`) — scores intent specificity;
|
|
1057
|
+
drives clarification prompts when signal is too weak.
|
|
1058
|
+
- **Context assembly** (`context.js`) — stitches retrieval results
|
|
1059
|
+
into prompt context for LLM adapters.
|
|
1060
|
+
- **Embedding retriever** (`embedding-retriever.js`) — dense-vector
|
|
1061
|
+
pattern retrieval (optional; gated on the presence of embeddings
|
|
1062
|
+
in `@adia-ai/a2ui-corpus`).
|
|
1063
|
+
- **Prompt analyzer** (`prompt-analyzer.js`) — prompt-side features
|
|
1064
|
+
feeding domain + clarity scoring.
|
|
1065
|
+
- **Dialog recorder** (`dialog-recorder.js`) — opt-in JSONL capture
|
|
1066
|
+
of LLM round-trips for offline replay + tuning (gated on
|
|
1067
|
+
`ADIA_LOG_DIALOGS=1`).
|
|
1068
|
+
- **Synthetic data** (`synthetic-data.js`) — deterministic
|
|
1069
|
+
pattern-match-only generator used by the `instant` engine mode.
|
|
1070
|
+
|
|
1071
|
+
### Dependencies
|
|
1072
|
+
|
|
1073
|
+
- `@adia-ai/a2ui-utils` — A2UI registry + runtime primitives.
|