소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 8월 3일 00:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill design-system-audit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | design-system-audit |
| description | Design system audit — visual patterns, consistency; Design/Consultive. |
Before creating or modifying any UI, understand the existing visual language of the project. This audit produces a snapshot of the current design state that guides all subsequent UI work.
Look for:
# Config files
tailwind.config.js / tailwind.config.ts
theme.js / tokens.js
design-tokens.json
_variables.scss / variables.css
styles/theme.*
# Component libraries in package.json
"@mui/material", "@chakra-ui/react", "antd", "shadcn",
"mantine", "headlessui", "radix-ui", "bootstrap",
"daisyui", "flowbite", "primevue", "vuetify"
# Design files referenced in README
Figma links, Zeplin links, Storybook URL
# Existing component directory
src/components/ui/
src/components/base/
src/design-system/
Read 10–15 components/pages and extract the actual patterns in use:
Primary: [color value] usage: CTAs, links
Secondary: [color value] usage: secondary actions
Neutral: [scale] usage: text, borders, backgrounds
Semantic: success/warning/error/info [values]
Font family: [name]
Scale: xs / sm / base / lg / xl / 2xl / ...
Weight usage: regular for body, semibold for headings, bold for CTAs
Line height: [value]
Base unit: [4px / 8px / etc.]
Scale: [values used]
Pattern: [consistent use of spacing or chaotic?]
Buttons: [variants in use — primary, secondary, ghost, danger]
Inputs: [types — text, select, checkbox, radio]
Cards: [structure — has shadow? border? padding?]
Navigation: [top nav, sidebar, breadcrumbs]
Modals / Drawers: [exists? consistent behavior?]
Tables: [used? responsive?]
Feedback: [toast/snackbar, alerts, empty states, loading states]
Breakpoints: [values if defined]
Approach: [mobile-first or desktop-first]
Observed: [consistent or inconsistent across pages?]
Document explicitly:
CONSISTENT: [list of patterns used uniformly]
INCONSISTENT: [list of patterns with multiple competing implementations]
MISSING: [patterns needed but not present — e.g., empty states, error states]
PROBLEMATIC: [accessibility issues, low contrast, missing focus states]
This document is capped at 80 lines — see skills/shared/docs-sync/SKILL.md § docs/design/design-system.md for the enforced schema. Condense to that schema (UI Library / Color Tokens / Typography Scale / Component Inventory / Spacing Scale); do not emit every sub-section below verbatim on a mature project.
When in Design Mode (pre-build), generate docs/design/design-system.md:
# Design System — [Project Name]
## Status
[From scratch / Extending [library] / Audited existing]
## Color Tokens
| Token | Value | Usage |
|-------|-------|-------|
| --color-primary | #... | CTAs, links |
| --color-text | #... | Body text |
## Typography
| Style | Size | Weight | Usage |
|-------|------|--------|-------|
| Heading 1 | 2rem | 700 | Page titles |
## Spacing
Base: 4px. Scale: 4, 8, 12, 16, 24, 32, 48, 64px
## Components
[component list with variants]
## Patterns to Follow
[what to do]
## Patterns to Avoid
[what not to do — deviations, deprecated patterns]
When working alongside the frontend-developer, validate new UI against:
Suggest improvements when any of these are violated — but always check project-context first for existing guidelines.
When building a design system from scratch, produce docs/design/design-system.md — same 80-line schema as Step 4 above. Use the detail below to derive the values, but write only the condensed tables into the doc:
Primary: [value] — CTAs, interactive elements, brand color
Secondary: [value] — secondary actions, accents
Neutral scale: 50–950 — text, borders, backgrounds
Semantic: success (#...), warning (#...), error (#...), info (#...)
Ensure minimum contrast ratios: 4.5:1 for text, 3:1 for UI components (WCAG 2.1 AA).
Font: [name] — [why this font]
Scale: 12/14/16/18/20/24/30/36/48px
Weights: 400 (body), 500 (labels), 600 (subheadings), 700 (headings)
Line height: 1.5 (body), 1.2 (headings)
Base unit: 4px
Scale: 4, 8, 12, 16, 20, 24, 32, 40, 48, 64, 80, 96px
Document every reusable component with:
For each major flow: step-by-step description with screen transitions, decision points, and error paths.
anthropic-skills:frontend-design IntegrationThis skill is used alongside the frontend-design skill (installed automatically by scripts/install.sh), which provides component patterns, layout techniques, and visual design guidance. Load it at the start of every design session — it is required, not optional.