Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
inertia-rails avatar

Inertia Rails Architecture

  • 440 installs
  • 64 repo stars
  • Updated February 13, 2026
  • inertia-rails/skills

Server-driven architecture patterns for Inertia Rails + React with a decision matrix for data loading, forms, navigation, and state.

About

Inertia-rails-architecture teaches the server-owns-truth mental model for Rails + Inertia + React and routes to the right skill via a decision matrix. A developer loads it first when building any Inertia page, model view, or CRUD feature.

  • Decision matrix mapping needs to server-driven solutions
  • Warns against SPA patterns like useEffect+fetch and react-router

Inertia Rails Architecture by the numbers

  • 440 all-time installs (skills.sh)
  • +34 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #994 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/inertia-rails/skills --skill inertia-rails-architecture

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs440
repo stars64
Last updatedFebruary 13, 2026
Repositoryinertia-rails/skills

What it does

Server-driven architecture patterns for Inertia Rails + React with a decision matrix for data loading, forms, navigation, and state.

Files

SKILL.mdMarkdownGitHub ↗

Inertia Rails Architecture

Server-driven architecture for Rails + Inertia.js + React when building pages, forms, navigation, or data refresh. Inertia is NOT a traditional SPA — the server owns routing, data, and auth. React handles rendering only.

The Core Mental Model

The server is the source of truth. React receives data as props and renders UI. There is no client-side router, no global state store, no API layer.

Before building any feature, ask:

  • Where does the data come from? → If server: controller prop. If user interaction: useState.
  • Who owns this state? → If it's in the URL or DB: server owns it (use props). If it's ephemeral UI: React owns it.
  • Am I reaching for a React/SPA pattern? → Check the decision matrix below first — Inertia likely has a server-driven equivalent.

Decision Matrix

NeedSolutionNOT This
Page data from serverController propsuseEffect + fetch
Global data (auth, config)inertia_share + usePage()React Context / Redux
Flash messages / toastsRails flash + usePage().flashinertia_share / React state
Form submission<Form> componentfetch/axios + useState
Navigate between pages<Link> / router.visitreact-router / window.location
Refresh specific datarouter.reload({ only: [...] })React Query / SWR
Expensive server dataInertiaRails.deferuseEffect + loading state
Infinite scrollInertiaRails.scroll + <InfiniteScroll>Client-side pagination
Stable reference dataInertiaRails.onceCache in React state
Real-time updates (core)ActionCable + router.reloadPolling with setInterval
Simple polling (MVP/prototyping)usePoll (auto-throttles in background tabs)setInterval + router.reload
URL-driven UI state (dialogs, tabs)Controller reads params → prop, router.get to updateuseEffect + window.location
Ephemeral UI stateuseState / useReducerServer props
External API callsDedicated API endpointMixing with Inertia props

Rules (by impact)

#ImpactRuleWHY
1CRITICALNever useEffect+fetch for page dataInertia re-renders the full component on navigation; a useEffect fetch creates a second data lifecycle that drifts from props and causes stale UI
2CRITICALNever check auth client-sideAuth state in React can be spoofed; server-side checks are the only real gate. Client-side "guards" give false security
3CRITICALUse <Form>, not fetch/axios<Form> handles CSRF, redirect-following, error mapping, file detection, and history state — fetch duplicates or breaks all of this
4HIGHUse <Link> and router, not <a> or window.location<a> triggers a full page reload, destroying all React state and layout persistence
5HIGHUse partial reloads, not React Query/SWRReact Query adds a second cache layer that conflicts with Inertia's page-based caching and versioning
5bHIGHUse usePoll only for MVPs; prefer ActionCable for production real-timeusePoll is convenient but wastes bandwidth — every interval hits the server even when nothing changed. ActionCable pushes only on actual changes
6HIGHUse inertia_share for global data, not React ContextContext re-renders consumers on every change; shared props are per-request and integrated with partial reloads
7HIGHUse Rails flash for notifications, not shared propsFlash auto-clears after one response; shared props persist until explicitly changed, causing stale toasts
8MEDIUMUse deferred/optional props for expensive queriesBlocks initial render otherwise — user sees blank page until slow query finishes
9MEDIUMUse persistent layouts for state preservationWithout persistent layout, layout remounts on every navigation — scroll position, audio playback, and component state are lost
10MEDIUMKeep React components as renderers, not data fetchersMixing data-fetching into components makes them untestable and breaks Inertia's server-driven model

Skill Map

Common workflows span multiple skills — load all listed for complete coverage:

WorkflowLoad these skills
New page with propsinertia-rails-controllers + inertia-rails-pages + inertia-rails-typescript
Form with validationinertia-rails-forms + inertia-rails-controllers
shadcn form inputsinertia-rails-forms + shadcn-inertia
Flash toastsinertia-rails-controllers + inertia-rails-pages + shadcn-inertia
Deferred/lazy datainertia-rails-controllers + inertia-rails-pages
URL-driven dialog/tabsinertia-rails-controllers + inertia-rails-pages
Alba serializationalba-inertia + inertia-rails-typescript
Testing controllersinertia-rails-testing + inertia-rails-controllers

References

MANDATORY — READ ENTIRE FILE before building a new Inertia page or feature: `references/AGENTS.md` (~430 lines) — full-stack examples for each pattern in the decision matrix above.

MANDATORY — READ ENTIRE FILE when unsure which Inertia pattern to use: `references/decision-trees.md` (~70 lines) — flowcharts for choosing between prop types, navigation methods, and data strategies.

Do NOT load references for quick questions about a single pattern already covered in the decision matrix above.

When You DO Need a Separate API

Not everything belongs in Inertia's request cycle. Use a traditional API endpoint when:

SignalWhyExample
Non-browser consumerInertia's JSON envelope (component, props, url, version) is designed for the frontend adapter — other consumers can't use itMobile API, CLI tools, payment webhooks
Large-dataset searchDataset is too big to load as a prop; each input needs per-keystroke server filtering. Use raw fetch for the search, let Inertia handle post-selection side effects via props.City/address autocomplete, postal code lookup
Binary/streaming responseInertia can only deliver JSON props. Use a separate route with a standard download response.PDF/CSV export, file downloads

Related skills

Backend & APIsbackendfrontend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.