loader-action-optimizer

Installation
SKILL.md

Loader & Action Optimizer

Master React Router v7's data loading and mutation patterns. Learn how to fetch data efficiently, handle errors gracefully, and create responsive user experiences.

Quick Reference

Basic Loader Pattern

export async function loader({ request, params }: LoaderFunctionArgs) {
  const data = await fetchData(params.id);
  return { data };
}

Basic Action Pattern

Related skills
Installs
12
First Seen
Feb 9, 2026