Instructure UI docs lookup
Instructure UI publishes its full docs as plaintext/markdown. Use it as the source of truth instead of recalling APIs from memory (they change across major versions).
Workflow
Fetch the index:
WebFetch https://instructure.design/llms.txtIt lists every component and guide with a one-line description and the exact markdown URL for each, grouped into User Guides, Components, Util Components, Contexts, and AI Components. Use it to find the relevant component/guide and its URL.Fetch the specific page(s) using the URLs from the index. A component page contains examples, size/color/variant options, theme customization, guidelines (Do's/Don'ts/Accessibility), a props table, and install/import instructions. Fetch several in parallel when a question spans multiple components or a component + a guide.
Notes
- The online docs track the latest published release. A consuming repo may be pinned to an older major where props/APIs differ — check its installed
@instructure/ui*version. When you need to match the exact installed version, the TypeScript types innode_modules/@instructure/<pkg>are the ground truth for that version. - Components can be imported either from their individual package (
@instructure/ui-<name>) or from the metapackage (@instructure/ui). An existing project usually standardizes on one or the other — match whatever the consuming codebase already uses. For a greenfield project, recommend the@instructure/uimetapackage.