What problem does it solve? It enforces consistent, project-aligned frontend development for the trade-crawlee codebase, preventing style drift, forbidden dependencies, and missing error/loading states when building React pages. ## Core Features & Use Cases - Full-Cycle Module Development: Builds complete CRUD modules (list, detail, create, editor pages) with routing, API layer, types, and styled-components following the src/views/<module>/ directory convention. - Strict Coding Standards Enforcement: Mandates Ant Design v6 native components only, bans @ant-design/pro-components, requires TypeScript interfaces, and enforces loading/error/empty three-state handling on every user operation. - Use Case: When asked to add a new enterprise management module, it reads existing sibling modules first, then produces types.ts, api.ts, router-config.ts, list.tsx, detail.tsx, create.tsx, and editor.tsx that pass incremental lint checks out of the box. ## Quick Start Ask the agent to develop a new CRUD page or fix a frontend bug in the trade-crawlee project following its existing code conventions.