AgentSkillsCN

olore-tanstack-query-3

本地 TanStack Query v3(React Query)文档参考。用于服务器端状态管理、数据获取、缓存机制、查询操作、数据变更,以及与 React 的深度集成。

SKILL.md
--- frontmatter
name: olore-tanstack-query-3
description: Local TanStack Query v3 (React Query) documentation reference. Server state management, data fetching, caching, queries, mutations, and React integration.

TanStack Query v3 Documentation

TanStack Query (formerly React Query) v3 documentation for server state management, data fetching, caching, queries, mutations, and React integration.

Documentation Structure

code
contents/framework/react/
├── guides/       # Core concepts and how-to guides (29 files)
├── reference/    # API reference for hooks and classes (19 files)
├── plugins/      # Plugin documentation (4 files)
└── [root]        # Setup, overview, and getting started (7 files)

Topic Guide

TopicKey Files
Getting Startedcontents/framework/react/installation.md, contents/framework/react/quick-start.md, contents/framework/react/overview.md
Queries (Fetching)contents/framework/react/guides/queries.md, contents/framework/react/guides/query-keys.md, contents/framework/react/guides/query-functions.md
Mutations (Updates)contents/framework/react/guides/mutations.md, contents/framework/react/reference/useMutation.md
Caching & Invalidationcontents/framework/react/guides/caching.md, contents/framework/react/guides/query-invalidation.md, contents/framework/react/guides/important-defaults.md
Optimistic Updatescontents/framework/react/guides/optimistic-updates.md, contents/framework/react/guides/updates-from-mutation-responses.md
Paginationcontents/framework/react/guides/paginated-queries.md, contents/framework/react/guides/infinite-queries.md
SSR & Suspensecontents/framework/react/guides/ssr.md, contents/framework/react/guides/suspense.md, contents/framework/react/reference/hydration.md
API Referencecontents/framework/react/reference/useQuery.md, contents/framework/react/reference/QueryClient.md
TypeScriptcontents/framework/react/typescript.md
Testingcontents/framework/react/guides/testing.md
Migrationcontents/framework/react/guides/migrating-to-react-query-3.md

When to use

Use this skill when the user asks about:

  • TanStack Query v3 / React Query v3
  • Server state management and data fetching
  • Queries, mutations, and cache management
  • Query invalidation and refetching
  • Optimistic updates
  • Infinite scrolling and pagination
  • SSR, hydration, and Suspense with React Query
  • React Query hooks (useQuery, useMutation, etc.)
  • QueryClient and cache configuration
  • TypeScript with React Query v3

How to find information

  1. Use Topic Guide above to identify relevant files
  2. Read TOC.md for complete file listing by directory
  3. Read specific files from contents/framework/react/{path}