From partme-ai-full-stack-skills
Builds React mobile UIs with Ant Design Mobile components like Button, Form, List, Modal, Picker, Tabs, PullToRefresh, InfiniteScroll. For mobile-first interfaces, navigation, forms, data display.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Use this skill whenever the user wants to:
LICENSE.txtapi/components.mdapi/config-provider.mdexamples/advanced/internationalization.mdexamples/advanced/theme-customization.mdexamples/components/action-sheet.mdexamples/components/avatar.mdexamples/components/badge.mdexamples/components/button.mdexamples/components/card.mdexamples/components/cascader.mdexamples/components/checkbox.mdexamples/components/date-picker.mdexamples/components/dialog.mdexamples/components/divider.mdexamples/components/empty.mdexamples/components/error-block.mdexamples/components/form.mdexamples/components/grid.mdexamples/components/icon.mdCreates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Use this skill whenever the user wants to:
npm install antd-mobile and import CSSexamples/components/import { Button, Form, Input, Toast } from 'antd-mobile';
function LoginForm() {
const [form] = Form.useForm();
const onSubmit = async () => {
const values = await form.validateFields();
Toast.show({ content: `Welcome, ${values.username}!` });
};
return (
<Form form={form} layout="horizontal" footer={
<Button block type="submit" color="primary" onClick={onSubmit}>
Login
</Button>
}>
<Form.Item name="username" label="Username" rules={[{ required: true }]}>
<Input placeholder="Enter username" />
</Form.Item>
<Form.Item name="password" label="Password" rules={[{ required: true }]}>
<Input type="password" placeholder="Enter password" />
</Form.Item>
</Form>
);
}
| Category | Components | Example Files |
|---|---|---|
| Navigation | NavBar, TabBar, Tabs, SideBar | examples/components/nav-bar.md, tabs.md |
| Data Entry | Input, Form, Picker, DatePicker, Switch, Checkbox | examples/components/form.md, picker.md |
| Data Display | List, Card, Badge, Tag, Avatar, Image | examples/components/list.md, card.md |
| Feedback | Modal, Toast, Dialog, ActionSheet, Loading | examples/components/modal.md, toast.md |
| Gestures | PullToRefresh, InfiniteScroll, Swiper | examples/components/pull-to-refresh.md |
api/components.md - All component props and APIsapi/config-provider.md - Global configuration and themingimport 'antd-mobile/es/global' in your entry file--adm-color-primary etc. for custom brandingimport { Button } from 'antd-mobile') for smaller bundlesantd-mobile, Ant Design Mobile, React mobile, mobile UI, 移动端, 组件库, Button, Form, List, Modal, Tabs, PullToRefresh, InfiniteScroll, Toast, NavBar, TabBar, mobile components