Mandu Styling

Mandu Styling is a skill for Claude Code, Codex from konamgil/mandu. It costs 18 tokens per session (1,326 once invoked), scanned A, original, MPL-2.0.

A styling guide for Mandu applications using Tailwind CSS version 4 and Mandu's island components. Tailwind CSS is a system for styling interfaces with reusable utility classes.

In plain words
What is it for?
Styling pages and components, changing CSS classes, updating approved theme values, and checking design and lint rules.
Why use it?
It helps keep styling changes within the intended component or design system and checks that the resulting CSS is valid.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Styling pages and components, changing CSS classes, updating approved theme values, and checking design and lint rules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/konamgil/mandu/mandu-styling
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add konamgil/mandu --skill mandu-styling
Clone the repo
git clone --depth 1 https://github.com/konamgil/mandu

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Mandu Styling

README.md
[![agentmods](https://agentmods.dev/badge/skills/konamgil/mandu/mandu-styling.svg)](https://agentmods.dev/skills/konamgil/mandu/mandu-styling)
Your own site
<a href="https://agentmods.dev/skills/konamgil/mandu/mandu-styling"><img src="https://agentmods.dev/badge/skills/konamgil/mandu/mandu-styling.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,326 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00018 $0.01326
Opus 5 $0.00009 $0.00663
Sonnet 5 $0.00004 $0.00265
Haiku 4.5 $0.00002 $0.00133

Measured 8d ago against content hash f15719a7efc5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

Mandu Styling scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

docs/archive/skills/mcp-v0/mandu-styling/SKILL.md · 197 lines

How it starts

The opening of the file, as written. The whole thing — 197 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Mandu Styling Skill

Mandu Island 아키텍처에 최적화된 Tailwind CSS v4 스타일링 가이드입니다.

Agent Workflow Contract

This skill is a Domain addendum. It must not replace mandu-agent-workflow. Use it only after mandu.agent.plan selects styling, design, UI, hydration, or component domains.

Canonical workflow step: plan -> apply -> verify.

Preferred MCP tools:

Step Tools
plan mandu.agent.plan, mandu.design.get
apply mandu.agent.apply, mandu.design.patch
verify mandu.agent.verify, mandu.design.check, mandu.lint
repair mandu.agent.repair

Allowed file edits:

  • CSS files named in the plan, especially app/globals.css
  • Component className changes scoped to the target UI
  • Theme tokens only after inspecting the project's design source

Verification command:

mandu agent verify --changed --json --write

Common failures:

  • Installing or changing styling stacks before checking the existing project style
  • Editing broad theme tokens for a local component issue
  • Skipping design/lint verification after Tailwind v4 syntax changes

Repair path:

mandu agent repair --from .mandu/agent-verify.json --json

핵심 원칙

  1. Zero-Runtime: 빌드 타임 CSS 생성 (SSR 호환)
  2. CSS-First: JavaScript 설정 대신 CSS에서 테마 정의
  3. Island 격리: 컴포넌트 간 스타일 충돌 방지
  4. Auto Integration: Mandu가 Tailwind v4 자동 감지 및 빌드

권장 스택

Primary:    Tailwind CSS v4 + clsx/tailwind-merge
Alternative: CSS Modules (최소 의존성)

Setup Examples

Use these examples only after mandu.agent.plan selects styling setup or migration.

1. 설치

bun add -d tailwindcss@^4.1 @tailwindcss/cli@^4.1
bun add clsx tailwind-merge

2. app/globals.css

@import "tailwindcss";

@theme {
  --color-primary: hsl(222.2 47.4% 11.2%);
  --color-primary-foreground: hsl(210 40% 98%);
  --color-background: hsl(0 0% 100%);
  --color-foreground: hsl(222.2 84% 4.9%);
  --radius-md: 0.5rem;
  --font-sans: 'Inter', system-ui, sans-serif;
}

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

Read the full file on GitHub · 197 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 197 lines · 18 tokens per session scan A f15719a7efc5

Subscribe to this mod's changes

Mandu Styling is a skill published in the GitHub repository konamgil/mandu (46 stars, last pushed 12d ago), licensed MPL-2.0. It adds 18 tokens to every session and 1,326 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

accessibility-auditor

Use when the user asks to audit accessibility, keyboard usability, semantics, contrast, focus behavior, or assistive-technology support in a UI. Inspect the actual rendered page and interaction states, report evidence-backed findings, and only implement fixes when explicitly requested.

lfyxhappy/lfcode · 57 tokens

apple-design

Apple's approach to interface design and fluid, physical motion, translated for the web. Use when building or reviewing gesture-driven UI, spring animations, drag/swipe/sheet interactions, momentum and interruptible transitions, translucent materials and depth, typography (optical sizing, tracking, leading)…

samuelpatro/.claude · 80 tokens

create-design-system

You are an expert design systems architect.

bdmorin/the-no-shop · 12 tokens

web-design-reviewer

This skill enables visual inspection of websites running locally or remotely to identify and fix design issues. Triggers on requests like "review website design", "check the UI", "fix the layout", "find design problems". Detects issues with responsive design, accessibility, visual consistency, and layout breakage…

Galaxy-Dawn/claude-scholar · 74 tokens

memstack-security-csp-headers

Use this skill when the user says 'CSP', 'Content-Security-Policy', 'security headers', 'HSTS', 'X-Frame-Options', 'clickjacking', 'unsafe-inline', 'unsafe-eval', or needs to audit, generate, or fix HTTP security headers for a web application. Do NOT use for API route audits or dependency scanning.

cwinvestments/memstack · 83 tokens

ui-web

Web UI - glassmorphism, Tailwind, dark mode, accessibility.

alinaqi/maggy · 17 tokens