
Antd
- 3.8k installs
- 242 repo stars
- Updated August 4, 2026
- ant-design/ant-design-cli
antd is an agent skill that queries offline @ant-design/cli metadata for component APIs, demos, migrations, linting, and bug reports across Ant Design v4 through v6.
About
antd is an agent skill from ant-design/ant-design-cli that installs and drives @ant-design/cli, a local CLI with bundled offline metadata for Ant Design v4, v5, and v6 plus migration guides for v3 to v4, v4 to v5, and v5 to v6. Agents run antd info, demo, semantic, token, design.md, doc, migrate, lint, usage, doctor, env, changelog, list, and bug commands with --format json to look up props, working examples, semantic styles, tokens, full markdown docs, project scans, and structured bug reports without network calls. Workflows start with antd info before writing component code, use antd demo for starter examples, antd env and doctor for debugging version mismatches, and antd migrate plus changelog for upgrade checklists. The CLI auto-installs globally when missing and can run as an MCP server exposing knowledge tools and prompts for Cursor and Claude Desktop. Developers reach for antd when editing imports from antd, debugging prop deprecations, upgrading major releases, analyzing component usage, or filing antd bug reports with environment snapshots.
- Offline bundled metadata for Ant Design v4, v5, and v6 with migration guides across major versions.
- antd info, demo, semantic, and token commands supply props, examples, and design tokens as JSON.
- antd migrate, changelog, and lint support upgrade checklists and deprecated usage detection.
- antd usage, doctor, and env scan project setup and capture environment snapshots for debugging.
- Auto-installs @ant-design/cli and can expose the same knowledge via an MCP server.
Antd by the numbers
- 3,802 all-time installs (skills.sh)
- +222 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #133 of 2,245 Frontend Development skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
antd capabilities & compatibility
- Capabilities
- offline component api and demo lookup · version migration and changelog guidance · project usage scan and lint checks · environment capture and bug report submission
- Use cases
- frontend · api development
What antd says it does
All data is offline, no network needed.
npx skills add https://github.com/ant-design/ant-design-cli --skill antdAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3.8k |
|---|---|
| repo stars | ★ 242 |
| Security audit | 2 / 3 scanners passed |
| Last updated | August 4, 2026 |
| Repository | ant-design/ant-design-cli ↗ |
How do I look up accurate Ant Design props, demos, and migration steps for my project's antd version without guessing from memory?
Instantly access accurate Ant Design component APIs, demos, props, and migration data without leaving their coding environment.
Who is it for?
Frontend developers implementing, debugging, or upgrading Ant Design components with CLI-verified API and migration data.
Skip if: Skip when the UI stack is not Ant Design or when generic CSS layout help is sufficient without component-specific metadata.
When should I use this skill?
User writes antd components, debugs antd props, migrates antd versions, scans project usage, or files an antd bug report.
What you get
Structured JSON answers for component APIs, working demos, migration checklists, lint findings, or submitted bug reports.
- CLI JSON API lookups
- Migration checklists
- Project lint reports
By the numbers
- Bundles offline antd metadata for v4, v5, and v6
- Covers 3 migration paths: v3→v4, v4→v5, and v5→v6
- MCP mode exposes 8 tools and 2 prompts
Files
Ant Design CLI
You have access to @ant-design/cli — a local CLI tool with bundled antd metadata for v4/v5/v6 (plus migration guides for v3 → v4, v4 → v5, v5 → v6). Use it to query component knowledge, analyze projects, and guide migrations. All data is offline, no network needed.
Setup
Before first use, check if the CLI is installed. If not, install it automatically:
which antd || npm install -g @ant-design/cliAfter running any command, if the output contains an "Update available" notice, run antd upgrade to update before continuing.
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
antd info Button --format json
# Get a working demo as starting point
antd demo Button basic --format json
# Check semantic classNames/styles for custom styling
antd semantic Button --format json
# Check component-level design tokens for theming
antd token Button --format json
# Get the overall design language (design.md): colors, typography, spacing, radius + principles
antd design.md --format jsonWorkflow: 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):
antd doc Table --format json # full markdown docs for Table
antd doc Table --lang zh # Chinese docs3. 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)
antd env --format json
# Check if the prop exists for the user's antd version
antd info Select --version 5.12.0 --format json
# Check if the prop is deprecated
antd lint ./src/components/MyForm.tsx --format json
# Diagnose project-level configuration issues
antd doctor --format jsonWorkflow: 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
antd migrate 3 4 --format json # v3 → v4
antd migrate 4 5 --format json # v4 → v5
# Check migration for a specific component
antd migrate 4 5 --component Select --format json
# Generate agent-friendly auto-migration prompt (does not modify files)
antd migrate 4 5 --apply ./src --format json
# See what changed between two versions
antd changelog 4.24.0 5.0.0 --format json
# See changes for a specific component
antd changelog 4.24.0 5.0.0 Select --format jsonWorkflow: 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
antd usage ./src --format json
# Filter to a specific component
antd usage ./src --filter Form --format json
# Lint for best practice violations
antd lint ./src --format json
# Check only specific rule categories
antd lint ./src --only deprecated --format json
antd lint ./src --only a11y --format json
antd lint ./src --only performance --format json6. Checking changelogs and version history
When the user asks about what changed in a version:
# Specific version changelog
antd changelog 5.22.0 --format json
# Version range (both ends inclusive)
antd changelog 5.21.0..5.24.0 --format json7. Exploring available components
When the user is choosing which component to use:
# List all components with categories
antd list --format json
# List components for a specific antd version
antd list --version 5.0.0 --format json8. 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)
antd env
# Structured JSON for programmatic use
antd env --format json
# Scan a specific project directory
antd env ./my-project --format jsonCollects: OS, Node, package managers (npm/pnpm/yarn/bun/utoo), npm registry, browsers, core deps (antd/react/dayjs), all @ant-design/* and rc-* packages, and build tools (umi/vite/webpack/typescript/etc.).
9. Reporting antd bugs
When the user asks you to report an antd bug:
# Step 0: Collect environment info for reference (optional — antd bug already embeds basic env)
# Use the output to cross-check versions or attach extra details to the bug report
antd env --format json
# Step 1: Preview for user review
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
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" \
--submit10. Reporting CLI issues
When the user asks you to report a CLI bug, or explicitly requests help filing one:
# Preview the bug report for the user
antd bug-cli --title "antd info Button returns wrong props for v5.12.0" \
--description "When querying Button props for version 5.12.0, the output includes props that don't exist in that version" \
--steps "1. Run: 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 jsonShow the report to the user and confirm before submitting:
antd bug-cli --title "antd info Button returns wrong props for v5.12.0" \
--description "..." \
--steps "..." \
--expected "..." \
--actual "..." \
--submitOpt-out: If the environment variable ANTD_NO_AUTO_REPORT=1 is set, skip all bug-reporting suggestions entirely — do not suggest antd bug or antd bug-cli unless the user directly asks.
11. Upgrading the CLI
When the user wants to update @ant-design/cli to the latest version, or when an "Update available" notice appears:
# Upgrade to the latest version (auto-detects package manager)
antd upgradeThe command detects which package manager installed the CLI (npm, yarn, pnpm, bun, cnpm, utoo) and runs the appropriate upgrade command. If detection fails, it suggests the manual command.
12. 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, exposing all knowledge-query tools directly:
{
"mcpServers": {
"antd": {
"command": "antd",
"args": ["mcp", "--version", "5.20.0"]
}
}
}This provides 8 tools (antd_list, antd_info, antd_doc, antd_demo, antd_token, antd_design_md, antd_semantic, antd_changelog) and 2 prompts (antd-expert, antd-page-generator) via MCP protocol.
Global Flags
| Flag | Purpose |
|---|---|
--format <format> | Output format: json, text, or markdown (agents should prefer json) |
--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) |
-V, --cli-version | Print CLI version and exit |
Key Rules
1. Always query before writing — Don't guess antd APIs from memory. Run antd info first. 2. Match the user's version — Knowledge queries (list/info/doc/demo/token/semantic/changelog) support antd v4+. If the project uses antd 4.x/5.x/6.x, pass --version 4.24.0 / 5.24.0 / 6.x. For antd v3 projects, use antd migrate 3 4 first. 3. Use `--format json` — Every command supports it. Parse the JSON output rather than regex-matching text output. 4. Check before suggesting migration — Run antd changelog <v1> <v2> and antd migrate before advising on version upgrades. 5. Lint after changes — After writing or modifying antd code, run antd lint on the changed files to catch deprecated or problematic usage. 6. Report antd bugs — When the user asks to report an antd bug, use antd bug. Always preview first, get user confirmation, then submit. 7. 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.
Related skills
How it compares
Pick antd over generic React skills when you need version-pinned Ant Design API lookups and migration linting via @ant-design/cli instead of memorized props.
FAQ
Does antd CLI need network access?
No; bundled offline metadata serves component knowledge, demos, and migration guides locally.
What command should run before writing antd code?
Run antd info <Component> --format json to verify props, then antd demo for a working starter example.
How are version upgrades handled?
Use antd migrate with version pair flags plus antd changelog and antd lint to verify deprecated usage after fixes.
Is Antd safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.