소스 정보
- 저장소
- 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 chakra-ui명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | chakra-ui |
| description | Chakra UI — accessible React components. v2/v3 APIs incompatible. |
@chakra-ui/react in package.jsonChakraProvider (v2) or Provider (v3) at app root@emotion/react and @emotion/styled dependenciesp, m, color, bg, fontSize as JSX props)extendTheme import (v2) or createSystem import (v3)No official MCP server is available for Chakra UI.
Reference the docs for the correct version:
- v2: v2.chakra-ui.com
- v3: chakra-ui.com
Configure a documentation search MCP if your CLI supports one.
# Check installed version before writing any code
cat package.json | grep "@chakra-ui/react"
| Signal | Version |
|---|---|
extendTheme, ChakraProvider | v2 |
createSystem, Provider | v3 |
v2 and v3 APIs are incompatible. Do not mix patterns. Confirm version before writing a single line.
| Concept | Detail |
|---|---|
| ChakraProvider / Provider | Wraps app — required; components without it render unstyled or throw |
| Style props | CSS properties as component props: p={4}, color="gray.700", bg="blue.50" |
| Color tokens | Semantic scale: blue.500, gray.100, red.600 — not raw hex |
| Responsive values | Array syntax (mobile-first): <Box fontSize={['sm', 'md', 'lg']}> |
useColorMode() | Toggle dark/light; useColorModeValue('light-val', 'dark-val') for tokens |
useTheme() | Access theme tokens in component logic |
// Provider at root
import { ChakraProvider } from '@chakra-ui/react'
const theme = extendTheme({
colors: { brand: { 500: '#3182CE' } },
fonts: { heading: 'Inter, sans-serif' },
})
<ChakraProvider theme={theme}><App /></ChakraProvider>
// Style props — always use tokens, not hex
<Box p={4} bg="gray.50" borderRadius="md" shadow="sm">
<Text color="gray.700" fontSize="sm" fontWeight="medium">Content</Text>
</Box>
// Responsive — array is mobile-first breakpoints
<Stack direction={['column', 'row']} spacing={4} />
// Dark mode
<Box bg={useColorModeValue('', '')}>
gray.500) not hex values — tokens adapt to dark/light mode automaticallyuseColorModeValue() for dark mode — never hardcode separate color values for each modeStack/HStack/VStack over manual Flex + flexDirection — clearer intent, less props@chakra-ui/react, not @chakra-ui/button; tree-shaking handles the rest