Skip to content

fix(plugin-gantt): let the gantt block outrank the flat top-level spelling - #6509

Merged
os-support-ai merged 4 commits into
mainfrom
claude/issue-6469-gantt-block-precedence
Aug 26, 2026
Merged

fix(plugin-gantt): let the gantt block outrank the flat top-level spelling#6509
os-support-ai merged 4 commits into
mainfrom
claude/issue-6469-gantt-block-precedence

Conversation

@os-support-ai

Copy link
Copy Markdown
Collaborator

Fixes#6469

getGanttConfig checked the flattened top-level spelling first and returned
early, so a node carrying both spellings rendered the flat one and every key
inside an authored gantt block was discarded with no diagnostic at all
not even the GanttConfigSchema.safeParse warning, which sat behind that early
return.

plugin-map had the identical two-faces shape ruled the other way (maintainer
ruling on #5018, 2026-08-17, landed PR #5156): the block wins, with a dev-mode
warning naming the ignored top-level keys. This PR inherits that ruling per the
triage charter, so the two sibling view plugins now answer the same question the
same way.

What changed

  • getGanttConfig checks the gantt block FIRST and returns it whole. The
    flat branch is byte-for-byte unchanged and is consulted only when there is no
    block — still gated on startDateField && endDateField, still not
    safeParsed (adding validation there is a separate question from precedence).
  • warnOnShadowedFlatGanttKeys names every shadowed flat key, once per
    distinct shadowing, in dev only. Mirrors plugin-map's
    warnOnShadowedFlatMapKeys mechanics.
  • FLAT_GANTT_CONFIG_KEYS derives the spec half from
    GanttConfigSchema.shape — the same zod object the block branch validates
    against — so a key added to the spec reaches the diagnostic without a second
    edit. objectui's ten GanttConfig extensions and the legacy dependencyField
    alias are listed, under a compile-time coverage pin.
  • Prose in packages/types/src/objectql.ts, its zod mirror, and the plugin
    README that documented the old order is corrected.

The gantt block is not declared. #6475 is untouched — this diff adds no
gantt key to ObjectGanttSchema or its mirror.

Producer safety — re-measured on today's main, not inherited

The card's evidence predated #6472, so it was re-run:

  • packages/plugin-view/src/ObjectView.tsx:1289-1298case 'gantt' spreads
    ...(viewOptions.gantt || {}) onto the top level.
  • packages/plugin-list/src/ListView.tsx:2220-2235case 'gantt' spreads
    ...(schema.options?.gantt || {}) and ...(schema.gantt || {}) onto the top
    level.
  • Neither baseProps carries a gantt key (checked at both definition sites).

So both flatteners emit the flat keys and no gantt key: their output still
takes branch 2 exactly as before, and the new warning cannot fire on that path —
which matters more here than it did for the map, because the flat branch is the
hot path for gantt. git log 9ea4cdee3..origin/main over both files is empty,
so this holds on today's main.

Zero-casualty census — and what it cannot see

Only nodes carrying both spellings change. In-repo:

  • JSON (git ls-files '*.json', walked as an AST): 3 files carry a gantt
    key — the examples/schema-catalog/src/schemas/plugin-gantt/* schemas —
    0 objects carry both spellings.
  • TS/TSX/MD: every remaining gantt: block is either a list-view / view-def
    input that gets flattened downstream (ListView tests, P1SpecBridge,
    app-shell/src/views/ObjectView.tsx), an unrelated namespace (i18n locale
    bundles, plugin-timeline's gantt demo variant, the demo's GANTT_ZH), or
    an object-gantt node carrying the block alone.

Casualties in this tree: zero.⚠️ Stated as the limit it is: an in-repo
census measures this tree. Authored metadata living outside it is exactly what
it cannot see — the same limit #6472 stated for #6475.

One in-repo shape does newly warn, and it is a real finding rather than a
casualty: the published skills/objectui/guides/page-builder.md hoists six
GanttConfig keys (quickFilters, autoZoomToFilter, resourceView,
assigneeField, effortField, capacity) to the top level beside a gantt
block, where nothing reads them. They were already inert before this PR —
that node took the block branch before the flip too — so this PR does not break
them, it stops the silence. Filed as #6508, not fixed here (skills/** is
outside this PR's file face and carries its own budget).

A gantt-specific divergence from the map case, stated out loud

Reported rather than silently absorbed, because the charter's fork clause asks
for it. It does not change which face wins, so it was not treated as a fork:

ObjectMapConfigSchema is all-optional (8 keys, 0 required). The spec's
GanttConfigSchemarequiresstartDateField / endDateField /
titleField (measured: 19 keys, 3 required). So an incomplete block can now
outrank a complete flat spelling and yield an incomplete config — an outcome
the map flip could not produce.

The block is still taken whole. Gating the flip on block validity, or
merging the flat keys under the block, is precisely the lenient consumer
fallback AGENTS.md #0.1 forbids, and neither is what "what the author wrote
outranks it" means. The author is told twice instead — Invalid gantt configuration from the existing safeParse, plus the new warning naming the
flat keys that lost. Pinned by the "still reports an incomplete winning block"
case.

Verification

Tests are narrowed by path from the repo root, per AGENTS.md, and every heavy
run went through the container's shared verify lock.

Green, on the final commit 9421ba72b:

pnpm exec vitest run packages/plugin-gantt/ packages/types/
Test Files 113 passed (113)
Tests 1169 passed (1169)
pnpm --filter @object-ui/plugin-gantt type-check
tsc --noEmit && tsc -p tsconfig.test.json → exit 0
check:control-bytes ✅ OK (scanned 5377 tracked text file(s))
check-changeset-presence ✅ 4 source file(s) of 2 released package(s) … 1 changeset
check-changeset-no-major ✅ No changeset declares a `major` bump
eslint (4 changed files, --format json) → 0 errors

Reverse verification — predicted, then observed

Each leg proved its mutation on disk by counting the target text (not by an
editor's exit code) and restored via git checkout HEAD -- <absolute path>,
re-verified by blob hash and an empty git diff HEAD. No rebuild is
involved on either leg: the test imports ./ObjectGantt relatively, so vitest
resolves the mutated source, never a dist/.

Leg A — can the coverage pin fail? Dropped 'lockField' from
GANTT_CONFIG_EXTENSION_KEYS (on-disk proof: 1 → 0 occurrences).

error TS2344: Type '"lockField"' does not satisfy the constraint 'never'.

It fails, and it names the missing key. Restored (hash matched).

Leg B — the flip itself. Restored the old order by narrowing the block guard
to schema.gantt && !(schema.startDateField && schema.endDateField) (on-disk
proof: original guard 1 → 0, injected guard 1).

Predicted RED, and observed: 5 failed | 5 passed (10).

× renders the BLOCK values when a node carries both spellings
AssertionError: expected 'FLAT Alpha' to be 'BLOCK Alpha'
× names every shadowed top-level key in the dev-mode warning
AssertionError: expected [] to have a length of 1 but got +0
× says which face won and how to fix it
× warns ONCE per distinct shadowing, not once per render
× still reports an incomplete winning block through the existing safeParse warning
AssertionError: expected '' to contain 'Invalid gantt configuration'

The 'FLAT Alpha' in that first failure is the before-state: the same
fixture rendered the flat face's values before this change and renders the
block's after it.

The mixed direction is the point — the five must-not-change pins stayed GREEN
under the same mutation: flat-spelling-only reads, no warning on the flatten
product, no warning for a block with no flat keys, the hoisted-keys case, and
the key-set derivation.

One measurement worth flagging: the guard was blind, and the pin caught it

The first version of the key-coverage pin came back string, not never.
GanttConfig derives from the spec's GanttConfigSchema and inherits an
index signature, so a bare keyof GanttConfig widens to string — and both
satisfies readonly (keyof GanttConfig)[] and the Exclude<…> pin constrained
nothing while reading exactly like guards that did. KnownGanttConfigKey
strips the index signature; the pin then measured 29 real keys and Leg A proves
it can fail. This is the same blind instrument #6051's declaration pin records
("annotate the parameter and see what errors DOES NOT WORK here").

Not measured (stated, not counted as passing)

check:readme-exports and check:doc-snippets both exited non-zero as
PRECONDITION NOT MET, in their own words — this worktree has only
plugin-gantt's dependency closure built, so the packages they resolve against
are absent. check:doc-snippets says it explicitly: "This is 'I could not
run', NOT 'I ran and found errors'"
. Neither ran against my diff, so neither is
reported as green or red. CI builds the repo and measures both. The README fence
I edited is confirmed intact independently: check:doc-fences is green and the
fence count is balanced.

Repo-wide pnpm lint is likewise CI's run. The narrowed lint above is a
measurement, not a skip: the population is the 4 changed source files, the count
comes from eslint's own --format json output, and this repo's eslint.config.js
configures no type-aware linting (no parserOptions.project /
projectService), so nothing in this diff can move the verdict on a file it did
not touch.

File face

For #6470 / #6471, which are queued behind this on the same hot file:

packages/plugin-gantt/src/ObjectGantt.tsx (getGanttConfig + new helpers above it)
packages/plugin-gantt/src/ObjectGantt.blockPrecedence.test.tsx (new)
packages/plugin-gantt/README.md (precedence prose only)
packages/types/src/objectql.ts (comments only)
packages/types/src/zod/objectql.zod.ts (comments only)
.changeset/6469-gantt-block-precedence.md (new)

Inside ObjectGantt.tsx the edit is confined to getGanttConfig and the block
inserted immediately above it. GanttConfigEx, ObjectGanttProps,
normalizeTaskType, normalizeDependencies, getDataConfig and the whole
component body are untouched — including the identity semantics the sibling
tests rely on (the block path still returns schema.ganttby reference, the
flat path still returns a fresh literal).

Generated by Claude Code


Generated by Claude Code

…pelling
`getGanttConfig` checked the flattened spelling first and returned early, so a
node carrying both spellings rendered the flat one and every key inside an
authored `gantt` block was discarded with no diagnostic at all — not even the
`GanttConfigSchema.safeParse` warning, which sat behind that early return.
`plugin-map` had the identical two-faces shape ruled the other way (maintainer
on objectui#5018, 2026-08-17, landed PR #5156): the block wins, with a dev-mode
warning naming the ignored top-level keys. objectui#6469 inherits that ruling.
- `getGanttConfig` checks the `gantt` block FIRST and returns it whole; the flat
branch is unchanged and is consulted only when no block is present.
- `warnOnShadowedFlatGanttKeys` names the shadowed flat keys once per distinct
shadowing. It is raised only from the block branch, which neither flattener's
output ever enters — `ObjectView` / `ListView` emit the flat keys and no
`gantt` key — so it cannot fire on the hot path.
- `FLAT_GANTT_CONFIG_KEYS` derives the spec half from `GanttConfigSchema.shape`;
objectui's ten `GanttConfig` extensions and the legacy `dependencyField` alias
are listed, with a compile-time coverage pin in the new test.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011SfZeFWrhGLHmfq61xbz4q
…the key-coverage guard
- `packages/types/src/objectql.ts` and its zod mirror documented the OLD order
("the flat branch is checked first and RETURNS EARLY", "no equivalent ruling
exists for gantt"). Both now state that the block wins per objectui#6469.
- `KnownGanttConfigKey` strips `GanttConfig`'s inherited index signature. A bare
`keyof GanttConfig` widens to `string`, so the `satisfies` on the extension
list and the coverage pin in the test constrained NOTHING while reading as
guards — measured: the pin came back `string`, not `never`. Same blind
instrument objectui#6051's declaration pin records.
- Adds the changeset, and a pin for the shape published authoring guidance
produces (GanttConfig keys hoisted beside a `gantt` block).
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011SfZeFWrhGLHmfq61xbz4q
@github-actionsgithub-actionsBot added documentation Improvements or additions to documentation package: types plugin tests labels Aug 26, 2026
@github-actions

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

MetricValueBudget
Eager closure (gzip, 52 chunks)3234.6 KB3266.6 KB
Main entry chunk (gzip)157.4 KB350 KB
Entry fileindex-B8888oSk.js
StatusPASS

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

PackageSizeGzipped
app-shell (consoleActionDispatch.js)0.20KB0.19KB
app-shell (index.js)11.30KB4.28KB
app-shell (runtime-config.js)18.10KB6.51KB
app-shell (types.js)0.01KB0.04KB
app-shell (urlParams.js)10.06KB3.86KB
auth (ActiveOrganizationStorage.js)25.05KB9.16KB
auth (AuthContext.js)0.31KB0.24KB
auth (AuthGuard.js)2.07KB1.00KB
auth (AuthProvider.js)40.18KB10.59KB
auth (AuthShell.js)3.49KB1.40KB
auth (ForgotPasswordForm.js)12.21KB3.45KB
auth (LoginForm.js)18.15KB5.39KB
auth (PreviewBanner.js)0.90KB0.50KB
auth (RegisterForm.js)6.65KB2.22KB
auth (SocialSignInButtons.js)9.61KB3.89KB
auth (UserMenu.js)3.41KB1.23KB
auth (auth-gate-events.js)1.29KB0.66KB
auth (authStyles.js)5.04KB1.72KB
auth (createAuthClient.js)40.21KB10.80KB
auth (createAuthenticatedFetch.js)8.46KB3.43KB
auth (index.js)3.19KB1.44KB
auth (invitation-status.js)1.22KB0.70KB
auth (org-roles.js)6.66KB2.78KB
auth (phone-identifier.js)1.11KB0.66KB
auth (types.js)0.59KB0.35KB
auth (useAuth.js)5.30KB1.02KB
auth (useWorkspaceAdminStatus.js)5.13KB2.35KB
collaboration (CommentThread.js)26.08KB7.56KB
collaboration (LiveCursors.js)3.17KB1.27KB
collaboration (PresenceAvatars.js)6.49KB2.64KB
collaboration (PresenceProvider.js)2.79KB1.13KB
collaboration (index.js)1.68KB0.73KB
collaboration (useCollaborationTranslation.js)6.05KB2.52KB
collaboration (useCommentSearch.js)1.98KB0.88KB
collaboration (useConflictResolution.js)7.75KB1.86KB
collaboration (useMentionNotifications.js)1.81KB0.68KB
collaboration (usePresence.js)6.33KB1.84KB
collaboration (useRealtimeSubscription.js)7.91KB2.01KB
components (index.js)506.01KB114.64KB
core (index.js)5.30KB2.13KB
create-plugin (index.js)10.08KB3.26KB
data-objectstack (index.js)173.10KB47.96KB
fields (index.js)238.89KB60.02KB
i18n (LocalizationContext.js)1.76KB0.96KB
i18n (currency.js)1.22KB0.64KB
i18n (fallbackInterpolation.js)6.25KB2.77KB
i18n (i18n.js)4.28KB1.75KB
i18n (index.js)3.44KB1.39KB
i18n (pickLocalized.js)7.62KB3.26KB
i18n (provider.js)26.89KB9.04KB
i18n (useDisplayLocale.js)2.85KB1.45KB
i18n (useObjectLabel.js)33.40KB8.71KB
i18n (useSafeTranslation.js)5.60KB2.33KB
layout (index.js)38.95KB10.97KB
mobile (MobileProvider.js)0.92KB0.49KB
mobile (ResponsiveContainer.js)0.94KB0.38KB
mobile (breakpoints.js)1.51KB0.70KB
mobile (createOfflineDataSource.js)5.61KB1.75KB
mobile (index.js)1.55KB0.62KB
mobile (offlineQueue.js)3.91KB1.35KB
mobile (pwa.js)0.97KB0.49KB
mobile (serviceWorker.js)1.48KB0.62KB
mobile (serviceWorkerSource.js)3.41KB1.48KB
mobile (useBreakpoint.js)1.54KB0.65KB
mobile (useGesture.js)6.96KB1.98KB
mobile (useOfflineSync.js)1.99KB0.72KB
mobile (usePullToRefresh.js)2.53KB0.85KB
mobile (useResponsive.js)0.72KB0.42KB
mobile (useResponsiveConfig.js)1.37KB0.63KB
mobile (useSpecGesture.js)4.32KB1.64KB
mobile (useTouchTarget.js)1.01KB0.54KB
permissions (MePermissionsProvider.js)9.53KB3.38KB
permissions (PermissionContext.js)0.31KB0.25KB
permissions (PermissionGuard.js)0.89KB0.45KB
permissions (PermissionProvider.js)4.64KB1.50KB
permissions (evaluator.js)5.12KB1.74KB
permissions (index.js)0.93KB0.41KB
permissions (store.js)0.91KB0.42KB
permissions (useFieldPermissions.js)1.28KB0.53KB
permissions (usePermissions.js)1.93KB0.88KB
plugin-ai (index.js)15.75KB3.80KB
plugin-calendar (index.js)46.91KB12.92KB
plugin-charts (index.js)64.66KB18.32KB
plugin-chatbot (index.js)188.60KB44.82KB
plugin-dashboard (index.js)133.48KB34.49KB
plugin-designer (index.js)211.90KB42.74KB
plugin-detail (index.js)245.29KB62.39KB
plugin-editor (index.js)2.46KB1.10KB
plugin-form (index.js)131.78KB32.19KB
plugin-gantt (index.js)165.16KB40.33KB
plugin-grid (index.js)201.66KB54.57KB
plugin-kanban (index.js)53.16KB14.65KB
plugin-list (index.js)112.74KB27.50KB
plugin-map (index.js)20.09KB6.62KB
plugin-markdown (index.js)13.72KB4.69KB
plugin-report (index.js)43.51KB11.94KB
plugin-timeline (index.js)26.72KB7.71KB
plugin-tree (index.js)9.26KB3.13KB
plugin-view (index.js)84.85KB20.79KB
providers (DataSourceProvider.js)0.75KB0.39KB
providers (MetadataProvider.js)1.37KB0.59KB
providers (ThemeProvider.js)1.90KB0.85KB
providers (UploadProvider.js)11.66KB3.50KB
providers (index.js)0.45KB0.23KB
providers (types.js)0.01KB0.04KB
react-runtime (index.js)5.62KB2.34KB
react (LazyPluginLoader.js)4.47KB1.63KB
react (SchemaRenderer.js)57.05KB19.13KB
react (data-invalidation.js)5.05KB2.08KB
react (index.js)2.05KB1.04KB
react (schema-input.js)2.32KB1.24KB
react (spec-input.js)0.20KB0.18KB
sdui-parser (codegen.js)5.41KB2.34KB
sdui-parser (dashboard-widget-options.js)3.08KB1.30KB
sdui-parser (index.js)4.93KB2.24KB
sdui-parser (input-type.js)2.84KB1.40KB
sdui-parser (parse.js)12.13KB3.65KB
sdui-parser (provenance.js)3.66KB1.82KB
sdui-parser (types.js)0.28KB0.23KB
sdui-parser (validate.js)7.54KB2.63KB
types (ai.js)0.20KB0.17KB
types (api-types.js)0.20KB0.18KB
types (app.js)2.87KB0.99KB
types (base.js)0.20KB0.18KB
types (blocks.js)0.20KB0.18KB
types (complex.js)2.74KB1.41KB
types (crud.js)0.20KB0.18KB
types (dashboard-filter-alias.js)6.23KB2.74KB
types (data-display.js)3.75KB1.85KB
types (data-protocol.js)0.20KB0.19KB
types (data.js)0.20KB0.18KB
types (designer.js)1.85KB0.85KB
types (disclosure.js)0.20KB0.18KB
types (error-code.js)1.54KB0.88KB
types (feedback.js)0.20KB0.18KB
types (field-types.js)0.20KB0.18KB
types (form.js)0.20KB0.18KB
types (http-inflight.js)8.87KB3.73KB
types (http-retry.js)4.32KB2.02KB
types (icon-key-migration.js)4.26KB1.63KB
types (index.js)4.72KB2.24KB
types (layout.js)0.20KB0.18KB
types (managed-by.js)0.19KB0.18KB
types (mobile.js)2.59KB1.31KB
types (navigation.js)0.20KB0.18KB
types (objectql.js)0.20KB0.18KB
types (overlay.js)0.20KB0.18KB
types (permissions.js)0.20KB0.18KB
types (plugin-scope.js)0.20KB0.18KB
types (record-components.js)0.20KB0.19KB
types (record-semantics.js)1.28KB0.67KB
types (registry.js)0.20KB0.18KB
types (reports.js)0.20KB0.18KB
types (spec-report.js)5.05KB1.93KB
types (spec-ui-namespace.js)0.20KB0.19KB
types (system-fields.js)3.33KB1.54KB
types (theme.js)6.28KB2.87KB
types (ui-action.js)3.40KB1.71KB
types (views.js)0.20KB0.18KB
types (widget.js)0.20KB0.18KB

Size Limits

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

@os-support-aiClaude

Copy link
Copy Markdown
CollaboratorAuthor

PM review: ACCEPT at 9421ba72b. Verified from the tree. No dev report came — this agent died mid-run on an API error, was resumed, secured its work, and was then killed again by a container restart. The work survived; the write-up did not. This review is taken entirely from the code.

⛔ The fence held, and I checked it the hard way. The diff touches packages/types, which is exactly where declaring the gantt block face would happen — and that is #6475, waiting on a human. Programmatic check: every changed line under packages/types is a comment. Zero non-comment, non-blank additions or deletions in either face. Nothing is declared, gantt gains no mirror entry, and #6475's decision is untouched. The comments themselves are the right thing to change — both described the old precedence as fact and would have become false the moment this landed.

⭐⭐ You caught the blind instrument, and you measured it rather than assuming it.GanttConfig derives from a $loose spec schema, so a bare keyof GanttConfig widens to string — and every guard written against it constrains nothing while looking exactly like a guard that does. The note that "the pin came back string before this alias existed" is the difference between a fix and a story. KnownKeys<T> strips the index signature so the satisfies and the coverage pin actually bite. This is the same absorption objectui#6051 recorded, caught a second time in a new place.

The key list cannot go stale. Deriving the spec-modelled half from GanttConfigSchema.shape — the same zod object the block branch validates against — means a key added to the spec reaches the shadow diagnostic with no second edit, and dependencyField is named separately because it is a legacy alias rather than a GanttConfig key. The satisfies readonly KnownGanttConfigKey[] plus a compile-time coverage pin closes the other direction. That is a gate with no list to maintain, which is the only kind that survives.

Dedupe is correct for this component specifically.getGanttConfig runs on every render — hover, zoom, quick-filter — so warning per evaluation would flood and therefore be muted. Warning once per distinct shadowing is the right granularity and mirrors plugin-map's precedent rather than inventing one.

Producer safety was re-measured, not inherited — and it answers the concern the dispatch raised. Both flatteners spread options.gantt's contents at the top level and emit no gantt key at all, so the flip strands neither, and the diagnostic cannot fire on the ordinary view path. The dispatch warned that the flat branch is the hot path for gantt precisely because a block reaching this component through either view layer has already been flattened; you named that and made the warning immune to it. Calling the flatten product "an internal transport form, not a second authoring surface" is the right framing for why the flip is safe.

Clause-② does not apply here, and the empty entry diff is not why.ObjectGantt.tsx gains two module-level exports, which is where this check usually starts and stops for the careless. Following the real chain: the package entry is src/index.tsx — not index.ts — it re-exports by name only with no export * from this module, it names neither KnownGanttConfigKey nor FLAT_GANTT_CONFIG_KEYS, and this PR does not touch it. Neither symbol appears in the type of anything the entry does export. So the surface did not widen. Stated limit: the definitive instrument is a rebuilt dist/index.d.ts hash, which I did not run; the named-re-export chain is strong evidence and not proof.

The README carries the flip properly — the precedence paragraph, both inline schema comments, and the knock-on to the config key note, which is the one a less careful sweep would miss because it reads as being about something else.

Landing:9421ba72b reads FAILED=none, PEND=NONE across all 29 check runs, read by name — the exact head reviewed here. Queuing now. #6470 and #6471 are released from the ObjectGantt.tsx serial queue once this merges.


Generated by Claude Code

@os-support-ai
os-support-ai marked this pull request as ready for review August 26, 2026 07:21
@os-support-ai
os-support-ai added this pull request to the merge queueAug 26, 2026
Merged via the queue into main with commit d7acad6Aug 26, 2026
30 checks passed
@os-support-ai
os-support-ai deleted the claude/issue-6469-gantt-block-precedence branch August 26, 2026 07:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

documentationImprovements or additions to documentationpackage: typesplugintests

Projects

None yet

Development

Successfully merging this pull request may close these issues.

finding(plugin-gantt): the flat spelling silently OUTRANKS the gantt block — the opposite of the precedence ruled for plugin-map, and unruled here

2 participants

@os-support-ai@claude