remix

Solid

Remix patterns including loaders, actions, nested routing, progressive enhancement, and deployment strategies.

AI & Automation 1,160 stars 71 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Remix Skill Expert assistance for building full-stack applications with Remix. ## Capabilities - Implement loaders for data fetching - Create actions for mutations - Configure nested routing with outlets - Build progressively enhanced forms - Handle errors and boundaries - Set up deployment for various platforms ## Usage Invoke this skill when you need to: - Build full-stack React applications - Implement progressive enhancement - Create nested layouts with data - Handle form submissions properly - Deploy to edge platforms ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | routePath | string | Yes | Route path | | hasLoader | boolean | No | Include loader | | hasAction | boolean | No | Include action | | nested | boolean | No | Has nested routes | ## Route Patterns ### Loader and Action ```typescript // app/routes/users.tsx import type { LoaderFunctionArgs, ActionFunctionArgs } from '@remix-run/node'; import { json, redirect } from '@remix-run/node'; import { useLoaderData, Form, useNavigation } from '@remix-run/react'; import { db } from '~/utils/db.server'; import { requireUser } from '~/utils/session.server'; export async function loader({ request }: LoaderFunctionArgs) { await requireUser(request); const url = new URL(request.url); const search = url.searchParams.get('search') || ''; const users = await db.user.findMany({ where: search ? { name: { contains: search } } : undefined, orderBy:...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

Data & Documents Listed

remix-cache

A type-safe, Redis-backed caching library for Remix applications with SSE-based real-time invalidation, stale-while-revalidate, pattern matching, and automatic React revalidation. Use when working with Remix caching, Redis, cache invalidation, implementing caching strategies, or real-time data synchronization in Remix apps.

335 Updated today
aiskillstore
Web & Frontend Solid

react-patterns

Provides comprehensive React 19 patterns for Server Components, Server Actions, useOptimistic, useActionState, useTransition, concurrent features, Suspense boundaries, and TypeScript integration. Generates executable code patterns, validates security for public endpoints, and optimizes performance with React Compiler or manual memoization. Proactively use when building React 19 applications with Next.js App Router, implementing optimistic UI, or optimizing concurrent rendering.

263 Updated 1 weeks ago
giuseppe-trisciuoglio
AI & Automation Solid

react-hooks

Deep expertise in React hooks patterns including custom hooks, composition, optimization, and testing strategies.

1,160 Updated today
a5c-ai
Web & Frontend Solid

react-expert

Use when building React 18+ applications in .jsx or .tsx files, Next.js App Router projects, or create-react-app setups. Creates components, implements custom hooks, debugs rendering issues, migrates class components to functional, and implements state management. Invoke for Server Components, Suspense boundaries, useActionState forms, performance optimization, or React 19 features.

9,537 Updated 1 weeks ago
Jeffallan
AI & Automation Listed

rn-navigation

Expo Router navigation patterns for React Native. Use when implementing navigation, routing, deep links, tab bars, modals, or handling navigation state in Expo apps.

335 Updated today
aiskillstore