home / skills / bankkroll / skills-builder / remix
This skill helps you understand and navigate Remix documentation to build robust routes, loaders, actions, and data management in your app.
npx playbooks add skill bankkroll/skills-builder --skill remixReview the files below or copy the command above to add this skill to your agents.
---
name: "remix"
description: "Scraped from https://remix.run/docs/en/main/ Source: https://remix.run/docs/en/main."
---
# Remix
> Official documentation: https://remix.run/docs/en/main
## Overview
This skill provides comprehensive documentation for remix.
**Total references:** 1 files (~455 tokens)
## Reference Files
Load only the reference files relevant to the user's question:
- **[Remix Docs](references/general.md)** (~455 tokens)
- Topics: How to Use These Docs
## Usage Guidelines
1. **Identify relevant sections** - Match the user's question to the appropriate reference file(s)
2. **Load minimally** - Only read files directly relevant to the question to conserve context
3. **Cite sources** - Reference specific sections when answering
4. **Combine knowledge** - For complex questions, you may need multiple reference files
### When to use each reference:
- **General**: General documentation, overview, and getting started
This skill packages concise, navigable documentation and guidance for Remix, the full-stack web framework for building performant web apps. It focuses on practical, example-driven explanations drawn from the official Remix docs to help you get started, structure apps, and adopt best practices quickly. The content is kept minimal and actionable for developers who want direct answers and clear next steps.
The skill inspects the main Remix documentation and extracts core concepts, getting-started steps, and common patterns. It maps questions to relevant doc sections (overview, routing, loaders/actions, data loading, forms, nested routes, deployment) and returns succinct guidance with pointers to the original docs. For complex topics it combines related sections to produce a coherent, stepwise answer.
Is Remix suitable for data-heavy server-rendered apps?
Yes. Remix is designed for server-first data loading using loaders, enabling efficient server rendering and caching patterns for data-heavy apps.
Where should I put API-like logic in Remix?
Put API or mutation logic inside actions or dedicated server routes. Use loaders to fetch data for rendering and actions for processing form submissions or mutations.