Each subfolder is a portable design-system package. Selecting one from the Design System surface or a supported project-creation workflow composes its design context into the agent prompt.
The bundled catalog currently contains 151 packages. Every bundled package has the same minimum machine-readable shape:
design-systems/<slug>/
├── manifest.json
├── DESIGN.md
└── tokens.css
manifest.jsonowns stable discovery metadata, provenance, and declared package paths.DESIGN.mdis the canonical design prose for agents.tokens.cssis the canonical compiled semantic-token stylesheet.
The daemon still discovers legacy folders that contain only DESIGN.md, so
older and user-installed content remains compatible. That fallback is not the
authoring target for new repository content.
The v1 manifest uses fixed canonical file names:
{
"schemaVersion": "od-design-system-project/v1",
"id": "acme",
"name": "Acme",
"category": "Productivity & SaaS",
"description": "A concise English catalog summary.",
"source": {
"type": "bundled",
"origin": "Open Design curated bundled fixture"
},
"files": {
"design": "DESIGN.md",
"tokens": "tokens.css"
}
}- The folder slug and
manifest.idmust match and use normalized ASCII. files.designisDESIGN.md;files.tokensistokens.css.name,category, anddescriptionare the primary packaged-catalog copy.sourcerecords package provenance.- Every declared path must be safe, relative, and present.
At runtime, manifest metadata takes precedence over the legacy Markdown H1 and
> Category: conventions. Those Markdown conventions remain readable fallback
metadata for legacy packages. The exact precedence and authoring rules live in
docs/design-systems.md.
The catalog is scanned on every /api/design-systems request. After changing a
package, refresh the Design System surface; a daemon restart is not required.
Packages may declare the richer files below through their corresponding manifest fields:
USAGE.md agent-facing read order and usage guide
components.html standalone component fixture
components.manifest.json derived component/token index
design-tokens.json derived Design Tokens JSON
tailwind-v4.css derived Tailwind v4 mapping
assets/ optional static assets
fonts/ optional webfonts
preview/ indexed preview pages
source/ importer evidence, snippets, and token reports
These fields are active runtime inputs, not structural placeholders. Prompt
composition consumes USAGE.md, tokens.css, component information, import
mode, craft bindings, and a manifest-derived pull index when present. Package
and static-file APIs expose declared preview/source files without widening the
filesystem boundary.
Derived files are caches rather than competing sources of truth:
components.manifest.jsonis derived fromcomponents.htmlandtokens.css.design-tokens.jsonis derived from the token-contract report and must agree withtokens.css.tailwind-v4.cssis derived fromtokens.css.
The manifest and package-quality guards validate the declared paths, rich
profile, derived-file parity, token contract, component fixture, source
evidence, and preview coverage. Read
_schema/AGENTS.md before editing those contracts.
DESIGN.md does not use a fixed nine-section template. The package-quality
guard requires at least seven substantive H2 headings for migrated packages,
without prescribing their names, order, or numbering. Use headings that fit the
actual system and keep their decisions synchronized with tokens.css.
For new repository content:
- Create the three required files and keep the folder slug equal to
manifest.id. - Record useful catalog metadata and source provenance in
manifest.json. - Write at least seven substantive H2 sections in
DESIGN.md. - Bind the shared semantic-token contract in
tokens.css. - Add rich package files when the system needs components, previews, assets, fonts, or source evidence.
- Run
pnpm guardandpnpm typecheck.
The complete authoring guide and review checklist are in
docs/design-systems.md.
The product exposes local-folder, GitHub, and shadcn import flows in both the UI
and the od design-systems import-* CLI. Those importers write the package
contract rather than a standalone DESIGN.md.
scripts/sync-design-systems.ts remains
the repository-owned bulk synchronizer for upstream-derived catalog content.
Do not copy the retired branch-only importer or manual tarball recipe from old
plans; use the checked-in script and current import surfaces.
Package-level manifest.source, evidence files, and local license files are the
source of truth for provenance. Major upstream sources represented in the
catalog include:
VoltAgent/awesome-design-md(MIT) for upstream-derived product systems.bergside/awesome-design-skillsfor normalized design-skill systems.tw93/kami(MIT) for thekamipackage.Tom-Opencart/tom-modern-html-style-rule(MIT) for thetom-modernpackage.
Brand-referencing packages are aesthetic inspirations, not official assets of the brands they reference.