agentic-ui-development
Installation
SKILL.md
Agentic UI 项目开发
@ant-design/agentic-ui 整体开发流程、规范与组件清单。具体组件实现见各 component-xxx Skill。
规范入口
- 编码与仓库规范:仓库根目录 AGENTS.md(命名、TypeScript、样式、测试、Git/PR、Changelog)。
- 组件级约定:各
.cursor/skills/component-xxx/SKILL.md与 AGENTS.md 一致。
常用命令
| 用途 | 命令 |
|---|---|
| 文档站点 | pnpm start(http://localhost:8000) |
| 构建 | pnpm run build |
| 单元测试 | 日常 pnpm test(精简);全量 pnpm run test:full(--mode full);覆盖率 pnpm run test:coverage / 全量 pnpm run test:coverage:full(同全量 exclude + --coverage) |
| E2E | pnpm run test:e2e,调试 pnpm run test:e2e:debug |
| 检查 | pnpm run lint、pnpm tsc |
| 格式化 | pnpm run prettier |