You are writing documentation for ClassroomIO — an LMS platform that lets organizations create and run training academies. Documentation lives in apps/docs/content/docs/ and is rendered by Blume.
Research before writing
Every page must reflect how the feature actually works in the product. Before writing, read the relevant source:
- UI components / pages:
apps/dashboard/src/lib/features/{domain}/pages/ - Settings pages:
apps/dashboard/src/lib/features/settings/pages/ - API routes:
apps/api/src/routes/{domain}/andapps/api/src/services/{domain}/ - DB schema:
packages/db/src/schema.ts— column names and types reveal the data model - Translations:
apps/dashboard/src/lib/utils/translations/en.json— use the exact UI label text from here, not guesses
Never describe behavior you haven't verified in the source code or UI.
Terminology (use these terms everywhere)
| Term | Meaning |
|---|---|
| academy | The public-facing org site (<siteName>.myclassroomio.com or custom domain) |
| LMS | The authenticated student learning area (Home, My Learning, Explore, Programs) |
| organization | The admin workspace holding courses, people, settings, branding |
| student | A user enrolled in courses — never "learner" |
| Open Academy | The button/link that opens the public academy |
| Academy subdomain | The org's site name / slug field in settings |
| academy landing page | The public homepage for the org (not "org landing page") |
| course landing page | The per-course public page |
Settings navigation paths
Settings is opened from the account menu in the sidebar footer, not from the org nav. Use these exact paths:
Settings → Profile— personal profile settingsSettings → Notifications— personal email notification preferencesSettings → Branding— org name, logo, and brand colorSettings → Domains— academy subdomain, custom domain, and faviconSettings → Teams— invite and manage admins and tutorsSettings → Customize LMS— LMS feature togglesSettings → Billing— plan and billingSettings → AI Tutor— per-org AI tutor toggleSettings → AI Credits— token usageSettings → Authentication— signup rules, SSO, token auth; tabs: General, SSO, Token AuthSettings → Authentication → General— signup toggle, Internal Enrollment OnlySettings → Authentication → SSO— enterprise SSO connectionsSettings → Authentication → Token Auth— Token Auth signing secretDistribute → Landing Page— academy landing page editor (org sidebar, not Settings)
Do not write Settings → Organization or Settings → Landing Page. Those paths are gone.
MDX format conventions
Pages are rendered by Blume. Its components are global — do not import anything.
Callouts are directives, not components. Types: note, info, tip, success, warning, danger.
:::warning[Paid plan required]
Certificate features require a paid plan.
:::
Numbered ### headings for sequential procedures. Do not use a <Steps>/<Step> component: the
CMS reads the raw markdown, where those tags render as literal text. The heading also generates the
linkable anchor.
### 1. Enable downloadable certificates
Turn on **Allow students download certificate**.
### 2. Set the completion threshold
Choose the percentage a student must reach.
A short summary of a procedure the page then covers in full can be a plain numbered list instead.
Also available without imports: <Tabs>/<Tab>, <Card>, <Accordion>, <YouTube id="..." />,
<CodeGroup>, <Frame>. Code fences take a title: ```zsh title="Terminal". Mermaid fences render
as diagrams.
Links and images follow different rules — this trips people up:
- Links: root-relative, no
/docsprefix —[Enrollment](/course-enrollment). Blume adds the base at build time. - Images: must include the
/docsprefix —. Blume does not rebase images, so an unprefixed path 404s. Files live inapps/docs/public/.
Run pnpm --filter @cio/docs validate to check links and anchors.
Frontmatter (required on every page):
---
title: Page Title
description: One sentence — shown in search results and link previews.
---
New pages must also be added to the sidebar in apps/docs/blume.config.ts (navigation.sidebar) —
a page that isn't listed there will not appear in the nav.
Writing style
- Address the reader as "you" (the admin/instructor).
- Short, direct sentences. No filler. No "In this guide, we will…" preambles.
- Use bold for UI element names exactly as they appear in the product (match translations).
- Use
codefor paths, values, slugs, and field names. - Tables for comparisons and reference lists.
- Numbered
###headings for sequential procedures (never a<Steps>component). - End every substantive page with a
## Related guidessection linking to connected pages. - Remove the "Work in Progress" callout when replacing it with real content.
Page structure patterns
Reference page (what a feature is):
- One-paragraph description of the feature
- Key concepts or table
- How it fits with related features
- Related guides
How-to guide (how to do something):
- One-sentence context (what and why)
- Prerequisites if any
- The procedure, as numbered
###headings - Common scenarios or edge cases (Callout blocks)
- Related guides
Overview/index page (org, course, programs):
- Short description
- Table: area | where | guide
- Related guides
Things to avoid
- Don't describe UI that doesn't exist yet
- Don't say "workspace" — use "organization"
- Don't use "learner" — use "student"
- Don't say "org site" — say "your academy"
- Don't hardcode customer site names — use
<siteName>.myclassroomio.comas the placeholder - Don't add the "Work in Progress" callout to pages you've completed