Skip to content

fix(types): drop stale source-line citations from 6 published describe() strings (complex.zod.ts) - #8835

Merged
os-warren merged 4 commits into
mainfrom
claude/issue-8478-zod-pins-complex
Sep 9, 2026
Merged

fix(types): drop stale source-line citations from 6 published describe() strings (complex.zod.ts)#8835
os-warren merged 4 commits into
mainfrom
claude/issue-8478-zod-pins-complex

Conversation

@os-warren

Copy link
Copy Markdown
Collaborator

Fixes #8478

What

Removes the stale NAME.ext:NNN source-line address from all 6 published .describe() strings in packages/types/src/zod/complex.zod.ts — the last file of this card's remainder. Per the triage ruling on #8478, address removal itself is certain; the remaining prose is decided per-address, not forced to one disposition.

Disposition split for this slice (not forced to one bucket)

Address dropped, prose kept as-is (2) — the cited expression reveals a real default/policy an author needs, so it stays inline:

  • CarouselSchema.opts — "left OPEN on purpose" / forwarded verbatim, still the file's own reasoning, just without the file:line
  • CarouselSchema.orientation — keeps the 'horizontal' fallback, an author-relevant default

Address + literal expression relocated to a maintainer // comment beside the schema (4) — the cited renderer expression only restated what the author-facing sentence already says, so it moves out of the published surface and into a maintainer-facing comment (matching this file's own convention of exact file:line references in maintainer JSDoc elsewhere in this file, e.g. custom/filter-builder.tsx:1060 a few hundred lines up):

  • FilterBuilderSchema.wrapperClass
  • CarouselSchema.itemClassName
  • ChatMessageSchema.avatar
  • ChatMessageSchema.avatarFallback

Zero needed a full sentence deletion (disposition (b)) — none of the six were "meaningless without the address"; all six describe real behavior beyond the citation.

Text only: no accept-set, key, or shape change. Clause-②: no.

Re-derived count (call-scoped matcher, on my own head)

