Agent skill
inertia
How to work effectively with Inertia, always use when developing frontend features
Install this agent skill to your Project
npx add-skill https://github.com/markhamsquareventures/essentials/tree/main/skills/inertia
SKILL.md
Inertia
Instructions
Inertia + React
- Use
router.visit()or<Link>for navigation instead of traditional links.
import { Link } from '@inertiajs/react'
Inertia + React Forms
import { Form } from '@inertiajs/react'
export default () => (
{errors.name && <div>{errors.name}</div>}
<button type="submit" disabled={processing}>
{processing ? 'Creating...' : 'Create User'}
</button>
{wasSuccessful && <div>User created successfully!</div>}
</>
)}
</Form>
)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
test-driven-development
Use when implementing any feature or bugfix, before writing implementation code
tailwind
How to work effectively with Tailwind CSS, always use when styling frontend features
testing
How to effectively test the application, always use when writing tests
shadcn
How to work effectively with shadcn/ui components, always use when adding UI components
laravel
How to work effectively with Laravel, always use when developing Laravel features
react
How to work effectively with React, always use when developing frontend components
Didn't find tool you were looking for?