6f6bf31dd2
* Refactor project name from "Open Claude Design" to "Open Design" - Updated project name in package.json, package-lock.json, and README files. - Changed CLI commands and references from "ocd" to "od". - Adjusted file structure references in documentation and code to reflect new naming conventions. - Enhanced .gitignore to include new runtime data files. - Updated metadata in LICENSE file to match new project name. * Add contributing guidelines in English and Chinese - Introduced CONTRIBUTING.md and CONTRIBUTING.zh-CN.md to provide clear instructions for contributors. - Outlined contribution types, local setup instructions, and merging criteria for skills and design systems. - Enhanced README files to reference the new contributing guidelines.
76 lines
3.1 KiB
Markdown
76 lines
3.1 KiB
Markdown
# Design Systems
|
|
|
|
Each subfolder is a portable design system in [`DESIGN.md`](../docs/spec.md)
|
|
format. Pick one in the top-bar **Design system** dropdown and every skill
|
|
will read it as part of its system prompt.
|
|
|
|
## What's bundled
|
|
|
|
- **`default/`** — Neutral Modern. Hand-authored starter for the OD spec.
|
|
- **`warm-editorial/`** — Warm Editorial. Hand-authored serif starter.
|
|
- **69 product systems**, imported from
|
|
[`VoltAgent/awesome-design-md`](https://github.com/VoltAgent/awesome-design-md)
|
|
(the [`getdesign@latest`](https://www.npmjs.com/package/getdesign) npm
|
|
package, MIT-licensed). One folder per brand:
|
|
|
|
| Category | Systems |
|
|
|---|---|
|
|
| AI & LLM | claude · cohere · elevenlabs · minimax · mistral-ai · ollama · opencode-ai · replicate · runwayml · together-ai · voltagent · x-ai |
|
|
| Developer Tools | cursor · expo · lovable · raycast · superhuman · vercel · warp |
|
|
| Productivity & SaaS | cal · intercom · linear-app · mintlify · notion · resend · zapier |
|
|
| Backend & Data | clickhouse · composio · hashicorp · mongodb · posthog · sanity · sentry · supabase |
|
|
| Design & Creative | airtable · clay · figma · framer · miro · webflow |
|
|
| Fintech & Crypto | binance · coinbase · kraken · mastercard · revolut · stripe · wise |
|
|
| E-Commerce & Retail | airbnb · meta · nike · shopify · starbucks |
|
|
| Media & Consumer | apple · ibm · nvidia · pinterest · playstation · spacex · spotify · theverge · uber · vodafone · wired |
|
|
| Automotive | bmw · bugatti · ferrari · lamborghini · renault · tesla |
|
|
|
|
Folders use ASCII slugs — dotted brands are normalized (`linear.app` →
|
|
`linear-app`, `x.ai` → `x-ai`, etc.).
|
|
|
|
## File shape
|
|
|
|
The first H1 is the title shown in the picker. The line immediately after
|
|
the H1 is parsed for `> Category: <name>` and used to group the dropdown:
|
|
|
|
```markdown
|
|
# Design System Inspired by Cohere
|
|
|
|
> Category: AI & LLM
|
|
> Enterprise AI platform. Vibrant gradients, data-rich dashboard aesthetic.
|
|
|
|
## 1. Visual Theme & Atmosphere
|
|
...
|
|
```
|
|
|
|
Both the boilerplate prefix `Design System Inspired by ` and the
|
|
`> Category: ...` line are stripped from the dropdown label and the summary
|
|
preview at runtime — they're only metadata.
|
|
|
|
## Adding your own
|
|
|
|
Drop a new folder containing a `DESIGN.md` and it shows up on next refresh.
|
|
Add a `> Category: <Group>` line to slot it under an existing group, or use
|
|
any new label and it lands at the bottom of the dropdown.
|
|
|
|
## Refreshing the bundled set
|
|
|
|
The 69 product systems are pulled from the upstream npm package. To re-sync
|
|
to the latest hashes:
|
|
|
|
```bash
|
|
curl -sL $(npm view getdesign dist.tarball) -o /tmp/getdesign.tgz
|
|
tar -xzf /tmp/getdesign.tgz -C /tmp
|
|
node scripts/sync-design-systems.mjs # planned helper — see roadmap
|
|
```
|
|
|
|
For now, the original importer lives at the top of the
|
|
[`excessive-climb` branch](../) — re-run it against a fresh tarball.
|
|
|
|
## Attribution
|
|
|
|
The 69 product systems are sourced from
|
|
[`VoltAgent/awesome-design-md`](https://github.com/VoltAgent/awesome-design-md)
|
|
(MIT, © VoltAgent contributors). They are aesthetic *inspirations* — none
|
|
of them are official assets of the brands they reference.
|