Available Skills
The repository currently includes three specialized skills under .agents/skills.
Use these together with AGENTS.md so generated code follows this project's architectural rules.
react-template-form-feature
Use when creating or refactoring form-driven features.
Focus:
*.schema.ts+*.handler.ts+*.page.tsxpattern.- RHF + Zod wiring and shared form field usage.
- Mutation flow and post-submit behavior.
- Locale sync for user-facing labels and validation messages.
Example prompt:
Use react-template-form-feature to create a profile form with name, role, and phone fields.
react-template-table-feature
Use when creating or refactoring table-driven pages.
Focus:
- Table handler/page split.
- Query + URL-synced state + filtering orchestration.
DataTableandPaginationintegration.useTableState,FiltersPanel, andTableChipFilterintegration.- Route wiring and locale sync.
Example prompt:
Use react-template-table-feature to add a products table with search, status filters, and pagination.
react-template-data-access-endpoint
Use when adding or updating endpoint integration.
Focus:
- Add contracts in feature-scoped
<feature>.schema.tsfiles. - Add API functions in feature-scoped
<feature>.api.tsfiles. - Keep feature code free of direct
httpClientusage. - Sync Mockoon endpoints and payload shapes.
Example prompt:
Use react-template-data-access-endpoint to add GET /products/:id with schema parsing and mock alignment.
Selection guide
- New/updated form workflow: choose
react-template-form-feature. - New table page workflow: choose
react-template-table-feature. - API contract or endpoint changes: choose
react-template-data-access-endpoint.
Fast workflow
- Start from
AGENTS.mdto align with naming, imports, and routing rules. - Select one skill based on the task type.
- Ask AI to generate the feature using that skill.
- Run
pnpm run type-checkandpnpm run build.