
Nby Awesome Design Md
- 1 installs
- Updated April 6, 2026
- smartchainark/nby-skills
Applies real-world design systems from 54 brands (Stripe, Vercel, Linear, Notion, etc.) to a project via a generated DESIGN.md of tokens, colors, and typography.
About
Sources design tokens, colors, typography, and layout rules from 54 real-world websites via VoltAgent/awesome-design-md and applies them to a project through a DESIGN.md. A developer uses it to reproduce a named brand's design system in their UI.
- 54 supported brands across AI, dev tools, fintech, and more
- Emits a DESIGN.md of tokens, colors, typography, and layout rules
Nby Awesome Design Md by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,609 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/smartchainark/nby-skills --skill nby-awesome-design-mdAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | April 6, 2026 |
| Repository | smartchainark/nby-skills ↗ |
What it does
Applies real-world design systems from 54 brands (Stripe, Vercel, Linear, Notion, etc.) to a project via a generated DESIGN.md of tokens, colors, and typography.
Files
Awesome Design MD
Apply pixel-accurate design systems from 54 real-world websites to any project. Powered by VoltAgent/awesome-design-md.
Language
Match the user's language.
Available Design Systems
AI & ML
claude cohere elevenlabs minimax mistral.ai ollama opencode.ai replicate runwayml together.ai voltagent x.ai
Developer Tools
cursor expo linear.app lovable mintlify posthog raycast resend sentry supabase superhuman vercel warp zapier
Infrastructure & Cloud
clickhouse composio hashicorp mongodb sanity stripe
Design & Productivity
airtable cal clay figma framer intercom miro notion pinterest webflow
Fintech
coinbase kraken revolut wise
Enterprise & Consumer
airbnb apple bmw ibm nvidia spacex spotify uber
Workflow
Step 1: Ensure Local Cache
Clone the repo once, reuse on subsequent runs.
REPO_DIR="$HOME/.nby-skills/nby-awesome-design-md/repo"
if [ -d "$REPO_DIR/.git" ]; then
echo "Cache exists, pulling latest..."
cd "$REPO_DIR" && git pull --ff-only 2>/dev/null || true
else
echo "First run, cloning..."
mkdir -p "$(dirname "$REPO_DIR")"
git clone --depth 1 https://github.com/VoltAgent/awesome-design-md.git "$REPO_DIR"
fiStep 2: Identify Target Design
If the user specifies a brand name, map it to the directory slug (e.g., "Linear" -> linear.app, "xAI" -> x.ai). If unclear, list available designs and ask.
To list all available designs:
ls "$HOME/.nby-skills/nby-awesome-design-md/repo/design-md/"Step 3: Apply DESIGN.md
Copy the chosen DESIGN.md to the project root:
BRAND="stripe" # replace with user's choice
cp "$HOME/.nby-skills/nby-awesome-design-md/repo/design-md/$BRAND/DESIGN.md" ./DESIGN.mdIf a DESIGN.md already exists in the project root, warn the user before overwriting.
Step 4: Confirm and Guide
After placing DESIGN.md:
1. Briefly summarize the design system's key characteristics (2-3 lines: primary colors, font, vibe) 2. Inform the user that DESIGN.md is now in the project root 3. Proceed with UI generation if the user has a specific request, referencing DESIGN.md for all design decisions
Rules
- Always read the applied DESIGN.md before generating any UI code — use it as the single source of truth for colors, typography, spacing, components, and layout.
- Never hardcode design values without checking DESIGN.md first.
- If the user wants to mix styles from multiple brands, copy one as the base and note which elements come from elsewhere.
- When generating components, reference the exact color hex values, font families, border-radius, and shadow values from DESIGN.md.