The design skill for Claude Code, Cursor and any coding agent. Stop shipping AI-slop UI: turn it into shippable, tasteful frontend. Install: npx skills add superdesigndev/superdesign-skill. Powered by superdesign.dev
# Add to your Claude Code skills
git clone https://github.com/superdesigndev/superdesign-skillGuides for using ai agents skills like superdesign-skill.
Last scanned: 7/7/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-07-07T07:37:10.609Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}superdesign-skill is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by superdesigndev. The design skill for Claude Code, Cursor and any coding agent. Stop shipping AI-slop UI: turn it into shippable, tasteful frontend. Install: npx skills add superdesigndev/superdesign-skill. Powered by superdesign.dev. It has 436 GitHub stars.
Yes. superdesign-skill passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/superdesigndev/superdesign-skill" and add it to your Claude Code skills directory (see the Installation section above).
superdesign-skill is primarily written in JavaScript. It is open-source under superdesigndev on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh superdesign-skill against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Stop shipping AI-slop UI. Coding agents write great code and mediocre interfaces: generic layouts, default shadcn everything, no taste. Superdesign is the skill that gives your agent design judgment, so the UI it ships actually looks considered.
Install it once and your agent (Claude Code, Cursor, Codex, and 70+ others) can find real design direction, set up a design system, and generate + iterate high-quality UI drafts on an infinite canvas, all without leaving your terminal.
Powered by superdesign.dev, the AI product design agent.
▶ Watch the skill in action.
Superdesign is an AI product design agent. It gives coding agents (Claude Code, Cursor, Codex, and 70+ others) real design judgment, so the UI they ship looks considered instead of generic.
Not the legacy IDE extension. The archived open-source
superdesigndev/superdesignVS Code extension is an older, separate project. This skill and superdesign.dev are the current, maintained product.
Any coding agent — installs the skill for any of the 70+ supported coding agents:
npx skills add superdesigndev/superdesign-skill
Claude Code — install it as a plugin instead, so it stays namespaced and updates with /plugin update:
/plugin marketplace add superdesigndev/superdesign-skill
/plugin install superdesign@superdesign
The skill is then invoked as /superdesign:superdesign. (Do not also run npx skills add in Claude Code — that installs a second, unnamespaced copy of the same skill.)
Either way, install the CLI it drives:
npm install -g @superdesign/cli@latest
superdesign login
Just talk to your agent:
/superdesign help me redesign this settings page so it doesn't look like default AI slop
/superdesign set up a design system from my current codebase
/superdesign improve the design of my dashboard
The skill handles the rest: it reads your code for context, gathers real style references, and produces design drafts you can branch and refine.
Use these to discover style direction, references, and brand context. Browse the full prompt library in the web app, or query it from the CLI:
Search prompt library (style/components/pages)
superdesign search-prompts --query "<keyword>"
superdesign search-prompts --tags "style"
superdesign search-prompts --tags "style" --query "<style keyword>"
Get prompt details — read the compact index first, then fetch the full body only for the slug(s) you pick
superdesign get-prompts --slugs "<slug1,slug2,...>" # index
superdesign get-prompts --slugs "<slug>" --full # full body of the chosen slug(s)
Extract a site's design DNA from a URL (style guide, tokens, content, brand, clone)
superdesign extract-website --url https://example.com --design-md
Use design agent to generate high quality design drafts:
--template).superdesign/replica_html_template/<name>.html (html should only contain & reflect how UI look now, the actual design should be handled by superdesign agent)
5.2 Create project with this replica html + design system guide
5.3 Start desigining by iterating & branching design draft based on designDraft ID returned from project.superdesign/design-system.md.superdesign/design-system.md is missing, run Design System Setup first.help[] next-step hints). Add --json only when you genuinely need the full machine-readable payload, and --full only to expand truncated fields.The purpose of replica html template is creating a lightweight version of existing UI so design agent can iterate on top of it (Since superdesign doesn't have access to your codebase directly, this is important context)
Overall process for designing features on top of existing app:
.superdesign/replica_html_template/<name>.html (Only replicate how UI look now, do NOT design)replica_html_template = BEFORE state (what exists now). It provides context for Superdesign agent. Actual design will be done via superdesign agent, by passing the prompt
The replica_html_template must contain ONLY UI that currently exists in the codebase.
<!-- NEW FEATURE - DESIGN THIS -->.superdesign/replica_html_template/<name>.htmlNaming convention
Name replica_html_template for reusability: Use the page route (e.g., home.html, settings-profile.html, dashboard.html)
This makes it easy to identify if a page_template already exists.
Before creating a replica_html_template:
.superdesign/replica_html_template/ already contains a matching fileBAD approach:
<!-- replica_html_template includes a sketched Book Demo section -->
<section class="book-demo">
<!-- DESIGN THIS - Add CTA here -->
<h3>Book a Demo</h3>
<button>Schedule</button>
</section>
GOOD approach:
<!-- replica_html_template is pure replica of existing home page (hero + projects) -->
Then in the iterate command: 1/ create project passing this replica html 2/ create design draft based on design draft id
"Do you want to create a new design system or extract from the current codebase?"
.superdesign/design-system.mdsuperdesign search-prompts --tags "style"superdesign get-prompts --slugs ... (index first; add --full for the chosen slug's full body)superdesign extract-website --url ... --design-md (style guide → design.md; add --brand for assets).superdesign/design-system.md (product context + UX flows + visual design, adapted to references)