tanstack-react-router_routing

tanstack-react-router_routing is a cursor rule for Cursor from openstory-so/openstory. It costs 13,615 tokens per session, scanned A, original, MIT.

Reference guidance for configuring routes in TanStack Router, a React library that maps web addresses to page components. It covers code-based route trees and recommends organizing routes through files for most applications.

In plain words
What is it for?
It helps define route trees, nested pages, layouts, dynamic post IDs, settings pages, and file-based or code-based routing.
Why use it?
It clarifies how nested pages, layouts, and dynamic addresses should be represented when building navigation.

Cursor rule for Cursor

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.

agentmods
npx agentmods add rules/openstory-so/openstory/tanstack-react-router_routing
Clone the repo
git clone --depth 1 https://github.com/openstory-so/openstory

Made for: Cursor.

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 tanstack-react-router_routing

README.md
[![agentmods](https://agentmods.dev/badge/rules/openstory-so/openstory/tanstack-react-router_routing.svg)](https://agentmods.dev/rules/openstory-so/openstory/tanstack-react-router_routing)
Your own site
<a href="https://agentmods.dev/rules/openstory-so/openstory/tanstack-react-router_routing"><img src="https://agentmods.dev/badge/rules/openstory-so/openstory/tanstack-react-router_routing.svg" alt="Measured on agentmods" height="20"></a>
Per session 13,615 This file is loaded in full into every session.
When invoked 13,615 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.13615 $0.13615
Opus 5 $0.06807 $0.06807
Sonnet 5 $0.02723 $0.02723
Haiku 4.5 $0.01362 $0.01362

Measured 4d ago against content hash df8cc11fc024, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

tanstack-react-router_routing 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 4d 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.

.cursor/rules/tanstack-react-router_routing.mdc · 1,584 lines

How it starts

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

Code-Based Routing

[!TIP] Code-based routing is not recommended for most applications. It is recommended to use File-Based Routing instead.

⚠️ Before You Start

  • If you're using File-Based Routing, skip this guide.
  • If you still insist on using code-based routing, you must read the Routing Concepts guide first, as it also covers core concepts of the router.

Route Trees

Code-based routing is no different from file-based routing in that it uses the same route tree concept to organize, match and compose matching routes into a component tree. The only difference is that instead of using the filesystem to organize your routes, you use code.

Let's consider the same route tree from the Route Trees & Nesting guide, and convert it to code-based routing:

Here is the file-based version:

routes/
├── __root.tsx
├── index.tsx
├── about.tsx
├── posts/
│   ├── index.tsx
│   ├── $postId.tsx
├── posts.$postId.edit.tsx
├── settings/
│   ├── profile.tsx
│   ├── notifications.tsx
├── _pathlessLayout.tsx
├── _pathlessLayout/
│   ├── route-a.tsx
├── ├── route-b.tsx
├── files/
│   ├── $.tsx

And here is a summarized code-based version:

import { createRootRoute, createRoute } from '@tanstack/react-router'

const rootRoute = createRootRoute()

const indexRoute = createRoute({
  getParentRoute: () => rootRoute,
  path: '/',
})

const aboutRoute = createRoute({
  getParentRoute: () => rootRoute,
  path: 'about',
})

const postsRoute = createRoute({
  getParentRoute: () => rootRoute,
  path: 'posts',
})

const postsIndexRoute = createRoute({
  getParentRoute: () => postsRoute,
  path: '/',
})

const postRoute = createRoute({
  getParentRoute: () => postsRoute,
  path: '$postId',
})

const postEditorRoute = createRoute({
  getParentRoute: () => rootRoute,
  path: 'posts/$postId/edit',
})

const settingsRoute = createRoute({
  getParentRoute: () => rootRoute,
  path: 'settings',
})

const profileRoute = createRoute({
  getParentRoute: () => settingsRoute,
  path: 'profile',
})

const notificationsRoute = createRoute({
  getParentRoute: () => settingsRoute,
  path: 'notifications',
})

const pathlessLayoutRoute = createRoute({
  getParentRoute: () => rootRoute,
  id: 'pathlessLayout',
})

const pathlessLayoutARoute = createRoute({
  getParentRoute: () => pathlessLayoutRoute,
  path: 'route-a',
})

const pathlessLayoutBRoute = createRoute({
  getParentRoute: () => pathlessLayoutRoute,
  path: 'route-b',
})

const filesRoute = createRoute({
  getParentRoute: () => rootRoute,
  path: 'files/$',
})

Read the full file on GitHub · 1,584 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. 4d ago First seen · 1,584 lines · 13,615 tokens per session scan A df8cc11fc024

Subscribe to this mod's changes

tanstack-react-router_routing is a cursor rule published in the GitHub repository openstory-so/openstory (568 stars, last pushed today), licensed MIT. It adds 13,615 tokens to every session, about $0.0681 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-08-30.