remix
Assists with building full-stack web applications using Remix. Use when creating apps with nested routing, loader/action patterns, progressive enhancement, or deploying to Node.js, Cloudflare Workers, or other adapters. Trigger words: remix, remix run, loader, action, useFetcher, nested routes, progressive enhancement.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o remix.zip https://jpskill.com/download/15335.zip && unzip -o remix.zip && rm remix.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15335.zip -OutFile "$d\remix.zip"; Expand-Archive "$d\remix.zip" -DestinationPath $d -Force; ri "$d\remix.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
remix.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
remixフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Remix
Overview
Remix is a full-stack React framework built on web standards that uses nested routing, loader/action data patterns, and progressive enhancement to build fast, resilient applications. Forms work without JavaScript, nested routes load data in parallel, and error boundaries isolate failures to individual route segments.
Instructions
- When building routes, use file-based nested routing where each route module contains both the UI and data layer, with
<Outlet />for child routes and pathless layouts for shared UI without URL segments. - When loading data, use
loaderfunctions that run server-side and return data withjson(),defer(), orredirect(). Nested route loaders run in parallel to avoid client-server waterfalls. - When handling mutations, use
actionfunctions triggered by<Form method="post">, return validation errors with appropriate HTTP status codes, and rely on automatic revalidation of all page loaders after actions. - When enhancing UX, use
useFetcher()for non-navigation mutations (like buttons, inline edits),useNavigation()for form submission state, andfetcher.formDatafor optimistic UI. - When handling errors, add
ErrorBoundaryat every route level to prevent child errors from crashing the whole page, and useisRouteErrorResponse()to distinguish 404s from server errors. - When managing auth, use
createCookieSessionStorage()for encrypted sessions, redirect in loaders when unauthenticated, and leverage built-in CSRF protection. - When deploying, choose the appropriate adapter (
@remix-run/node,@remix-run/cloudflare,@remix-run/deno) and use Vite as the compiler.
Examples
Example 1: Build a CRUD app with progressive enhancement
User request: "Create a Remix app with task management and form-based mutations"
Actions:
- Define nested routes for task list and task detail pages
- Implement loaders for data fetching with parallel loading
- Create actions for create, update, delete with validation error handling
- Use
<Form>for progressive enhancement anduseFetcher()for inline edits
Output: A full-stack task app that works without JavaScript and is enhanced with JavaScript.
Example 2: Deploy a Remix app to Cloudflare Workers
User request: "Set up a Remix app for edge deployment on Cloudflare"
Actions:
- Configure
@remix-run/cloudflareadapter in the project - Set up loaders using KV and D1 bindings from the context
- Add streaming with
defer()for slow data below the fold - Configure HTTP caching headers in loaders for CDN performance
Output: An edge-deployed Remix app with serverless data access and CDN caching.
Guidelines
- Use
loaderfor all data fetching; never useuseEffect+fetchfor initial page data. - Use
<Form>instead of<form>+onSubmitfor progressive enhancement. - Return proper HTTP status codes from loaders and actions (404, 400, 403), not just
json({ error }). - Use
useFetcher()for mutations that should not trigger navigation (like/unlike, inline edits, search). - Handle errors at every route level with
ErrorBoundary; do not let child errors crash the whole page. - Use
defer()for slow data below the fold to show the page fast and stream non-critical data. - Keep loaders and actions in the route file; co-location makes it easy to see what a route does.