vibe-design-plugins
Cross-provider design skills and commands for LLM-powered development tools.
What's Included
Commands
- normalize - Normalize your design to match your design system and ensure consistency
Skills
- frontend-design - Create distinctive, production-grade frontend interfaces with exceptional design quality
Installation
Choose your provider and copy the files to the appropriate location:
Cursor
Copy commands and rules to your project's .cursor directory:
cp -r dist/cursor/commands/* .cursor/commands/
cp -r dist/cursor/rules/* .cursor/rules/
Note: Cursor doesn't support command arguments or frontmatter, so commands work but with simplified functionality.
Reference:
Claude Code
Copy to your global Claude directory:
cp -r dist/claude-code/commands/* ~/.claude/commands/
cp -r dist/claude-code/skills/* ~/.claude/skills/
Or for project-specific use, copy to .claude/ in your project root.
Reference:
Gemini CLI
Copy commands and skill files to your project:
# Commands (global for all projects)
cp -r dist/gemini/commands/* ~/.gemini/commands/
# Skills (project-specific - place at your project root)
cp dist/gemini/GEMINI*.md ~/your-project-root/
Note:
- Commands use
.tomlformat with{{args}}placeholders GEMINI.mduses@file.mdimport syntax to load modular skill files- Skills should be placed at your project root for project-specific context
- For global skills, place
GEMINI.mdin~/.gemini/
Reference:
Codex CLI
Copy prompts and skill files:
cp -r dist/codex/prompts/* ~/.codex/prompts/
cp dist/codex/AGENTS*.md ~/your-project-root/
Note:
- Commands are invoked as
/prompts:<name>(e.g.,/prompts:normalize) - The
AGENTS.mdfile guides Codex to read modular skill files as needed - Place
AGENTS.mdat your repository root
Reference:
Usage
Commands
Cursor, Claude Code:
/normalize
Gemini:
/normalize <optional-feature-name>
Codex:
/prompts:normalize
/prompts:normalize FEATURE="dashboard"
Skills
Skills are automatically available once installed. Refer to your provider's documentation for how skills are activated:
- Cursor: Rules apply automatically to the context
- Claude Code: Skills activated via
/skillsor@skill-name - Gemini: Gemini reads
GEMINI.mdand automatically imports referenced skill files using@file.mdsyntax - Codex: Codex reads
AGENTS.mdand automatically loads referenced skill files when needed
Provider Comparison
| Feature | Cursor | Claude Code | Gemini CLI | Codex CLI |
|---|---|---|---|---|
| Command Args | ❌ | ✅ | ✅ | ✅ |
| Frontmatter | ❌ | ✅ | ✅ (TOML) | ✅ |
| Modular Skills | ❌ | ❌ | ✅ | ✅ |
Contributing
Want to add more design skills or commands? See DEVELOP.md for contributor guidelines.
License
See LICENSE file.