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

tanstack-start坦斯塔克开始

Agent Skill

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

总安装

1,260

周安装

52

GitHub Stars

10

下载量

412
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tanstack-start(坦斯塔克开始)
来源仓库:https://github.com/oakoss/agent-skills
仓库路径:skills/tanstack-start
安装命令:
npx skills add https://github.com/oakoss/agent-skills --skill tanstack-start
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill tanstack-start

简介

tanstack-start 用于查找、检索和筛选相关信息,适合在 TanStack 启动流程相关任务中提供支持。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的应用初始化与构建辅助场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 等 --skill tanstack-start 命令部署。
  • 建议确认是否涉及构建或部署操作,注意权限范围和维护状态。
  • 可结合原始 README 了解具体应用场景和操作规范。

SKILL.md

TanStack Start

Full-stack React framework built on TanStack Router. Type-safe server functions via RPC, SSR/streaming, middleware composition, and deployment to Cloudflare Workers, Vercel, Netlify, AWS Lambda, and more.

RC: TanStack Start is currently in Release Candidate status. APIs may still change before the stable 1.0 release.

Package: @tanstack/react-start

Quick Reference

PatternUsage
createServerFn()GET (default) — idempotent, cacheable data fetching
createServerFn({method: 'POST'})Mutations that change data
.inputValidator(zodSchema)Input validation before handler
.handler(async ({data}) => {})Server-side logic with typed input data
getRequest()Access full incoming Request inside handler/middleware
getRequestHeader(name)Read a single request header by name
setResponseHeaders(headers)Set outgoing response headers (caching, cookies)
useServerFn(fn)Wrap server function for component use with pending state
createMiddleware().server(fn)Request middleware for cross-cutting concerns
.middleware([dep])Compose middleware with dependencies
next({context: {}})Pass data downstream through middleware chain
createMiddleware({type: 'function'})Function-level middleware with input validation
requestMiddleware in createStart()Global middleware for all requests (SSR, fns, routes)
functionMiddleware in createStart()Global middleware for server functions only
createIsomorphicFn()Different implementations per environment
createServerOnlyFn()Server-only utility — crashes if called from client
createClientOnlyFn()Client-only utility — crashes if called from server
useSession()Cookie-based session with encryption and secure settings
session.update()Update session data
session.clear()Clear session (logout)
beforeLoadAuth check before route loads
_authenticated.tsxPathless layout route for grouped protection
throw redirect({to: '/login'})Redirect with return URL
await ensureQueryData()Block SSR on critical data
prefetchQuery()Start fetch, don't block SSR
<Suspense> boundariesDefine streaming chunks
head: ({loaderData}) => ({})Meta tags, Open Graph, favicons
head.scripts + JSON-LDStructured data for LLMO (schema.org)
llms.txt server routeAI system guidance file
headers: () => ({...})ISR / cache-control on route definition
server: {handlers: {GET, POST}}API routes on createFileRoute
ssr: falseDisable SSR for specific routes (SPA mode)

Execution Boundaries

FunctionRuns OnClient Can Call?Use For
createServerFn()ServerYes (RPC stub)Data fetching, mutations
createServerOnlyFn()ServerNo (throws)Secrets, DB connections
createClientOnlyFn()ClientN/AlocalStorage, DOM APIs
createIsomorphicFn()BothN/APer-environment implementations

Deployment (Vite Plugins)

PlatformPluginRuntime
Cloudflare@cloudflare/vite-pluginWorkers
Netlify@netlify/vite-plugin-tanstack-startNode
Vercelnitro/vite (preset: 'vercel')Node
Node.js/Dockernitro/vite (preset: 'node-server')Node
AWS Lambdanitro/vite (preset: 'aws-lambda')Node
Bunnitro/vite (preset: 'bun')Bun
Staticnitro/vite (preset: 'static')None

Common Mistakes

MistakeFix
No .inputValidator() on server functionsAlways validate with Zod schemas
Raw fetch instead of createServerFnLoses type safety, serialization, and code splitting
Mixing server/client code without boundariesUse createServerOnlyFn / createClientOnlyFn
Checking auth in every handlerUse middleware composition or beforeLoad
Awaiting all data in loaderOnly await critical data, prefetch the rest
Date.now() in renderPass timestamp from loader (hydration mismatch)
Missing nodejs_compat flagRequired in wrangler.toml for Cloudflare
GET for mutationsUse POST for create/update/delete
Cookies not forwarded to external APIsUse getRequestHeader() or createIsomorphicFn
process.env in loader (runs on both)Wrap in createServerFn — loaders run client-side too
Unvalidated server env varsValidate with Zod in .server.ts files
Storing auth tokens in localStorageUse HTTP-only cookies via useSession
Exposing raw DB errors to clientCatch and return user-friendly messages, log details
No structured data for content pagesAdd JSON-LD via head.scripts for AI discoverability

Delegation

Use this skill for TanStack Start server functions, middleware, SSR/streaming, route protection, API routes, and deployment configuration. Delegate to tanstack-router for file-based routing, search params, and data loading patterns. Delegate to tanstack-query for cache management, optimistic updates, and query patterns.

If the tanstack-form skill is available, delegate form state management, validation, and field patterns to it. If the local-first skill is available, delegate local-first architecture decisions and sync engine selection to it. If the electricsql skill is available, delegate ElectricSQL shapes, auth configuration, and write patterns to it. If the tanstack-db skill is available, delegate reactive collections, live queries, and optimistic mutation patterns to it.

References

  • Server Functions — createServerFn, useServerFn, validation, auth, request context, response headers, file uploads, streaming, TanStack Query integration
  • Middleware — composition, function-level middleware, route-level middleware, global middleware, logging, rate limiting
  • SSR and Streaming — Suspense, prerendering, ISR, cache-control, hybrid strategies, hydration safety
  • Route Protection — beforeLoad, pathless layouts, session security, login/logout, header forwarding, Better Auth
  • API Routes — server handlers, REST patterns, route-level middleware, webhooks, health check, server functions vs server routes
  • Deployment — Vite plugins, adapter comparison, Cloudflare D1/KV/R2 bindings, Docker, prerendering
  • SEO and Head Management — head property, meta tags, Open Graph, Twitter Cards, favicons, SEO helper
  • LLM Optimization (LLMO) — JSON-LD structured data, schema.org, llms.txt, machine-readable endpoints, AI citation patterns
  • Error Handling — discriminated unions, custom error classes, status codes, result types vs try-catch
  • File Organization — entry points, plugin config, execution boundaries, env validation,.server.ts convention
  • Known Issues — 10 documented issues with workarounds
  • Query Integration — Router+Query setup, SSR integration, setupRouterSsrQueryIntegration, DevTools
  • Integration Flows — form submission with cache update, infinite scroll, paginated tables, auth-protected routes, error handling
  • Local-First Integration — shape proxy server functions, mixing server-based and local-first data, ElectricSQL deployment
  • Electric Middleware — auth middleware for shape proxies, global middleware config, sendContext, function-level validation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.94%
按下载量换算148

Claude

31.19%
按下载量换算129

Cursor

20.29%
按下载量换算84

Gemini CLI

9.74%
按下载量换算40

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills