Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Design Systems

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.json owns stable discovery metadata, provenance, and declared package paths.
  • DESIGN.md is the canonical design prose for agents.
  • tokens.css is 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.

Manifest and catalog behavior

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.id must match and use normalized ASCII.
  • files.design is DESIGN.md; files.tokens is tokens.css.
  • name, category, and description are the primary packaged-catalog copy.
  • source records 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.

Rich package files

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.json is derived from components.html and tokens.css.
  • design-tokens.json is derived from the token-contract report and must agree with tokens.css.
  • tailwind-v4.css is derived from tokens.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.

Structured runtime contract

A package may opt into machine-readable component selection by declaring a complete runtime block in manifest.json:

{
  "runtime": {
    "components": "manifests/components.json",
    "intents": "manifests/intent-map.json",
    "lint": "rules/lint.json",
    "fallback": "rules/fallback.json"
  }
}

The declared files form one graph:

manifests/components.json       component id → component definition path
manifests/intent-map.json       business intent → component/variant/properties/states
components/<id>/component.json  reusable implementation and allowed choices
rules/lint.json                 generation checks
rules/fallback.json             no-match and multiple-match behavior

The daemon validates the graph and pushes only a compact canonical-intent index into the prompt. A filesystem agent resolves the selected intent on demand with:

"$OD_NODE_BIN" "$OD_BIN" tools design-systems resolve \
  --intent account.settings.save

The result contains the reusable implementation, selectors, variant, properties, required states, and the package lint policy. Missing or ambiguous matches execute rules/fallback.json; the agent must honor confirmation gates and allowInventComponent instead of creating a visually similar near-copy. When runtime is declared, this resolver is the only component-selection authority: components.manifest.json and components.html remain package evidence and authoring checks, but are not injected as a second component inventory. If runtime is absent, the package keeps the existing prompt-based component manifest / fixture path.

After writing the artifact, the agent closes the loop with:

"$OD_NODE_BIN" "$OD_BIN" tools design-systems validate \
  --intent account.settings.save \
  --artifact account-settings.html \
  --artifact styles.css

The validator returns passed, failed, or confirmation-required. It checks the generated files against the selected component, variant, required states, tokens, and raw-color policy; failed checks include remediation and must be re-run after correction. hud, webflow, and uber are the first bundled packages using this complete runtime path and cover the three-task DS 3.0 regression set. If runtime is present but invalid, it is reported as invalid rather than silently treated as a legacy package. The production schema versions and shared types live in packages/contracts/src/design-systems/runtime-schema.ts.

Writing a package

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:

  1. Create the three required files and keep the folder slug equal to manifest.id.
  2. Record useful catalog metadata and source provenance in manifest.json.
  3. Write at least seven substantive H2 sections in DESIGN.md.
  4. Bind the shared semantic-token contract in tokens.css.
  5. Add rich package files when the system needs components, previews, assets, fonts, or source evidence.
  6. Run pnpm guard and pnpm typecheck.

The complete authoring guide and review checklist are in docs/design-systems.md.

Importing and refreshing

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.

Attribution

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:

Brand-referencing packages are aesthetic inspirations, not official assets of the brands they reference.