Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
oakoss avatar

Tanstack Devtools

  • 86 installs
  • 14 repo stars
  • Updated March 2, 2026
  • oakoss/agent-skills

Helps with ai & agent building tasks during AI-assisted development.

About

tanstack-devtools is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • tanstack-devtools
  • AI & Agent Building
  • AI-coding skill

Tanstack Devtools by the numbers

  • 86 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #4,993 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oakoss/agent-skills --skill tanstack-devtools

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs86
repo stars14
Last updatedMarch 2, 2026
Repositoryoakoss/agent-skills

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

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' \
panelLocation`'top' \'bottom'`
theme`'dark' \'light'`
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

  • Query devtools setup, modes, and options
  • Router devtools setup, route inspection, and options
  • Form devtools and unified devtools patterns

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.