Finding (observation, awaiting first grading). Measured by the os-dev seat while working objectui#7925, which repaired exactly this shape in packages/plugin-calendar/README.md. ⛔ Deliberately NOT fixed there: #7925 is scoped by triage to the two object-calendar blocks in one file. Unassigned and bare — domain:* and grading are triage's.
What is true today
Measured at origin/main 868e82501. Three package READMEs place the adapter returned by createObjectStackAdapter inside the schema object literal, as a shorthand property:
packages/react/README.md:234
packages/plugin-dashboard/README.md:284
packages/plugin-report/README.md:523
Each reads, in shape:
const dataSource = createObjectStackAdapter({ ... });
const schema = {
type: 'SOME_TYPE',
dataSource,
...
};
The adapter is not a schema key. AGENTS.md §5 #1 states the wiring — it is injected through SchemaRendererProvider — and the calendar renderer confirms it in code: packages/plugin-calendar/src/index.tsx:250 reads it as const { dataSource } = useSchemaContext() || {}.
⚠️ The name collision is real and is why this is worth stating rather than assuming: a dataSource key on the schema node is the spec's element data-source binding, a declarative reference resolved against the host, not an adapter instance. packages/plugin-gantt/README.md already carries that warning verbatim for its own node. So the blocks above are not merely redundant — they teach a live object into a slot whose declared meaning is a different thing.
This class has been repaired one file at a time
- objectui#5098 (closed) fixed precisely this in
packages/plugin-form/README.md.
packages/plugin-gantt/README.md and packages/plugin-view/README.md already carry the repaired wording (The adapter is the dataSource **prop**, not part of the schema), each with an annotated schema literal beside it.
- objectui#7925 repairs
packages/plugin-calendar/README.md.
Three files remain. No open card names them, so the class is being closed by whoever happens to walk past it.
What this suggests, without prescribing it
The repaired files share one form worth copying: annotate the literal with its own schema type and state in prose where the adapter actually goes. Whether the remaining three are worth a card each, one card, or a gate that asserts no package README authors a dataSource shorthand inside a schema literal, is triage's call. ⚠️ A gate here would need care — objectui#7912 records that SchemaRendererProvider's own dataSource prop is typed any, so the type system is not currently able to back such a rule.
Filed by an automated development seat while working objectui#7925; the three coordinates above are reproducible with grep -rn for a dataSource shorthand line across packages/*/README.md.
Finding (observation, awaiting first grading). Measured by the
os-devseat while working objectui#7925, which repaired exactly this shape inpackages/plugin-calendar/README.md. ⛔ Deliberately NOT fixed there: #7925 is scoped by triage to the twoobject-calendarblocks in one file. Unassigned and bare —domain:*and grading are triage's.What is true today
Measured at
origin/main868e82501. Three package READMEs place the adapter returned bycreateObjectStackAdapterinside the schema object literal, as a shorthand property:Each reads, in shape:
The adapter is not a schema key. AGENTS.md §5 #1 states the wiring — it is injected through
SchemaRendererProvider— and the calendar renderer confirms it in code:packages/plugin-calendar/src/index.tsx:250reads it asconst { dataSource } = useSchemaContext() || {}.dataSourcekey on the schema node is the spec's element data-source binding, a declarative reference resolved against the host, not an adapter instance.packages/plugin-gantt/README.mdalready carries that warning verbatim for its own node. So the blocks above are not merely redundant — they teach a live object into a slot whose declared meaning is a different thing.This class has been repaired one file at a time
packages/plugin-form/README.md.packages/plugin-gantt/README.mdandpackages/plugin-view/README.mdalready carry the repaired wording (The adapter is the dataSource **prop**, not part of the schema), each with an annotated schema literal beside it.packages/plugin-calendar/README.md.Three files remain. No open card names them, so the class is being closed by whoever happens to walk past it.
What this suggests, without prescribing it
The repaired files share one form worth copying: annotate the literal with its own schema type and state in prose where the adapter actually goes. Whether the remaining three are worth a card each, one card, or a gate that asserts no package README authors a⚠️ A gate here would need care — objectui#7912 records that
dataSourceshorthand inside a schema literal, is triage's call.SchemaRendererProvider's owndataSourceprop is typedany, so the type system is not currently able to back such a rule.Filed by an automated development seat while working objectui#7925; the three coordinates above are reproducible with
grep -rnfor adataSourceshorthand line acrosspackages/*/README.md.