Matcher: for every .describe( call in packages/types/src, extract its argument text up to the matching close-paren (so a continuation-line address is not missed), and count the call if that argument contains a NAME.ext:NNN token.

On my branch base (b226d1b20, before this slice's edit): complex.zod.ts = 6 — matches the card's own figure, triage's independent recount, and slice 1's dev's count exactly (all three call-scoped). The PM's own single-line-scoped re-measurement read 3, which the claim comment itself flagged as an undercount for continuation-line addresses — confirmed here: this file's addresses sit on continuation lines the single-line matcher misses.

Firing controls, both measured:

  • Same matcher over every string literal (not just .describe() calls) in all of packages/types/src, at branch base: 162 — large non-zero, confirms the matcher isn't broken.
  • Control file form.zod.ts (out of scope for this diff, untouched by my commit): 9 before my edit, 9 after — unchanged and non-zero, confirming the complex.zod.ts 6→0 is a removal, not a dead grep.

Fixes vs Refs — decided from measurement, not transcribed

This slice's claim comment predicted Fixes, "because this slice takes the last file" — but PR #8822 (the sibling slice covering form.zod.ts/layout.zod.ts) was still in the merge queue, not yet merged, when I branched. Re-deriving on my own head at that point still showed 11 addresses live in packages/types/src/zod/** outside this PR's file, which would have forced Refs.

PR #8822 merged mid-round (ecfb69322, at 2026-09-09T12:52:14Z) while this slice was in flight. I re-fetched origin/main, merged it into this branch (clean, no conflicts), and re-ran the full sweep on the merged head:

packages/types/src/zod/**.zod.ts  →  0 addresses, every file, call-scoped matcher

Zero population left anywhere in the card's file surface ⇒ Fixes is correct now, confirmed on this branch's own head, not transcribed from the claim comment's prediction. Firing control on the merged head: the same matcher over every string literal in packages/types/src still returns 147 (non-zero) — the zero is a real census result, not an all-zero tree with no control left to check against.

Spot-check — all 6 addresses in this file are accurate, unlike the prior two slices

Checked all 6 against the files they cite (a full census of this file's population, not a 3–5 sample):

citing member cited address actual site verdict
FilterBuilderSchema.wrapperClass filter-builder.tsx:37 :37<div className={schema.wrapperClass || ''}> exact
CarouselSchema.opts carousel.tsx:23 :23opts={schema.opts} exact
CarouselSchema.orientation carousel.tsx:24 :24orientation={schema.orientation || 'horizontal'} exact
CarouselSchema.itemClassName carousel.tsx:30 :30className={schema.itemClassName} on CarouselItem exact
ChatMessageSchema.avatar plugin-chatbot/src/index.tsx:173–174 :172-174message.avatar || userAvatarUrl / || assistantAvatarUrl exact
ChatMessageSchema.avatarFallback plugin-chatbot/src/index.tsx:177–178 :176-178message.avatarFallback || userAvatarFallback / || assistantAvatarFallback exact

No drift found in this file — all 6 addresses were byte-accurate at measurement time, in contrast to the two prior slices on this card, which together found 3 confirmed drifts (ObjectKanban.tsx:264:365, checkbox.tsx:45/:49:48/:52, text.tsx:162,167:165/:170) plus one borderline near-miss. Reporting this reading per the triage seat's ask; not grading it — the p3→p2 re-grade trigger has already fired three times on this card (5601493165) and this reading doesn't add a fourth instance, it's a clean result.

UNGATED_EXAMPLES / line-shift ledger hazard — checked, does not apply

  • complex.zod.ts has no @example block at all (grep -c "@example" = 0), so the ledger keyed by path:line symbol in scripts/check-doc-example-types.mjs has no row that could key off this file — confirmed by grepping the script's UNGATED_EXAMPLES table for complex.zod.ts: no hits.
  • Independently, the diff's own git diff --numstat is 10 insertions / 10 deletions — exactly equal, zero net line shift — so even a hypothetical row elsewhere in the file would not have been affected.
  • Did not run pnpm check:doc-examples itself: it requires a full turbo build across ~26 packages first (their dist/*.d.ts aren't on disk in a fresh worktree) — that full-farm build belongs to CI, not this package-scoped local gate pass; the two checks above cover the hazard this specific edit could trigger.

apps/console sweep

Included per the standing constraint. apps/console has zero .describe()-with-address hits (it isn't a Zod schema file), and a grep for the four edited schema names (FilterBuilderSchema, CarouselSchema, ChatMessageSchema, KanbanSchema) in apps/console/src found no direct references — nothing there consumes the edited description text.

Changeset

.changeset/8478-zod-pins-complex.md@object-ui/types patch, matching both prior slices' precedent for this card.

Gates (all green, on the final merged head)

  • pnpm exec vitest run packages/types/ — 160 files / 3145 tests passed
  • pnpm --filter @object-ui/types build — dist completeness OK
  • pnpm --filter @object-ui/types type-checktsc --noEmit + examples + test configs, 0 errors
  • pnpm --filter @object-ui/types lint — 0 errors (271 pre-existing no-explicit-any warnings, unrelated to this diff — identical count to the prior slice)
  • node scripts/check-changeset-presence.mjs — declares the changeset
  • node scripts/check-changeset-no-major.mjs
  • node scripts/check-changeset-fixed.mjs
  • node scripts/check-control-bytes.mjs — 7030 tracked text files scanned
  • node scripts/check-spec-symbol-derivation.mjs
  • node scripts/check-designer-field-key-parity.mjs
  • node scripts/check-handler-key-read-sites.mjs
  • node scripts/check-governed-queue-guard.mjs --test packages/types/src/zod/complex.zod.ts .changeset/8478-zod-pins-complex.mdNOT GOVERNED

Not enqueued, not merged — draft, per this dispatch's explicit instruction.


🤖 Generated with Claude Code

https://claude.ai/code/session_01Jmxdo7bmeqCQHLSfmLVX9w


Generated by Claude Code

…ribe() strings

Remove the `NAME.ext:NNN` address from all 6 published .describe() strings in
packages/types/src/zod/complex.zod.ts (#8478) -- the final
file of this card's remainder. Per-address editorial disposition, not a uniform
treatment:

- FilterBuilderSchema.wrapperClass, CarouselSchema.itemClassName, and
  ChatMessageSchema.avatar / avatarFallback: the cited renderer expression only
  restated what the prose already says in English, so it moves into a
  maintainer-facing `//` comment beside the schema (matching this file's own
  convention of file:line references in maintainer JSDoc) and the published
  description keeps the author-relevant sentence without the address.
- CarouselSchema.opts and CarouselSchema.orientation: the cited expression
  reveals a real default/policy an author needs (orientation falls back to
  'horizontal'; opts is deliberately left open, unnarrowed), so the prose
  stands on its own with the address dropped and the rest kept.

Text only: no accept-set, key, or shape change (Clause-2: no). All 6 addresses
were spot-checked against the files they cite and are byte-accurate today --
no drift found, unlike the two prior slices on this card.

Refs #8478

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jmxdo7bmeqCQHLSfmLVX9w
@github-actions

github-actions Bot commented Sep 9, 2026

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

Metric Value Budget
Eager closure (gzip, 50 chunks) 3485.2 KB 3512.7 KB
Main entry chunk (gzip) 144.0 KB 350 KB
Entry file index-Bg43-U8V.js
Status PASS

The eager closure is every chunk the entry reaches through static imports — what the browser fetches and parses before the app renders. The entry chunk on its own is a small fraction of it.


📦 Bundle Size Report

Package Size Gzipped
app-shell (consoleActionDispatch.js) 0.20KB 0.19KB
app-shell (index.js) 15.67KB 5.75KB
app-shell (runtime-config.js) 20.68KB 7.36KB
app-shell (types.js) 0.01KB 0.04KB
app-shell (urlParams.js) 10.06KB 3.86KB
auth (ActiveOrganizationStorage.js) 25.05KB 9.16KB
auth (AuthContext.js) 0.31KB 0.24KB
auth (AuthGuard.js) 2.07KB 1.00KB
auth (AuthProvider.js) 40.18KB 10.59KB
auth (AuthShell.js) 3.49KB 1.40KB
auth (ForgotPasswordForm.js) 12.21KB 3.45KB
auth (LoginForm.js) 18.15KB 5.39KB
auth (PreviewBanner.js) 0.90KB 0.50KB
auth (RegisterForm.js) 6.65KB 2.22KB
auth (SocialSignInButtons.js) 9.61KB 3.89KB
auth (UserMenu.js) 3.41KB 1.23KB
auth (auth-gate-events.js) 1.29KB 0.66KB
auth (authStyles.js) 5.04KB 1.72KB
auth (createAuthClient.js) 40.21KB 10.80KB
auth (createAuthenticatedFetch.js) 8.46KB 3.43KB
auth (index.js) 3.19KB 1.44KB
auth (invitation-status.js) 1.22KB 0.70KB
auth (org-roles.js) 6.66KB 2.78KB
auth (phone-identifier.js) 1.11KB 0.66KB
auth (types.js) 0.59KB 0.35KB
auth (useAuth.js) 5.30KB 1.02KB
auth (useWorkspaceAdminStatus.js) 11.08KB 4.58KB
collaboration (CommentThread.js) 26.08KB 7.56KB
collaboration (LiveCursors.js) 3.17KB 1.27KB
collaboration (PresenceAvatars.js) 6.49KB 2.64KB
collaboration (PresenceProvider.js) 2.79KB 1.13KB
collaboration (index.js) 1.68KB 0.73KB
collaboration (useCollaborationTranslation.js) 6.05KB 2.52KB
collaboration (useCommentSearch.js) 1.98KB 0.88KB
collaboration (useConflictResolution.js) 7.75KB 1.86KB
collaboration (useMentionNotifications.js) 1.81KB 0.68KB
collaboration (usePresence.js) 6.33KB 1.84KB
collaboration (useRealtimeSubscription.js) 7.91KB 2.01KB
components (index.js) 500.00KB 114.54KB
core (index.js) 7.48KB 2.96KB
create-plugin (index.js) 26.68KB 8.94KB
data-objectstack (index.js) 198.39KB 55.29KB
fields (index.js) 246.35KB 62.12KB
i18n (LocalizationContext.js) 1.76KB 0.96KB
i18n (builtinAggregateLabels.js) 0.86KB 0.49KB
i18n (currency.js) 1.22KB 0.64KB
i18n (fallbackInterpolation.js) 6.25KB 2.77KB
i18n (i18n.js) 6.57KB 2.76KB
i18n (index.js) 3.65KB 1.47KB
i18n (pickLocalized.js) 7.62KB 3.26KB
i18n (provider.js) 26.89KB 9.04KB
i18n (useDisplayLocale.js) 2.85KB 1.45KB
i18n (useObjectLabel.js) 34.34KB 9.17KB
i18n (useSafeTranslation.js) 5.60KB 2.33KB
layout (index.js) 38.84KB 10.94KB
mobile (MobileProvider.js) 0.92KB 0.49KB
mobile (ResponsiveContainer.js) 0.94KB 0.38KB
mobile (breakpoints.js) 1.51KB 0.70KB
mobile (createOfflineDataSource.js) 5.61KB 1.75KB
mobile (index.js) 1.99KB 0.87KB
mobile (offlineQueue.js) 3.91KB 1.35KB
mobile (pwa.js) 0.97KB 0.49KB
mobile (serviceWorker.js) 1.48KB 0.62KB
mobile (serviceWorkerSource.js) 3.41KB 1.48KB
mobile (useBreakpoint.js) 1.54KB 0.65KB
mobile (useGesture.js) 6.96KB 1.98KB
mobile (useOfflineSync.js) 1.99KB 0.72KB
mobile (usePullToRefresh.js) 2.53KB 0.85KB
mobile (useResponsive.js) 0.72KB 0.42KB
mobile (useSpecGesture.js) 4.39KB 1.66KB
mobile (useTouchTarget.js) 1.01KB 0.54KB
permissions (MePermissionsProvider.js) 13.52KB 4.88KB
permissions (PermissionContext.js) 0.31KB 0.25KB
permissions (PermissionGuard.js) 0.89KB 0.45KB
permissions (PermissionProvider.js) 6.24KB 2.16KB
permissions (discardProofCache.js) 1.04KB 0.55KB
permissions (evaluator.js) 8.39KB 3.10KB
permissions (index.js) 0.93KB 0.41KB
permissions (store.js) 0.91KB 0.42KB
permissions (useFieldPermissions.js) 1.28KB 0.53KB
permissions (usePermissions.js) 4.83KB 2.27KB
plugin-ai (index.js) 14.81KB 3.63KB
plugin-calendar (index.js) 49.03KB 13.93KB
plugin-charts (index.js) 71.39KB 19.92KB
plugin-chatbot (index.js) 194.53KB 46.34KB
plugin-dashboard (index.js) 131.43KB 34.44KB
plugin-designer (index.js) 215.51KB 44.29KB
plugin-detail (index.js) 252.45KB 65.33KB
plugin-editor (index.js) 2.23KB 1.05KB
plugin-form (index.js) 134.25KB 33.52KB
plugin-gantt (index.js) 167.16KB 40.99KB
plugin-grid (index.js) 210.67KB 57.19KB
plugin-kanban (index.js) 56.49KB 16.07KB
plugin-list (index.js) 112.73KB 27.69KB
plugin-map (index.js) 20.49KB 6.83KB
plugin-markdown (index.js) 13.88KB 4.80KB
plugin-report (index.js) 43.42KB 11.92KB
plugin-timeline (index.js) 30.10KB 8.74KB
plugin-tree (index.js) 9.55KB 3.32KB
plugin-view (index.js) 84.54KB 20.84KB
providers (DataSourceProvider.js) 0.75KB 0.39KB
providers (MetadataProvider.js) 1.37KB 0.59KB
providers (ThemeProvider.js) 1.90KB 0.85KB
providers (UploadProvider.js) 11.66KB 3.50KB
providers (index.js) 0.45KB 0.23KB
providers (types.js) 0.01KB 0.04KB
react-runtime (index.js) 5.62KB 2.34KB
react (LazyPluginLoader.js) 4.47KB 1.63KB
react (SchemaRenderer.js) 81.07KB 26.86KB
react (data-invalidation.js) 5.05KB 2.08KB
react (index.js) 4.63KB 2.18KB
react (schema-input.js) 2.32KB 1.24KB
react (spec-input.js) 0.20KB 0.18KB
sdui-parser (codegen.js) 6.58KB 2.74KB
sdui-parser (dashboard-widget-options.js) 3.08KB 1.30KB
sdui-parser (index.js) 5.55KB 2.45KB
sdui-parser (input-type.js) 2.84KB 1.40KB
sdui-parser (parse.js) 20.57KB 5.88KB
sdui-parser (provenance.js) 3.66KB 1.82KB
sdui-parser (types.js) 0.28KB 0.23KB
sdui-parser (validate.js) 13.64KB 4.59KB
types (ai.js) 0.20KB 0.17KB
types (api-types.js) 0.20KB 0.18KB
types (app.js) 2.87KB 1.00KB
types (base.js) 0.20KB 0.18KB
types (blocks.js) 0.20KB 0.18KB
types (complex.js) 2.93KB 1.49KB
types (crud.js) 0.20KB 0.18KB
types (dashboard-filter-alias.js) 6.23KB 2.74KB
types (data-display.js) 3.75KB 1.85KB
types (data-protocol.js) 0.20KB 0.19KB
types (data.js) 0.20KB 0.18KB
types (designer.js) 1.85KB 0.85KB
types (disclosure.js) 0.20KB 0.18KB
types (error-code.js) 1.54KB 0.88KB
types (expression.js) 0.20KB 0.18KB
types (feedback.js) 0.20KB 0.18KB
types (field-types.js) 0.20KB 0.18KB
types (form.js) 0.20KB 0.18KB
types (http-inflight.js) 8.87KB 3.73KB
types (http-retry.js) 4.32KB 2.02KB
types (icon-key-migration.js) 4.26KB 1.63KB
types (index.js) 4.74KB 2.25KB
types (layout.js) 0.20KB 0.18KB
types (managed-by.js) 0.19KB 0.18KB
types (mobile.js) 4.73KB 2.28KB
types (navigation.js) 0.20KB 0.18KB
types (objectql.js) 0.20KB 0.18KB
types (overlay.js) 0.20KB 0.18KB
types (permissions.js) 0.20KB 0.18KB
types (plugin-scope.js) 0.20KB 0.18KB
types (record-components.js) 0.20KB 0.19KB
types (record-semantics.js) 1.28KB 0.67KB
types (registry.js) 0.20KB 0.18KB
types (reports.js) 0.20KB 0.18KB
types (select-option.js) 0.20KB 0.19KB
types (spec-report.js) 5.05KB 1.93KB
types (spec-ui-namespace.js) 0.20KB 0.19KB
types (strict-authoring-face.js) 14.27KB 5.47KB
types (system-fields.js) 3.33KB 1.54KB
types (theme.js) 6.28KB 2.87KB
types (ui-action.js) 8.11KB 3.32KB
types (views.js) 0.20KB 0.18KB
types (widget.js) 0.20KB 0.18KB

Size Limits

  • ✅ Core packages should be < 50KB gzipped
  • ✅ Component packages should be < 100KB gzipped
  • ⚠️ Plugin packages should be < 150KB gzipped

@os-warren
os-warren marked this pull request as ready for review September 9, 2026 13:13
@os-warren
os-warren added this pull request to the merge queue Sep 9, 2026
Merged via the queue into main with commit e9d9212 Sep 9, 2026
35 checks passed
@os-warren
os-warren deleted the claude/issue-8478-zod-pins-complex branch September 9, 2026 13:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

2 participants