tanstack-devtools

TanStack DevTools for debugging Query, Router, and Form state in React apps. Use when setting up devtools, debugging cache state, or inspecting route trees. Use for devtools, react-query-devtools, router-devtools, form-devtools, debug, inspect, cache-viewer.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "tanstack-devtools" with this command: npx skills add oakoss/agent-skills

TanStack DevTools

Overview

TanStack DevTools provides debugging panels for inspecting Query cache state, Router route trees, and Form field state in React applications. There are two approaches: standalone devtools per library (ReactQueryDevtools, TanStackRouterDevtools) and the unified TanStack Devtools panel that combines all libraries into a single interface with plugin architecture.

When to use: Setting up devtools for TanStack libraries, debugging query cache behavior, inspecting route matching, monitoring form field state, or combining multiple TanStack devtools into one panel.

When NOT to use: Production debugging (devtools are tree-shaken in production by default), non-React frameworks without adapter support, or custom state management unrelated to TанStack libraries.

Quick Reference

PatternAPIKey Points
Query devtools (floating)<ReactQueryDevtools />Auto-connects to nearest QueryClient
Query devtools (embedded)<ReactQueryDevtoolsPanel />Embed in custom layout
Router devtools (floating)<TanStackRouterDevtools />Place in root route component
Router devtools (embedded)<TanStackRouterDevtoolsPanel />Requires router prop outside provider
Form devtools<ReactFormDevtoolsPanel />Plugin for unified devtools
Unified devtools<TanStackDevtools plugins={[...]} />Single panel for all TanStack libraries
Vite plugindevtools() in vite configSource injection, enhanced logs, production removal
Production devtoolsReactQueryDevtoolsInProdOpt-in for production environments
Lazy loadingReact.lazy(() => import(...))Reduce bundle size in development
Open hotkeyconfig={{ openHotkey: ['Shift', 'D'] }}Keyboard shortcut for unified panel

Unified Devtools Config

OptionTypePurpose
position'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'middle-left' | 'middle-right'Trigger button location
panelLocation'top' | 'bottom'Panel slide direction
theme'dark' | 'light'Panel color scheme
defaultOpenbooleanOpen panel on load
hideUntilHoverbooleanHide trigger until hover
openHotkeyKeyboardKey[]Toggle panel shortcut
inspectHotkeyKeyboardKey[]Source inspector shortcut
requireUrlFlagbooleanOnly activate with URL parameter

Common Mistakes

MistakeCorrect Pattern
Importing devtools in production bundleStandalone devtools auto-tree-shake; use React.lazy for code-splitting
Passing router prop when inside RouterProviderOmit router prop; devtools auto-detect context
Using ReactQueryDevtools position for panel placementbuttonPosition controls logo position; position controls panel edge
Mixing standalone and unified devtoolsChoose one approach; both rendering causes duplicate panels
Rendering devtools outside QueryClientProviderPlace ReactQueryDevtools inside provider or pass client prop
Using TanStackRouterDevtools outside route treePlace in root route component or pass router prop explicitly
Forgetting Vite plugin for unified devtoolsAdd devtools() from @tanstack/devtools-vite to vite config
Using unified devtools without framework adapterInstall both @tanstack/react-devtools and library-specific plugin packages

Delegation

  • Devtools setup review: Use Task agent to verify correct placement and configuration
  • Bundle size analysis: Use Explore agent to check devtools are tree-shaken in production
  • Code review: Delegate to code-reviewer agent

If the tanstack-query skill is available, delegate query-specific debugging patterns to it. Otherwise, recommend: npx skills add oakoss/agent-skills --skill tanstack-query

If the tanstack-router skill is available, delegate route debugging patterns to it. Otherwise, recommend: npx skills add oakoss/agent-skills --skill tanstack-router

If the tanstack-form skill is available, delegate form state management and validation patterns to it.

References

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

github-cli

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

tanstack-cli

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

typescript-patterns

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

chrome-devtools

No summary provided by upstream source.

Repository SourceNeeds Review