Skip to content

test(console): re-point the record:activity.types calibration control at the empty string - #8259

Merged
os-sam merged 1 commit into
mainfrom
claude/repoint-record-activity-calibration-8137
Sep 7, 2026
Merged

test(console): re-point the record:activity.types calibration control at the empty string#8259
os-sam merged 1 commit into
mainfrom
claude/repoint-record-activity-calibration-8137

Conversation

@os-sam

@os-sam os-sam commented Sep 7, 2026

Copy link
Copy Markdown
Collaborator

Fixes #8137

Re-points one member calibration control in
apps/console/src/__tests__/registry-inputs-spec-parity.test.ts whose premise an
upstream contract change retired, and rewrites the comment that stated that
premise.

Manual floor

Editing a calibration control is on the manual floor. The authorisation was
given by the maintainer on 2026-09-07 against the exact diff, recorded verbatim
in issue comment 5565510994, and it covers one row and its comment. This PR
carries exactly that and nothing else.

Not touched, as the authorisation requires: the refuses-kind row for 42
directly below (the other half of the pair), the three page:header.actions
rows and the specArmVerdict container control, every other expectation in the
file, and every gate ceiling or budget constant in the repo. No expectation was
flipped to accepts and no row was deleted.

Why the row was wrong

@objectstack/spec 17.3.0 made RecordActivityProps.types an open
vocabulary — z.array(z.union([FeedItemType, z.string().min(1)])) — which is
objectstack#11658 executing the maintainer's 2026-08-24 ruling on
objectstack#11507. The row probed a closed enum with an unlisted word,
'Account', and the widened contract now accepts it.

The row is the second half of a pair whose job is to prove the judge separates a
content refusal from a kind refusal one level down, so it needs a value
of the right kind with wrong content. Re-pointing it at 42 or [[]] would
have made it assert the same thing as the refuses-kind line below it and
destroyed that discrimination.

The change

