remix

remix is a skill for Claude Code, Codex from G1Joshi/Agent-Skills. It costs 20 tokens per session (518 once invoked), scanned A, original, MIT.

A full-stack framework for building React applications around web standards such as browser forms and the Fetch API. It supports nested routes, server-side data loading, form actions, and optimistic interface updates.

In plain words
What is it for?
Use it to build data-heavy React applications, such as task managers, with route-specific loading, server-side writes, and responsive forms.
Why use it?
It organises page data and form submissions without requiring a separate, complex communication layer between the browser and server.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build data-heavy React applications, such as task managers, with route-specific loading, server-side writes, and responsive forms.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/g1joshi/agent-skills/remix
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add G1Joshi/Agent-Skills --skill remix
Clone the repo
git clone --depth 1 https://github.com/G1Joshi/Agent-Skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for remix

README.md
[![agentmods](https://agentmods.dev/badge/skills/g1joshi/agent-skills/remix/github.svg)](https://agentmods.dev/skills/g1joshi/agent-skills/remix)
Your own site
<a href="https://agentmods.dev/skills/g1joshi/agent-skills/remix"><img src="https://agentmods.dev/badge/skills/g1joshi/agent-skills/remix/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for remix

Your own site · 80×15
<a href="https://agentmods.dev/skills/g1joshi/agent-skills/remix"><img src="https://agentmods.dev/badge/skills/g1joshi/agent-skills/remix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 518 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00020 $0.00518
Opus 5 $0.00010 $0.00259
Sonnet 5 $0.00004 $0.00104
Haiku 4.5 $0.00002 $0.00052

Measured 5d ago against content hash 0f0d0cd7897a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

remix scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/frameworks/remix/SKILL.md · 74 lines

How it starts

The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Remix

Remix is a full-stack web framework that focuses on web standards (Fetch API, Forms). In 2025, it has largely converged with React Router 7, offering a "Vite-native" experience.

When to Use

  • Data-Heavy Apps: Excellent handling of nested data loading and parallel fetching.
  • Web Standards: If you like standard <form> and FormData over complex RPC layers.
  • Optimistic UI: Built-in support for optimistic UI makes apps feel instant.

Quick Start (Loader/Action)

import { json } from "@remix-run/node";
import { useLoaderData, Form } from "@remix-run/react";

// Functions run on server
export async function loader() {
  return json(await db.getTasks());
}

export async function action({ request }) {
  const formData = await request.formData();
  await db.createTask(formData.get("title"));
  return json({ ok: true });
}

// Component runs on Client + Server
export default function Tasks() {
  const tasks = useLoaderData<typeof loader>();
  return (
    <Form method="post">
      <input name="title" />
      <button>Add</button>
    </Form>
  );
}

Core Concepts

Nested Routing

Remix loads data in parallel for every segment of the URL. /sales/invoices/1023 loads data for Sales Layout, Invoices List, and Invoice Details simultaneously.

Progressive Enhancement

Apps work without JavaScript by default (mostly). Form submissions work via standard browser POST if JS fails.

Actions & Loaders

The "Backend for Frontend" is co-located in the same file as the UI.

Best Practices (2025)

Do:

  • Use Single Fetch: The new 2025 data loading pattern that combines multiple loaders into one HTTP request.
  • Flat Routes: Use the flat file convention (routes/dashboard.settings.tsx) to avoid deep folder nesting.
  • Use defer: Stream slow data (like third party APIs) while showing the critical UI immediately.

Don't:

  • Don't manage global state for server data: useLoaderData is your state manager. You don't often need Redux/Context.

Read the full file on GitHub · 74 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 74 lines · 20 tokens per session scan A 0f0d0cd7897a

Subscribe to this mod's changes

remix is a skill published in the GitHub repository G1Joshi/Agent-Skills (12 stars, last pushed 7mo ago), licensed MIT. It adds 20 tokens to every session and 518 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

nextjs-app-router-patterns

Master Next.js 14+ App Router with Server Components, streaming, parallel routes, and advanced data fetching. Use when building Next.js applications, implementing SSR/SSG, or optimizing React Server Components.

rmyndharis/antigravity-skills · 48 tokens

react-best-practices

React and Next.js performance optimization guidelines from Vercel Engineering. Use when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements. Do NOT use…

tech-leads-club/agent-skills · 80 tokens

react-composition-patterns

React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes. Do NOT…

tech-leads-club/agent-skills · 76 tokens

component-design

Design reusable React components with compound patterns, controlled/uncontrolled hybrids, typed prop APIs, async state handling, and ARIA accessibility. Use when the user creates, refactors, or reviews React components, or mentions props, hooks, .tsx files, component APIs, or accessible UI patterns.

sawrus/agent-guides · 61 tokens

api-integration

When connecting a component to a REST API, handling loading/error states, or implementing optimistic updates.

sawrus/agent-guides · 0 tokens

fullstack-guide

A development guide for building full-stack applications with React and TypeScript on the frontend and Node.js and Supabase on the backend. It covers component structure, data loading, routing, styling, performance, and TypeScript practices.

VidyFoo/antigravity-skill-engine · 74 tokens