소스 정보
- 저장소
- 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 antd명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | antd |
| description | Ant Design — enterprise React UI with forms, tables; official MCP. |
antd in package.json@ant-design/icons dependencyConfigProvider at app root@ant-design/pro-components (ProTable, ProForm) in larger projectsdayjs for date components (antd v5 dropped moment.js)Ant Design has an official MCP server with real-time documentation, code examples, and API references.
Add to .claude/settings.json:
{
"mcpServers": {
"antd": {
"command": "npx",
"args": ["-y", "@ant-design/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), or runnpm install -g @ant-design/cliand useantd mcpas the command.
| Concept | Detail |
|---|---|
| ConfigProvider | Global config: locale, theme tokens, component defaults |
| Design tokens | Theme via theme.token and theme.components in ConfigProvider |
Form + useForm | Built-in validation, async rules, field state management |
| Table | Column definitions, dataSource, rowKey, pagination, sort, filter |
| ProComponents | @ant-design/pro-components — high-level ProTable, ProForm for CRUD |
| Tree-shaking | Import from individual paths or use with a bundler that supports it |
// ConfigProvider is mandatory — without it, some labels default to Chinese
import { ConfigProvider } from 'antd'
import enUS from 'antd/locale/en_US'
<ConfigProvider locale={enUS} theme={{ token: { colorPrimary: '#1677ff' } }}>
<App />
</ConfigProvider>
// Form — always use Form.useForm(); never manage field state manually
const [form] = Form.useForm()
<Form form={form} onFinish={handleSubmit} layout="vertical">
<Form.Item name="email" rules={[{ required: true, type: 'email' }]}>
<Input />
</Form.Item>
<Button htmlType="submit">Submit</Button>
</Form>
// Table — define columns separately for readability
const columns = [
{ title: 'Name', dataIndex: 'name', sorter: true },
{ title: , : , : [...] },
]
< columns={columns} dataSource={data} rowKey= />
Form.useForm() — never build form state manually alongside antd Form; the two fight each otherdayjs, not moment — antd v5 migrated; importing moment causes peer dep warnings and bundle bloatimport { Button } from 'antd' is fine with tree-shaking; avoid importing everything@ant-design/pro-components is present, prefer ProTable/ProForm over building custom table+form combosConfigProvider's theme prop, not CSS overrides; token changes cascade automatically