Skills Plugins MCP Prompt Model 博客 我的中心
开发编程 #design #writing #api

antd

Use when the user's task involves Ant Design (antd) — writing antd components, debugging antd issues, querying antd APIs/props/tokens/demos, migrating between antd versions, or analyzing antd usage in a project. Triggers on antd-related code, imports from 'antd', or explicit antd questions.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=ant-design-ant-design-pro-claude-skills-antd-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name antd description Use when the user's task involves Ant Design (antd) — writing antd components, debugging antd issues, querying antd APIs/props/tokens/demos, migrating between antd versions, or analyzing antd usage in a project. Triggers on antd-related code, imports from 'antd', or explicit antd questions. allowed-tools ["Bash(antd *)","Bash(antd bug*)","Bash(antd bug-cli*)","Bash(npx antd *)","Bash(npx antd bug*)","Bash(npx antd bug-cli*)"] Ant Design CLI You have access to @ant-design/cli — a local CLI tool with bundled antd metadata for v3/v4/v5/v6. Use it to query component knowledge, analyze projects, and guide migrations. All data is offline, no network needed. Setup The CLI is installed as a dev dependency. Use npx antd to run it. Always use --format json for structured output you can parse programmatically. Scenarios 1. Writing antd component code Before writing any antd component code, look up its API first — don't rely on memory. # Check what props are available npx antd info Button --format json # Get a working demo as starting point npx antd demo Button basic --format json # Check semantic classNames/styles for custom styling npx antd semantic Button --format json # Check component-level design tokens for theming npx antd token Button --format json Workflow: antd info → understand props → antd demo → grab a working example → write code. 2. Looking up full documentation When you need comprehensive component docs (not just props): npx antd doc Table --format json # full markdown docs for Table npx antd doc Table --lang zh # Chinese docs 3. Debugging antd issues When code isn't working as expected or the user reports an antd bug: # Collect full environment snapshot (system, deps, browsers, build tools) npx antd env --format json # Check if the prop exists for the user's antd version npx antd info Select --version 5.12.0 --format json # Check if the prop is deprecated npx antd lint ./src/components/MyForm.tsx --format json # Diagnose project-level configuration issues npx antd doctor --format json Workflow: antd env → capture full environment → antd doctor → check configuration → antd info --version X → verify API against the user's exact version → antd lint → find deprecated or incorrect usage. 4. Migrating between versions When the user wants to upgrade antd (e.g., v3 → v4 or v4 → v5): # Get full migration checklist npx antd migrate 3 4 --format json # v3 → v4 npx antd migrate 4 5 --format json # v4 → v5 # Check migration for a specific component npx antd migrate 4 5 --component Select --format json # See what changed between two versions npx antd changelog 4.24.0 5.0.0 --format json # See changes for a specific component npx antd changelog 4.24.0 5.0.0 Select --format json Workflow: antd migrate → get full checklist → antd changelog <v1> <v2> → understand breaking changes → apply fixes → antd lint → verify no deprecated usage remains. 5. Analyzing project antd usage When the user wants to understand how antd is used in their project: # Scan component usage statistics npx antd usage ./src --format json # Filter to a specific component npx antd usage ./src --filter Form --format json # Lint for best practice violations npx antd lint ./src --format json # Check only specific rule categories npx antd lint ./src --only deprecated --format json npx antd lint ./src --only a11y --format json npx antd lint ./src --only performance --format json 6. Checking changelogs and version history When the user asks about what changed in a version: # Specific version changelog npx antd changelog 5.22.0 --format json # Version range (both ends inclusive) npx antd changelog 5.21.0..5.24.0 --format json 7. Exploring available components When the user is choosing which component to use: # List all components with categories npx antd list --format json # List components for a specific antd version npx antd list --version 5.0.0 --format json 8. Collecting environment info When you need to understand the project's antd setup, or prepare info for a bug report: # Full environment snapshot (text — paste into GitHub Issues) npx antd env # Structured JSON for programmatic use npx antd env --format json # Scan a specific project directory npx antd env ./my-project --format json 9. Reporting antd bugs When the user asks you to report an antd bug: # Step 0: Collect environment info for reference (optional) npx antd env --format json # Step 1: Preview for user review npx antd bug --title "DatePicker crashes when selecting date" \ --reproduction "https://codesandbox.io/s/xxx" \ --steps "1. Open DatePicker 2. Click a date" \ --expected "Date is selected" \ --actual "Component crashes with error" \ --format json # Step 2: Show to user, ask for confirmation # Step 3: Submit after user confirms npx antd bug --title "DatePicker crashes when selecting date" \ --reproduction "https://codesandbox.io/s/xxx" \ --steps "1. Open DatePicker 2. Click a date" \ --expected "Date is selected" \ --actual "Component crashes with error" \ --submit 10. Reporting CLI issues When the user asks to report a CLI bug: npx antd bug-cli --title "antd info Button returns wrong props" \ --description "When querying Button props for version 5.12.0, the output includes props that don't exist" \ --steps "1. Run: npx antd info Button --version 5.12.0 --format json" \ --expected "Props matching antd 5.12.0 Button API" \ --actual "Props include 'classNames' which was added in 5.16.0" \ --format json Show the report to the user and confirm before submitting with --submit . Opt-out: If the environment variable ANTD_NO_AUTO_REPORT=1 is set, skip all bug-reporting suggestions entirely. 11. Using as MCP server If working in an IDE that supports MCP (Claude Desktop, Cursor, etc.), the CLI can also run as an MCP server: { "mcpServers" : { "antd" : { "command" : "npx" , "args" : [ "antd" , "mcp" ] } } } This provides 7 tools ( antd_list , antd_info , antd_doc , antd_demo , antd_token , antd_semantic , antd_changelog ) and 2 prompts ( antd-expert , antd-page-generator ) via MCP protocol. Global Flags Flag Purpose --format json Structured output — always use this --version <v> Target a specific antd version (e.g. 5.20.0 ) --lang zh Chinese output (default: en ) --detail Include extra fields (description, since, deprecated, FAQ) Key Rules Always query before writing — Don't guess antd APIs from memory. Run antd info first. Match the user's version — This project uses antd v6. The CLI auto-detects from node_modules if no flag is given. Use --format json — Every command supports it. Parse the JSON output rather than regex-matching text output. Check before suggesting migration — Run antd changelog <v1> <v2> and antd migrate before advising on version upgrades. Lint after changes — After writing or modifying antd code, run antd lint on the changed files to catch deprecated or problematic usage. Report antd bugs — When the user asks to report an antd bug, use antd bug . Always preview first, get user confirmation, then submit. Report CLI issues — When the user asks about a CLI problem, use antd bug-cli to help them file a report. Always preview first, get user confirmation, then submit.
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。