ccohort.work
claude code plugin · v1.0.0

/create-design-system

Paste any public URL. Get back a production-ready DESIGN.md folder — 9-section design system, light + dark interactive previews, real hex codes and fonts. One command. No AI slop.

DESIGN.md

9-section spec: colors, typography, components, layout, depth, voice, responsive, agent prompt.

Light + Dark preview

Two interactive HTML files with real tokens, shadows, and component samples you can click around.

No slop, no stubs

Every hex, font, and pixel value is backed by real site research. Fresh palette every run.

60-second install

Install the plugin

Three ways to pull the plugin from https://cohort.indianic.dev into your Claude Code CLI. Pick one.

1

One-line installrecommended

User-level install (~/.claude/plugins). Available in every project. Easiest path.

curl -L https://cohort.indianic.dev/api/plugin/download | tar -xz -C ~/.claude/plugins/
2

Project-level install

Installs into .claude/plugins in the current repo. Isolated to this project.

mkdir -p .claude/plugins && curl -L https://cohort.indianic.dev/api/plugin/download | tar -xz -C .claude/plugins/
3

Manual two-step

Download first, extract second — useful if you're behind a proxy or want to inspect the tarball.

curl -L -o create-design-system.tar.gz https://cohort.indianic.dev/api/plugin/download
tar -xzf create-design-system.tar.gz -C ~/.claude/plugins/
3

Reload Claude Code

Inside an active session:
/reload-plugins
Or just start a new Claude Code session — plugins are picked up on launch.
4

Use it

Point it at any public URL:
/create-design-system https://stripe.com
Or run it interactively:
/create-design-system

Marketplace endpoints

Machine-readable URLs for plugin registries, CI scripts, or automation. CORS is wide open.

Uninstall

Plugins are just folders — delete and reload.

rm -rf ~/.claude/plugins/create-design-system && /reload-plugins