# Send Ant Design Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ant-design-skill",
    "name": "Ant Design Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/FelipeOFF/ant-design-skill",
    "canonicalUrl": "https://clawhub.ai/FelipeOFF/ant-design-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ant-design-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ant-design-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "examples/README.md",
      "examples/crud-users/README.md",
      "examples/crud-users/UsersPage.tsx",
      "examples/crud-users/mockServer.ts"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ant-design-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ant-design-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/ant-design-skill",
    "agentUrl": "https://openagent3.xyz/skills/ant-design-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ant-design-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ant-design-skill/agent.md"
  }
}
```
## Documentation

### Ant Design (React) — Practical Front-end Design Skill

Use this skill when you are building a React UI with Ant Design (antd) and want consistent, non-ugly screens fast.

### When to use

The project uses React + Ant Design
You need to design/implement pages with: Layout, Menu, Form, Table, Modal, Drawer, Steps, Tabs, Pagination
You need to implement theme tokens (colors, radius, typography, spacing)
You want predictable UI patterns (CRUD screens, dashboards, settings pages)

### Default workflow (do this order)

Confirm stack: React + antd version (v5+ assumed).
Choose page pattern:

CRUD list (Table) + filters (Form) + actions (Modal/Drawer)
Wizard (Steps)
Settings (Form + Cards)
Dashboard (Grid + Cards + Charts)


Build layout skeleton first:

Layout + Sider + Header + Content
Navigation with Menu


Build the main interaction component:

Forms: Form, Form.Item, Input, Select, DatePicker, Switch
Tables: Table + column definitions + row actions


Add feedback loop:

message, notification, Modal.confirm


Apply theming/tokens via ConfigProvider (global) and component-level overrides.
Verify:

Empty states
Loading states
Error states
Mobile responsiveness (at least: 360px layout sanity)

### Layout

Use Layout with Sider (collapsible), Header for top actions, Content scroll.
Put page title + primary CTA in a Flex (or Space) row.

### Forms

Keep forms vertical; align labels consistently.
Use Form + Form.Item rules for validation; avoid custom validation unless necessary.
Use Form.useForm() and form.setFieldsValue() for edit flows.

### Tables (CRUD)

Columns:

left: identifier/name
middle: important attributes
right: actions (Edit/Delete)


Use rowKey always.
Use server-side pagination for real apps.

### Modals/Drawers

Modal for short forms.
Drawer for longer forms or when you want context kept.

### Theming / Tokens (AntD v5)

Ant Design v5 uses Design Tokens and CSS-in-JS.

### Global theme

Wrap your app in ConfigProvider:

import { ConfigProvider, theme } from 'antd';

export function AppProviders({ children }: { children: React.ReactNode }) {
  return (
    <ConfigProvider
      theme={{
        algorithm: theme.defaultAlgorithm,
        token: {
          colorPrimary: '#1677ff',
          borderRadius: 10,
          fontSize: 14,
        },
        components: {
          Button: { controlHeight: 40 },
          Layout: { headerBg: '#ffffff' },
        },
      }}
    >
      {children}
    </ConfigProvider>
  );
}

### Dark mode

Use theme.darkAlgorithm and keep tokens consistent:

const isDark = true;

<ConfigProvider
  theme={{
    algorithm: isDark ? theme.darkAlgorithm : theme.defaultAlgorithm,
    token: { colorPrimary: '#7c3aed' },
  }}
/>

### Component-level overrides

Use components.<ComponentName> for specific tweaks (Button, Input, Table, etc.).

### References

Read README.md for the full “how-to” (setup + patterns + examples).
Use protocols/ when you want LLM-first contracts (describe UIs as data, then generate code deterministically).
Read references/tokens.md for a tokens cookbook.
Read references/components.md for practical page recipes (CRUD, Settings, Wizard).
Use examples/ when you want ready-to-copy AntD screens.
Use starter/ when you need a runnable Vite + React + AntD skeleton.

### Guardrails

Assume Ant Design v5+ (tokens). If project is v4 (Less variables), stop and ask.
Prefer built-in components and patterns over custom CSS.
Avoid over-theming: set a small set of tokens and only override components when needed.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: FelipeOFF
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ant-design-skill)
- [Send to Agent page](https://openagent3.xyz/skills/ant-design-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/ant-design-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ant-design-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/ant-design-skill)