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

tanstacktanstack 搜索

Agent Skill

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

总安装

2,032

周安装

83

GitHub Stars

323

下载量

651
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pedronauck/skills --skill tanstack

简介

tanstack 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合来源仓库和原始 README 核验具体用法和功能边界。

SKILL.md

TanStack Developer Guide

This skill provides comprehensive patterns and best practices for the TanStack ecosystem in React applications:

  • TanStack Query/DB: Data fetching, caching, collections, live queries, and optimistic updates
  • TanStack Form: Form state management, validation, and field components
  • TanStack Router: File-based routing, type-safe navigation, and URL parameters

Quick Start

For detailed examples and patterns, refer to the following files in the references/ directory:

  • references/query-patterns.md - TanStack Query and TanStack DB patterns
  • references/form-patterns.md - TanStack Form patterns and components
  • references/router-patterns.md - TanStack Router patterns and navigation

TanStack Query/DB Overview

TanStack DB extends TanStack Query with collections, live queries, and optimistic mutations. Key principle: load data into typed collections and consume through live queries that auto-update on data changes.

Critical Rules

  1. Never Use React Query Patterns with Collections - Collections have built-in mutation handling. Do NOT use useMutation + invalidateQueries.
  2. Always Share Collection Instances - Creating new collection instances for mutations causes "key not found" errors. The data-fetching hook must expose the collection, and mutation hooks must receive it as a parameter.
  3. Configure Persistence Handlers - Put server writes in collection handlers (onInsert, onUpdate, onDelete), not mutation hooks.
  4. Single Canonical Collection Pattern - Create ONE collection per entity type. Use live queries for filtered views.
  5. Check Field Changes Properly - Verify fields actually changed in onUpdate, not just that they exist.

Basic Collection Setup

import { createCollection } from '@tanstack/react-db';
import { queryCollectionOptions } from '@tanstack/query-db-collection';
import { z } from 'zod';

const itemSchema = z.object({
  id: z.string(),
  name: z.string().min(1),
  status: z.enum(['active', 'archived']),
});

const itemCollection = createCollection(
  queryCollectionOptions({
    queryKey: ['items'],
    queryFn: async () => (await fetch('/api/items')).json(),
    queryClient,
    getKey: (item) => item.id,
    schema: itemSchema,
  })
);

Sharing Collection Instance (Critical Pattern)

// CORRECT - share the instance
export function useItems() {
  const collection = useMemo(() => createItemsCollection(), []);
  const { data } = useLiveQuery(collection);
  return { data, collection }; // Expose collection
}

export function useUpdateItem(collection: ItemsCollection) {
  return (id, data) => collection.update(id, data);
}

TanStack Form Overview

TanStack Form provides headless form logic with automatic type inference and flexible validation.

Core Principles

  • Type Safety: Types are inferred from default values - avoid manual generic declarations.
  • Headless Design: Build UI components to match your design system.
  • Schema-First Validation: Use Zod for cleaner, more maintainable validation.

Basic Form Setup with createFormHook

import { createFormHookContexts, createFormHook } from '@tanstack/react-form'

export const { fieldContext, formContext, useFieldContext } =
  createFormHookContexts()

export const { useAppForm } = createFormHook({
  fieldContext,
  formContext,
  fieldComponents: {
    TextField,
    SelectField,
  },
  formComponents: {
    SubmitButton,
  },
})

Form Initialization

const form = useAppForm({
  defaultValues: {
    username: '',
    email: '',
    age: 0,
  },
  validators: {
    onChange: schema,
  },
  onSubmit: async ({ value }) => {
    // Handle submission
  },
})

Async Validation with Debouncing

<form.Field
  name="username"
  asyncDebounceMs={500}
  validators={{
    onChangeAsync: async ({ value }) => {
      const isAvailable = await checkUsernameAvailability(value)
      return isAvailable ? undefined : 'Username already taken'
    },
  }}
/>

TanStack Router Overview

TanStack Router provides type-safe file-based routing with first-class TypeScript support.

Core Principles

  • Type-Safe Routing: Embrace type-safe routing as the primary benefit.
  • File-Based Routes: Use file-based routing for scalability.
  • Generated Route Tree: Leverage the generated route tree for type safety.

File Structure

src/routes/
├── __root.tsx          # Root layout with providers
├── _authenticated.tsx  # Auth layout wrapper
├── index.tsx          # Home page (/)
├── posts/
│   ├── index.tsx      # /posts
│   └── $postId.tsx    # /posts/:postId (typed params)
└── settings/
    ├── _layout.tsx    # Settings layout
    └── profile.tsx    # /settings/profile

Basic Route with Search Params

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

const searchSchema = z.object({
  page: z.number().min(1).catch(1),
  search: z.string().optional(),
})

export const Route = createFileRoute('/posts/')({
  validateSearch: searchSchema,
  component: PostsList,
})

function PostsList() {
  const { page, search } = Route.useSearch()
  // Use search params...
}

Authentication Layout

// routes/_authenticated.tsx
import { createFileRoute, redirect, Outlet } from '@tanstack/react-router'

export const Route = createFileRoute('/_authenticated')({
  beforeLoad: async ({ location }) => {
    const isAuthenticated = checkAuth()
    if (!isAuthenticated) {
      throw redirect({
        to: '/login',
        search: { redirect: location.href },
      })
    }
  },
  component: () => <Outlet />,
})

Type-Safe Navigation

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

function Navigation() {
  const navigate = useNavigate()

  return (
    <>
      <Link
        to="/posts/$postId"
        params={{ postId: '123' }}
        search={{ tab: 'comments' }}
      >
        View Post
      </Link>

      <button onClick={() => navigate({ to: '/posts', search: { page: 1 } })}>
        Go to Posts
      </button>
    </>
  )
}

Validation Checklist

Before finishing a task involving TanStack:

Query/DB

  • Collection instances are shared between data-fetching and mutation hooks
  • Persistence handlers (onInsert, onUpdate, onDelete) are configured
  • No useMutation + invalidateQueries patterns with collections
  • One canonical collection per entity type
  • Field changes properly verified in onUpdate handlers

Form

  • Use createFormHook with useAppForm instead of raw useForm for consistency
  • Provide complete default values for proper type inference
  • Use Zod schemas for validation when possible
  • Debounce async validations (minimum 500ms recommended)
  • Prevent default on form submission
  • Display errors with proper accessibility (role="alert")

Router

  • Route path in createFileRoute matches file location
  • Search params use Zod validation with proper defaults (.catch())
  • Loader dependencies are correctly specified in loaderDeps
  • Authentication routes use beforeLoad with proper redirects
  • Navigation uses typed Link or useNavigate hooks
  • Error boundaries are implemented at route level

General

  • Run pnpm run typecheck and pnpm run test

For complete examples, edge cases, and advanced patterns, see the reference files in this skill directory.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.87%
按下载量换算220

Claude

32.69%
按下载量换算213

Cursor

17.58%
按下载量换算114

Gemini CLI

9.09%
按下载量换算59

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills