Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

tanstack-router-guidetanstack 路由器指南

Agent Skill

tanstack-router-guide 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

17

下载量

78
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tanstack-router-guide(tanstack 路由器指南)
来源仓库:https://github.com/vcode-sh/vibe-tools
仓库路径:skills/tanstack-router-guide
安装命令:
npx skills add https://github.com/vcode-sh/vibe-tools --skill tanstack-router-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vcode-sh/vibe-tools --skill tanstack-router-guide

简介

tanstack-router-guide 用于查找、检索和筛选相关信息,适合在 Codex、Claude 等宿主中快速定位技术资料。

  • 适用于研究检索类任务,可结合关键词和任务场景使用。
  • 通过 npx skills add 命令从指定仓库安装,支持灵活调用。
  • 安装前应核实权限范围,避免触发不必要的网络或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

TanStack Router Guide (React)

TanStack Router is a fully type-safe, file-based router for React. It provides first-class search param APIs, built-in data loading with SWR caching, automatic code splitting, and 100% inferred TypeScript types. Designed for client-first SPAs with optional SSR support.

Install

npm install @tanstack/react-router
npm install -D @tanstack/router-plugin
# Optional: devtools
npm install @tanstack/react-router-devtools

Quick Start with Vite (Recommended)

1. Configure Vite:

// vite.config.ts
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { tanstackRouter } from '@tanstack/router-plugin/vite'

export default defineConfig({
  plugins: [
    tanstackRouter({ target: 'react', autoCodeSplitting: true }),
    react(), // Must come AFTER tanstackRouter
  ],
})

2. Create root route:

// src/routes/__root.tsx
import { createRootRoute, Link, Outlet } from '@tanstack/react-router'
import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'

export const Route = createRootRoute({
  component: () => (
    <>
      <nav>
        <Link to="/" activeProps={{ className: 'font-bold' }}>Home</Link>
        <Link to="/about" activeProps={{ className: 'font-bold' }}>About</Link>
      </nav>
      <Outlet />
      <TanStackRouterDevtools />
    </>
  ),
})

3. Create routes:

// src/routes/index.tsx
import { createFileRoute } from '@tanstack/react-router'

export const Route = createFileRoute('/')({
  component: () => <div>Welcome Home!</div>,
})

// src/routes/about.tsx
export const Route = createFileRoute('/about')({
  component: () => <div>About Page</div>,
})

4. Mount the router:

// src/main.tsx
import { StrictMode } from 'react'
import ReactDOM from 'react-dom/client'
import { RouterProvider, createRouter } from '@tanstack/react-router'
import { routeTree } from './routeTree.gen'

const router = createRouter({ routeTree })

// Register router type globally for type safety
declare module '@tanstack/react-router' {
  interface Register {
    router: typeof router
  }
}

ReactDOM.createRoot(document.getElementById('root')!).render(
  <StrictMode>
    <RouterProvider router={router} />
  </StrictMode>,
)

File-Based Routing (Naming Conventions)

Routes live in src/routes/ and file names determine URL paths:

File NameURL PathPurpose
__root.tsxN/ARoot layout (always rendered)
index.tsx/Index route
about.tsx/aboutStatic route
posts.tsx/postsLayout route (renders Outlet)
posts.index.tsx/postsIndex for /posts
posts.$postId.tsx/posts/:postIdDynamic segment
_auth.tsxN/APathless layout (wraps children, no URL)
_auth.dashboard.tsx/dashboardChild of pathless layout
posts_.$postId.edit.tsx/posts/:postId/editNon-nested (escapes parent layout)
files.$.tsx/files/*Splat/catch-all route
posts.{-$category}.tsx/posts/:category?Optional path parameter
-utils.tsxN/AExcluded from routing
(group)/login.tsx/loginRoute group (organizational only)

The plugin auto-generates routeTree.gen.ts - commit this file but never edit it manually.

Navigation

import { Link, useNavigate } from '@tanstack/react-router'

// Declarative - Link component
<Link to="/posts/$postId" params={{ postId: '123' }}>View Post</Link>
<Link to="/posts" search={{ page: 2, sort: 'asc' }}>Page 2</Link>
<Link to=".." from="/posts/$postId">Back to Posts</Link>

// Active styling
<Link to="/about" activeProps={{ className: 'active' }} inactiveProps={{ className: 'dim' }}>
  About
</Link>

// Programmatic - useNavigate
const navigate = useNavigate()
navigate({ to: '/posts/$postId', params: { postId: '123' } })
navigate({ to: '/posts', search: (prev) => ({ ...prev, page: 2 }) })
navigate({ to: '..', from: '/posts/$postId' }) // Relative

Search Params (Validated & Type-Safe)

import { createFileRoute } from '@tanstack/react-router'
import { z } from 'zod'

export const Route = createFileRoute('/posts')({
  validateSearch: z.object({
    page: z.number().catch(1),
    sort: z.enum(['asc', 'desc']).optional(),
    filter: z.string().optional(),
  }),
  component: PostsPage,
})

function PostsPage() {
  const { page, sort, filter } = Route.useSearch() // Fully typed
  const navigate = Route.useNavigate()

  return (
    <button onClick={() => navigate({ search: (prev) => ({ ...prev, page: prev.page + 1 }) })}>
      Next Page
    </button>
  )
}

Search Middlewares - retain or strip params across navigations:

import { retainSearchParams, stripSearchParams } from '@tanstack/react-router'

export const Route = createFileRoute('/posts')({
  validateSearch: z.object({ page: z.number().catch(1), q: z.string().optional() }),
  search: {
    middlewares: [
      retainSearchParams(['q']),        // Keep 'q' across navigations
      stripSearchParams({ page: 1 }),    // Strip 'page' when it equals default
    ],
  },
})

Data Loading

// Basic loader with path params
export const Route = createFileRoute('/posts/$postId')({
  loader: async ({ params }) => {
    const post = await fetchPost(params.postId)
    return { post }
  },
  component: PostPage,
})

function PostPage() {
  const { post } = Route.useLoaderData() // Fully typed
  return <div>{post.title}</div>
}
// Loader with search-param dependencies
export const Route = createFileRoute('/posts')({
  validateSearch: z.object({ page: z.number().catch(1) }),
  loaderDeps: ({ search }) => ({ page: search.page }),
  loader: async ({ deps }) => fetchPosts(deps.page),
  component: PostsPage,
})

Key loader options: staleTime (SWR cache duration), shouldReload (control when to re-fetch), pendingMs/pendingMinMs (loading indicator timing), gcTime (garbage collection), loaderDeps (search-param keying).

Optional Path Parameters

Use {-$paramName} syntax for segments that may or may not exist:

// src/routes/posts.{-$category}.tsx -> /posts or /posts/tech
export const Route = createFileRoute('/posts/{-$category}')({
  component: () => {
    const { category } = Route.useParams() // category: string | undefined
    return <div>{category ? `Posts in ${category}` : 'All Posts'}</div>
  },
})

// Navigation: pass undefined to omit the segment
<Link to="/posts/{-$category}" params={{ category: undefined }}>All Posts</Link>
<Link to="/posts/{-$category}" params={{ category: 'tech' }}>Tech Posts</Link>

Router Context (Dependency Injection)

import { createRootRouteWithContext } from '@tanstack/react-router'
import type { QueryClient } from '@tanstack/react-query'

interface RouterContext {
  queryClient: QueryClient
  auth: AuthState
}

// Root route
const rootRoute = createRootRouteWithContext<RouterContext>()({
  component: RootComponent,
})

// Use in any route
export const Route = createFileRoute('/posts')({
  beforeLoad: ({ context }) => {
    // context.queryClient and context.auth available here
  },
  loader: ({ context }) => context.queryClient.ensureQueryData(postsQueryOptions()),
})

// Provide context when creating router
const router = createRouter({
  routeTree,
  context: { queryClient, auth: { user: null } },
})

Authentication (Protected Routes)

// src/routes/_auth.tsx - Pathless layout for protected routes
export const Route = createFileRoute('/_auth')({
  beforeLoad: async ({ context, location }) => {
    if (!context.auth.user) {
      throw redirect({
        to: '/login',
        search: { redirect: location.href },
      })
    }
  },
  component: () => <Outlet />,
})

// src/routes/_auth.dashboard.tsx - Protected route
export const Route = createFileRoute('/_auth/dashboard')({
  component: () => <div>Protected Dashboard</div>,
})

Error Handling

import { notFound } from '@tanstack/react-router'

export const Route = createFileRoute('/posts/$postId')({
  loader: async ({ params }) => {
    const post = await fetchPost(params.postId)
    if (!post) throw notFound()
    return { post }
  },
  notFoundComponent: () => <div>Post not found!</div>,
  errorComponent: ({ error, reset }) => (
    <div>
      <p>Error: {error.message}</p>
      <button onClick={reset}>Retry</button>
    </div>
  ),
})

// Global defaults on router
const router = createRouter({
  routeTree,
  defaultNotFoundComponent: () => <div>Page not found</div>,
  defaultErrorComponent: ({ error }) => <div>Error: {error.message}</div>,
})

Essential Hooks

HookPurpose
Route.useSearch()Current validated search params
Route.useParams()Current path params
Route.useLoaderData()Data from route loader
Route.useRouteContext()Route's context
Route.useNavigate()Navigate from current route
useNavigate()Navigate from any component
useRouter()Access router instance
useRouterState()Reactive router state
useMatch({from: '/route'})Match data for specific route
useBlocker()Block navigation (dirty forms)

See references/api-hooks.md for all 19 hooks with full signatures.

Key Rules

  • Plugin order: tanstackRouter() must come BEFORE react() in Vite config
  • Commit routeTree.gen.ts: It's runtime code, not a build artifact
  • Module declaration: Always register router type for global type inference
  • Export as Route: File-based routes must export const Route = createFileRoute(...)
  • Pathless layouts: Prefix with _ (e.g., _auth.tsx) for layout-only routes
  • Non-nested routes: Use _ suffix to escape parent layout (e.g., posts_.$id.edit.tsx)
  • Ignore generated file: Add routeTree.gen.ts to .prettierignore, .eslintignore
  • Route matching order: Index > Static > Dynamic > Splat (automatic)
  • Don't export route properties: Exported components/loaders break code splitting
  • Validation adapters: Valibot/ArkType work directly; Zod needs zodValidator adapter
  • Outlet required: Every route with children must render <Outlet />; routes without a component auto-render <Outlet />
  • Type safety tip: Use Route.useX() methods over standalone hooks for automatic type inference

Reference Files

API

  • references/api-hooks.md — All 19 hooks with signatures, options, and examples
  • references/api-components.md — Link, Outlet, Await, Block, HeadContent, CatchNotFound, and more
  • references/api-functions.md — createRouter, createFileRoute, redirect, notFound, linkOptions, search middleware
  • references/api-router-instance.md — Router instance methods, events, and route type API
  • references/api-types.md — NavigateOptions, RouterState, RouteMatch, type utilities, deprecated items

Patterns

  • references/patterns-params.md — Path parameters, search params (Zod/Valibot/ArkType), loaderDeps, middlewares
  • references/patterns-links-blocking.md — Link options, custom links, navigation blocking, history types
  • references/patterns-data.md — Data loading, mutations, TanStack Query integration, not-found handling
  • references/patterns-auth.md — Authentication, RBAC, router context, preloading strategies

Configuration

  • references/config-bundlers.md — Vite, Webpack, Rspack, esbuild, Router CLI setup and plugin options
  • references/config-routing.md — File naming conventions, route matching, code-based routing
  • references/config-virtual-routes.md — Virtual file routes, physical routes, __virtual.ts subtrees
  • references/config-router-options.md — All createRouter() options: core, preloading, data loading, search, scroll, URL behavior
  • references/config-route-options.md — All createFileRoute/createRoute options: components, search, loader, lifecycle, head, SSR
  • references/config-devtools.md — DevTools modes, production devtools, IDE configuration

Advanced

  • references/advanced-ssr.md — SSR streaming/non-streaming, dehydration/hydration, deferred data
  • references/advanced-code-splitting.md — Automatic/manual splitting, split groupings, lazy routes
  • references/advanced-url-features.md — URL rewrites, route masking, custom search serialization
  • references/advanced-optimization.md — Type safety, TS performance tips, render optimizations, view transitions
  • references/advanced-head-scroll.md — Document head management, scroll restoration, i18n

Operations

  • references/troubleshooting.md — FAQ, common errors, debugging guide, performance issues
  • references/deployment-integrations.md — Deployment (8 platforms), environment variables, framework integrations
  • references/testing-migration.md — Testing setup, route testing patterns, migration guides

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.8%
按下载量换算26

Claude

29.57%
按下载量换算23

Cursor

19.92%
按下载量换算16

Gemini CLI

8.91%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills