소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 7월 31일 17:19
- 감지된 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 mui명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | mui |
| description | Material UI — accessible React + Material Design; official MCP. |
@mui/material in package.json@emotion/react and @emotion/styled dependenciesThemeProvider, createTheme imports in codebaseCssBaseline component at app rootsx prop usage on componentsMUI has an official MCP server for component docs, prop references, examples, and theming.
Add to .claude/settings.json:
{
"mcpServers": {
"mui": {
"command": "npx",
"args": ["-y", "@mui/mcp@latest"]
}
}
}
If auto-configuration fails, ask the user to add the entry manually in their CLI's MCP settings (Claude Code → Settings → MCP Servers, the
mcpblock ofopencode.json, or Codex CLI's MCP config). The MCP provides real-time component API access without leaving the editor.
| Concept | Detail |
|---|---|
| ThemeProvider | Wraps the app; all components read theme tokens from it |
sx prop | Inline styling via theme tokens — preferred over style or CSS classes |
createTheme() | Extends/overrides Material Design defaults |
| Emotion | CSS-in-JS engine used internally — don't mix with other CSS-in-JS libs |
| Breakpoints | xs (0px), sm (600px), md (900px), lg (1200px), xl (1536px) |
useTheme() | Access theme tokens inside component logic |
// sx prop — use theme tokens, not raw values
<Box sx={{ p: 2, bgcolor: 'background.paper', borderRadius: 1 }}>
// Responsive values via sx
<Typography sx={{ fontSize: { xs: '1rem', md: '1.25rem' } }} />
// Theme extension — brand decisions belong here, not in CSS files
const theme = createTheme({
palette: { primary: { main: '#1976d2' } },
typography: { fontFamily: '"Inter", sans-serif' },
})
// Grid2 (v5+) — the deprecated Grid has been replaced
import Grid from '@mui/material/Grid2'
<Grid container spacing={2}>
<Grid size={6}><Item /></Grid>
</Grid>
sx over style — sx resolves theme tokens, breakpoints, and pseudo-selectors; style does notcreateTheme() — put all brand decisions there, not in global CSS overridesGrid2 (not the legacy Grid) in MUI v5+package.jsonSOC 직업 분류 기준