Claude Code Skills
Invoke Atomic CSS related Skills in Claude Code via slash commands, and AI generates HTML using accurate classes. Three Skills are available.
What is a Skill?
A Skill in Claude Code is an extension invoked via slash commands (/skill-name). Once installed, Skills enable Claude to fully understand domain-specific rules and workflows to produce accurate results.
Skill List
/atomic — Atomic CSS Component Generator
Describe a UI component in text, and it generates HTML using only Atomic CSS classes. No inline styles, no separate CSS files — class names are the styles.
/atomic Create a responsive card grid with hover effectsOutput:
<div class="dg gtcrfit-minmax28rem-1fr gap2rem p2rem">
<div class="bgFFFFFF br8px p2rem bs0px4px12px0px0-0-0-10 hover-bs0px8px24px0px0-0-0-20 tall200msease">
<h3 class="fs2rem fw700 mb8px c333333">Card Title</h3>
<p class="fs1-4rem lh1-6 c666666">Card content</p>
</div>
</div>Korean version: /atomic-ko
/figma — Figma Design → HTML Conversion
Paste a Figma design URL, and it reads the design via Figma MCP and generates HTML with Atomic CSS classes.
/figma https://www.figma.com/design/xxxxx?node-id=123-456Requirement: Figma MCP must be connected. Use Claude Desktop built-in or manual configuration.
/markup — HTML Markup Convention + Accessibility
Applies consistent markup conventions when generating or reviewing HTML. Automatically validates naming, accessibility, and structure rules.
/markup Create a login form with email and password fieldsOutput:
<form class="dg gap2rem maxw40rem mxa">
<fieldset class="dg gap16px">
<legend>Login</legend>
<div class="dg gap8px">
<label for="inputEmail"><span>Email</span></label>
<input type="email" id="inputEmail" />
</div>
<div class="dg gap8px">
<label for="inputPassword"><span>Password</span></label>
<input type="password" id="inputPassword" />
</div>
<button class="btn btn-blue">
<span>Sign In</span>
</button>
</fieldset>
</form>Korean version: /markup-ko
Installation
Option 1: Plugin Marketplace
Install from the Claude Code Plugin Marketplace.
# /atomic Skill
/plugin marketplace add Yoodaekyung/atomic-css-skill
/plugin install atomic@Yoodaekyung-atomic-css-skill
# /figma Skill
/plugin marketplace add Yoodaekyung/figma-skill
/plugin install figma@Yoodaekyung-figma-skill
# /markup Skill
/plugin marketplace add Yoodaekyung/markup-skill
/plugin install markup-convention@Yoodaekyung-markup-skillOption 2: Git Clone
Clone directly from GitHub.
# /atomic Skill
git clone https://github.com/Yoodaekyung/atomic-css-skill.git
# /figma Skill
git clone https://github.com/Yoodaekyung/figma-skill.git
# /markup Skill
git clone https://github.com/Yoodaekyung/markup-skill.gitOption 3: Copy Directly
Copy each Skill's skills/ directory to your project's .claude/skills/ path.
MCP Server Integration (Recommended)
Using Skills with MCP servers together yields the best results. Skills provide rules and structure, while MCP servers handle real-time validation.
{
"mcpServers": {
"atomic-css": {
"type": "sse",
"url": "https://mcp.atomiccss.dev/sse"
},
"convention-lint": {
"type": "sse",
"url": "https://mcp.atomiccss.dev/convention/sse"
}
}
}Note: See the MCP documentation for server setup.
Recommended Workflow
Combine the 3 Skills to create a complete workflow from design to code.