소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 11일 16:18
- 감지된 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 css-quality명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | css-quality |
| description | CSS quality — specificity, magic numbers, responsive. Agnostic. |
Before writing any CSS, identify what the project already uses:
| Signal | Strategy |
|---|---|
tailwind.config.*, @apply, utility classes in markup | Utility-first (Tailwind or equivalent) |
*.module.css imports, styles.module.* | CSS Modules |
styled-components, @emotion/styled, css template literals | CSS-in-JS |
.scss / .sass files, @mixin, @include | Sass/SCSS |
Global styles.css / main.css, BEM class names | Global CSS + BEM |
Never mix strategies in the same codebase unless the project explicitly documents it.
Every numeric value that carries design meaning must be a token or variable.
/* bad */
margin-top: 13px;
color: #3b82f6;
/* good */
margin-top: var(--spacing-3);
color: var(--color-primary);
Define tokens in a single source of truth (:root variables, a theme file, or Tailwind config). Duplication of raw values across files is a DRY violation.
!important!important signals a specificity conflict that should be solved at the source. The only accepted exceptions: third-party override utilities and print stylesheets.
Cap nesting at 3 levels. Deeper nesting creates high specificity that is hard to override and signals the component should be split.
/* bad — depth 4 */
.card .header .title span { }
/* good */
.card-title { }
Use min-width breakpoints unless the project documents a desktop-first baseline. Mobile-first produces less CSS and is easier to override progressively.
/* good */
.container { width: 100%; }
@media (min-width: 768px) { .container { width: 720px; } }
Any animation or transition must be wrapped in a prefers-reduced-motion guard.
@media (prefers-reduced-motion: no-preference) {
.card { transition: transform 200ms ease; }
}
will-change sparinglyDeclare will-change only immediately before an animation triggers, not as a permanent style. Overuse forces GPU layers and increases memory consumption.
@layer components class — not inline repetition across 10 filesstyles.module.css across componentscomposes: foo from '../other.module.css') — creates implicit couplingconst or a separate styles fileuseMemo or extract static styles outside the componentblock__element--modifier.card .button is coupling, not composition| Anti-Pattern | Problem |
|---|---|
color: red / margin: 5px hardcoded | Breaks design token consistency |
Overriding with !important | Masks a specificity bug |
| Mixing responsive strategies (some mobile-first, some desktop-first) | Unpredictable cascade |
Animating width, height, top, left | Triggers layout — animate transform and opacity instead |
| CSS reset inside a component | Bleeds into global scope; use scoped styles |
Selector like div > ul > li > a | Fragile — breaks with any markup change |