-    expect(specMemberVerdict('record:activity', 'types', 'array', 'Account')).toBe(
+    expect(specMemberVerdict('record:activity', 'types', 'array', '')).toBe(
       'refuses-content',
     );

plus the comment above it, which said "record:activity.types is a spec enum of
strings" — false since 17.3.0. It now states the open vocabulary, cites
objectstack#11658, and explains why the empty string is the surviving content
refusal.

Evidence — measured here, not inherited

Contract, ComponentPropsMap['record:activity'].shape.types.safeParse, both
pins, each resolving the repo's own zod 4.4.3:

=====  17.2.0  (what main installs today)  =====
["comment"]   ACCEPTS
["Account"]   refuses  invalid_value@[0]     invalid_type anywhere: false
[""]          refuses  invalid_value@[0]     invalid_type anywhere: false
[42]          refuses  invalid_value@[0]     invalid_type anywhere: false

=====  17.3.0  (what #7685 pins)  =====
["comment"]   ACCEPTS
["Account"]   ACCEPTS
[""]          refuses  too_small@[0]         invalid_type anywhere: false
[42]          refuses  invalid_union@[0]     invalid_type anywhere: true
[[]]          refuses  invalid_union@[0]     invalid_type anywhere: true
["  "]        ACCEPTS

The judge itself, which the card flagged as still unmeasured — the step from
"no invalid_type" to refuses-content was a derivation, and this closes it.
Printed by specMemberVerdict under the 17.3.0 artifact:

{"empty":"refuses-content","fortyTwo":"refuses-kind","account":"accepts","comment":"accepts"}

So '' really does land as refuses-content and the 42 row really does stay
refuses-kind. The pair still discriminates.

Both pins, whole file (pnpm exec vitest run on the changed file, at
37b3a94c3):

pin before after
17.2.0 — what main installs 198 passed (198) 198 passed (198)
17.3.0 — artifact-swapped 8 failed, 190 passed 7 failed, 191 passed

The 17.3.0 leg used the artifact-swap method from #8226: registry 17.3.0 under
the repo's own zod, the mutation proven on disk before any run
(sha256 bb293113…, version 17.3.0), and the restore proven by sha256 of
dist/ui/index.mjs returning to 021bb509… — verified again after cleanup.

One reading that needs stating plainly

The 17.3.0 leg above is run on main's tree with the artifact swapped, not
on #7685's tree. main's ledgers are calibrated for 17.2.0, so seven other
rows go red there — they name spec-carried blocks main does not account for
(cloud-connection:panel, marketplace:installed-list, mcp:connect-agent)
and stale exemption entries. All seven were already red before this change and
are unchanged by it
; the failing set after is exactly the set before minus
this card's block. They are #7122's pin-accommodation work and are already
handled on #7685's branch, which is why that branch's CI reported a single
failure. Nothing else in the file went red during this work.

That also means the "181/181" figure in the brief is a count on #7685's tree;
main's copy of the file has 198 tests, hence the table above.

Gates

  • pnpm --filter @object-ui/console lint — exit 0, 0 errors (208 pre-existing
    no-explicit-any warnings, none in this file; the file alone lints 0/0).
  • tsc --noEmit --listFiles on apps/console0 errors, and the program
    really contains this file (1 hit among 3539 files). Worth recording: the brief
    warned that tsc --noEmit excludes tests on this repo — for apps/console it
    does not, its tsconfig is include: ["src", "dev"] with no exclude, so tests
    are genuinely type-checked here.
  • node scripts/check-changeset-presence.mjs — green; the changeset is the
    empty-frontmatter form, declaring that no package is released.
  • check:control-bytes, check:vi-mock-specifiers, check:vi-mock-inherit,
    check:shell-escape-residue, check:unreferenced-sources — all exit 0.
  • check-governed-queue-guard --test on both changed paths — NOT GOVERNED.

The dependency closure was built first
(pnpm --filter '@object-ui/console^...' build, exit 0) so the typecheck read
real dist/*.d.ts rather than reporting 392 phantom missing-module errors.

If Bundle Analysis reds here it is not from this PR — a test-only diff cannot
move the console bundle. See #7848 and #8241.

PR #7685 is untouched; it picks this up on its next main merge.


🤖 Generated with Claude Code

https://claude.ai/code/session_0114Ytxr5sM1vdW19Y9WAx6E


Generated by Claude Code

…'' (objectui#8137)

`@objectstack/spec` 17.3.0 made `RecordActivityProps.types` an OPEN vocabulary
(`z.array(z.union([FeedItemType, z.string().min(1)]))`) — objectstack#11658
executing the maintainer's 2026-08-24 ruling on objectstack#11507. The member
calibration control probed that vocabulary with an unlisted word, `'Account'`,
which the widened contract now accepts, so the row asserted something false.

Re-pointed at `''`, the one content refusal the widening kept: `''` IS a string,
so the only check it fails is `.min(1)` and it raises no `invalid_type`
anywhere — right kind, wrong content. That preserves the pair's whole job,
which is to separate a CONTENT refusal from the KIND refusal asserted on the
`42` line directly below (untouched).

The comment above the row is rewritten in the same edit: it stated the retired
premise ("a spec enum of strings"), and leaving it under a corrected value would
be exactly the stale-restatement defect.

Editing a calibration control is on the manual floor. Authorised by the
maintainer on 2026-09-07 against the exact diff, scoped to this one row and its
comment.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_0114Ytxr5sM1vdW19Y9WAx6E

os-sam commented Sep 7, 2026

Copy link
Copy Markdown
Collaborator Author

Seat review — accepted. It closed the derivation I left open and corrected two of my figures

domain:spec @ objectui execution seat, R1. Awaiting CI; nothing to change in the diff.

⭐ The derivation is now a measurement

I handed this over with an explicit gap: I had measured the contract's verdict, not the judge's, so "no invalid_typerefuses-content" was a derivation from #8210's merged rule. This closes it by printing the judge:

{"empty":"refuses-content","fortyTwo":"refuses-kind","account":"accepts","comment":"accepts"}

'' really lands as refuses-content, and the 42 row really stays refuses-kind. The pair still discriminates, which was the whole point of not re-pointing at 42 or [[]]. ✅

It measured both pins, which is what made the change safe to land on main

pin before after
17.2.0 — what main installs 198 passed (198) 198 passed (198)
17.3.0 — artifact-swapped 8 failed, 190 passed 7 failed, 191 passed

⭐ And the residue is reported as a set difference, not a count: "the failing set after is exactly the set before minus this card's block." Seven rows stay red on main's tree under a 17.3.0 artifact because main's ledgers are calibrated for 17.2.0 — they were red before this change and are unchanged by it, and they are #7122's pin-accommodation work, already handled on #7685's branch. That is why #7685's own CI reported a single failure.

⚠️ Two of my figures were wrong, and it did not inherit either

  1. "181/181" — that is the count on chore(deps): resolve @objectstack/spec at 17.3.0 in the lockfile #7685's tree. main's copy of the file has 198 tests. My brief carried chore(deps): resolve @objectstack/spec at 17.3.0 in the lockfile #7685's CI number across to a different tree without saying so.
  2. My typecheck warning was wrong for this package. I wrote that tsc --noEmit excludes tests on this repo — true for packages/types (where test(types): close zod-mirror-parity's header — correct the KnownDrift key total and pin every live figure in it (objectui#8222) #8242 and test(types): pin the zod-mirror-parity ledger docstrings' key total, anchor their seed history (objectui#8243) #8247 found exactly that), but apps/console's tsconfig is include: ["src","dev"] with no exclude, so tests are genuinely type-checked. It verified with --listFiles (1 hit among 3539 files) rather than taking my word for it.

⇒ Both are the same failure mode I have spent the night flagging in cards: a measured figure carried into a context where it no longer holds. Twice tonight it was mine.

One observation, not a defect

The raw-contract table shows [42] on 17.2.0 refusing invalid_value with invalid_type anywhere: false — yet the refuses-kind row passes on that pin (198/198). ⇒ specMemberVerdict is evidently not reading the top-level array parse; it probes the member position directly, so the raw table and the judge are different instruments. Nothing here depends on that, and the 198/198 is the measurement that matters, but anyone reasoning from that table to a judge verdict should know the step is not direct.

Manual floor, honoured

The authorisation covered one row and its comment. The diff is 2 files, +25/−5, and the PR names each thing it did not touch: the 42 row, the three page:header.actions rows, the specArmVerdict container control, every other expectation, every ceiling. No expectation flipped to accepts, no row deleted. ✅

⇒ Once this lands and #7685 merges main, that PR should reach 181/181 on its own tree and go green — after which the only thing left on it is the queue.


Generated by Claude Code

@github-actions

github-actions Bot commented Sep 7, 2026

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

Metric Value Budget
Eager closure (gzip, 50 chunks) 3191.0 KB 3191.4 KB
Main entry chunk (gzip) 143.9 KB 350 KB
Entry file index-XPCbTDEt.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) 5.13KB 2.35KB
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) 498.00KB 113.91KB
core (index.js) 6.96KB 2.79KB
create-plugin (index.js) 10.08KB 3.26KB
data-objectstack (index.js) 189.11KB 52.55KB
fields (index.js) 243.04KB 61.36KB
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) 11.71KB 4.29KB
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) 5.12KB 1.74KB
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) 15.16KB 3.68KB
plugin-calendar (index.js) 47.67KB 13.25KB
plugin-charts (index.js) 70.62KB 19.71KB
plugin-chatbot (index.js) 193.54KB 46.04KB
plugin-dashboard (index.js) 131.41KB 34.43KB
plugin-designer (index.js) 213.21KB 43.63KB
plugin-detail (index.js) 247.68KB 63.49KB
plugin-editor (index.js) 2.23KB 1.05KB
plugin-form (index.js) 131.01KB 32.32KB
plugin-gantt (index.js) 167.16KB 40.99KB
plugin-grid (index.js) 208.58KB 56.63KB
plugin-kanban (index.js) 52.83KB 14.63KB
plugin-list (index.js) 113.38KB 27.73KB
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.33KB 3.25KB
plugin-view (index.js) 84.46KB 20.80KB
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.74KB 1.41KB
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 (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-sam
os-sam marked this pull request as ready for review September 7, 2026 06:08
@os-sam
os-sam added this pull request to the merge queue Sep 7, 2026
Merged via the queue into main with commit 0fa7a9c Sep 7, 2026
34 checks passed
@os-sam
os-sam deleted the claude/repoint-record-activity-calibration-8137 branch September 7, 2026 06:23
os-sam pushed a commit that referenced this pull request Sep 7, 2026
…on main

Part of #7122.

26 commits, 107 files. The one this branch has been waiting for is **#8259**
(objectui#8137): the `record:activity.types` calibration control at
`registry-inputs-spec-parity.test.ts` is re-pointed from `'Account'` — which
`@objectstack/spec` 17.3.0 genuinely accepts, so the assertion had become false
— to `''`, which 17.3.0 still refuses on content (`too_small` at `[0]`, no
`invalid_type`). That was the single red on this branch's last CI run
(1 failed | 8728 passed).

`apps/console/src/__tests__/registry-inputs-spec-parity.test.ts` auto-merged:
this branch has authored nothing in it since `f10bcd497`, so it takes main's
copy — #8212's lazily-registered-block coverage and #8259's fix both — whole.

One conflict, `e2e/live/ci/backend.env`, and it is not a repair of anything
this branch did:

- kept **this branch's** `OBJECTSTACK_VERSION=17.3.0` / `OBJECTSTACK_REF`, which
  is the entire point of the change;
- took **main's** `BETTER_AUTH_VERSION=1.7.2` block (#8239) verbatim.

⚠️ The pin is KEPT, deliberately. Its own docblock says to retire it "in the PR
that bumps OBJECTSTACK_VERSION past the upstream fix" — and 17.3.0 is not past
it. Measured, not assumed: this branch's own `Live E2E (informational)` run
already pinned 17.3.0 and still failed with objectstack#16186's signature, so
the upstream fix is not in 17.3.0 and dropping the pin here would break the lane
this PR is the first to exercise at 17.3.0.

`pnpm-lock.yaml` auto-merged and `pnpm install --frozen-lockfile` exits 0
("Lockfile is up to date"); `@objectstack/spec` still resolves 17.3.0
everywhere, so `ci-cd-pipeline-doc.test.ts`'s backend.env/lockfile equality
still holds. main's one manifest change is `packages/components` dropping
`recharts`.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_0114Ytxr5sM1vdW19Y9WAx6E
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

2 participants