tanstack-devtools — for Claude Code tanstack-devtools, zainy-water-v3, community, for Claude Code, ide skills, ## Basic Setup, ### Router Devtools, ### Combined Setup, Overview, TanStack

v1.0.0

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need react: @tanstack/react-devtools. Локализованное описание: ## Overview TanStack Devtools provides a unified debugging interface that consolidates devtools for TanStack Query, Router, and other libraries into a single panel. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Возможности

React: @tanstack/react-devtools
Core: @tanstack/devtools
npm install @tanstack/react-devtools
import { TanStackDevtools } from '@tanstack/react-devtools'
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'

# Core Topics

TaherMustansir1929 TaherMustansir1929
[0]
[0]
Updated: 4/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
49
Canonical Locale
en
Detected Body Locale
en

Подходящий сценарий: Ideal for AI agents that need react: @tanstack/react-devtools. Локализованное описание: ## Overview TanStack Devtools provides a unified debugging interface that consolidates devtools for TanStack Query, Router, and other libraries into a single panel. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Зачем использовать этот навык

Рекомендация: tanstack-devtools helps agents react: @tanstack/react-devtools. Overview TanStack Devtools provides a unified debugging interface that consolidates devtools for TanStack Query, Router, and other libraries

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need react: @tanstack/react-devtools.

Реализуемые кейсы использования for tanstack-devtools

Сценарий использования: Applying React: @tanstack/react-devtools
Сценарий использования: Applying Core: @tanstack/devtools
Сценарий использования: Applying npm install @tanstack/react-devtools

! Безопасность и ограничения

  • Ограничение: Requires repository-specific context from the skill documentation
  • Ограничение: Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is tanstack-devtools?

Подходящий сценарий: Ideal for AI agents that need react: @tanstack/react-devtools. Локализованное описание: ## Overview TanStack Devtools provides a unified debugging interface that consolidates devtools for TanStack Query, Router, and other libraries into a single panel. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install tanstack-devtools?

Run the command: npx killer-skills add TaherMustansir1929/zainy-water-v3/tanstack-devtools. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for tanstack-devtools?

Key use cases include: Сценарий использования: Applying React: @tanstack/react-devtools, Сценарий использования: Applying Core: @tanstack/devtools, Сценарий использования: Applying npm install @tanstack/react-devtools.

Which IDEs are compatible with tanstack-devtools?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for tanstack-devtools?

Ограничение: Requires repository-specific context from the skill documentation. Ограничение: Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add TaherMustansir1929/zainy-water-v3/tanstack-devtools. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use tanstack-devtools immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

tanstack-devtools

Install tanstack-devtools, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Overview

TanStack Devtools provides a unified debugging interface that consolidates devtools for TanStack Query, Router, and other libraries into a single panel. It features a framework-agnostic plugin architecture, real-time state inspection, and support for custom plugins. Built with Solid.js for lightweight performance.

React: @tanstack/react-devtools Core: @tanstack/devtools Status: Alpha

Installation

bash
1npm install @tanstack/react-devtools

Basic Setup

tsx
1import { TanStackDevtools } from '@tanstack/react-devtools' 2import { QueryClient, QueryClientProvider } from '@tanstack/react-query' 3 4const queryClient = new QueryClient() 5 6function App() { 7 return ( 8 <QueryClientProvider client={queryClient}> 9 <TanStackDevtools /> 10 {/* Your app content */} 11 <MyApp /> 12 </QueryClientProvider> 13 ) 14}

Built-in Plugins

Query Devtools

tsx
1import { TanStackDevtools } from '@tanstack/react-devtools' 2import { ReactQueryDevtoolsPanel } from '@tanstack/react-query-devtools' 3 4function App() { 5 return ( 6 <QueryClientProvider client={queryClient}> 7 <TanStackDevtools 8 plugins={[ 9 { 10 id: 'react-query', 11 name: 'React Query', 12 render: () => <ReactQueryDevtoolsPanel />, 13 }, 14 ]} 15 /> 16 <MyApp /> 17 </QueryClientProvider> 18 ) 19}

Router Devtools

tsx
1import { TanStackDevtools } from '@tanstack/react-devtools' 2import { TanStackRouterDevtoolsPanel } from '@tanstack/react-router-devtools' 3 4function App() { 5 return ( 6 <TanStackDevtools 7 plugins={[ 8 { 9 id: 'router', 10 name: 'Router', 11 render: () => <TanStackRouterDevtoolsPanel router={router} />, 12 }, 13 ]} 14 /> 15 ) 16}

Combined Setup

tsx
1import { TanStackDevtools } from '@tanstack/react-devtools' 2import { ReactQueryDevtoolsPanel } from '@tanstack/react-query-devtools' 3import { TanStackRouterDevtoolsPanel } from '@tanstack/react-router-devtools' 4 5function App() { 6 return ( 7 <QueryClientProvider client={queryClient}> 8 <TanStackDevtools 9 plugins={[ 10 { 11 id: 'react-query', 12 name: 'React Query', 13 render: () => <ReactQueryDevtoolsPanel />, 14 }, 15 { 16 id: 'router', 17 name: 'Router', 18 render: () => <TanStackRouterDevtoolsPanel router={router} />, 19 }, 20 ]} 21 /> 22 <MyApp /> 23 </QueryClientProvider> 24 ) 25}

AI Devtools

For debugging TanStack AI workflows:

tsx
1import { TanStackDevtools } from '@tanstack/react-devtools' 2import { AIDevtoolsPanel } from '@tanstack/ai-react/devtools' 3 4function App() { 5 return ( 6 <TanStackDevtools 7 plugins={[ 8 { 9 id: 'ai', 10 name: 'AI', 11 render: () => <AIDevtoolsPanel />, 12 }, 13 ]} 14 /> 15 ) 16}

AI Devtools features:

  • Message Inspector - View full conversation history with metadata
  • Token Usage - Track input/output tokens and costs per request
  • Streaming Visualization - Real-time view of streaming chunks
  • Tool Call Debugging - Inspect tool calls, parameters, and results
  • Thinking/Reasoning Viewer - Debug reasoning tokens from thinking models
  • Adapter Switching - Test different providers in development

Plugin System

Plugin Interface

typescript
1interface DevtoolsPlugin { 2 id: string // Unique identifier 3 name: string // Display name in the devtools panel 4 render: () => JSX.Element // React component to render 5}

Custom Plugins

tsx
1import { TanStackDevtools } from '@tanstack/react-devtools' 2 3// Custom state inspector plugin 4const stateInspectorPlugin = { 5 id: 'state-inspector', 6 name: 'State', 7 render: () => ( 8 <div style={{ padding: '16px' }}> 9 <h3>Application State</h3> 10 <pre>{JSON.stringify(appState, null, 2)}</pre> 11 </div> 12 ), 13} 14 15// Custom network logger plugin 16const networkLoggerPlugin = { 17 id: 'network-logger', 18 name: 'Network', 19 render: () => <NetworkLoggerPanel />, 20} 21 22function App() { 23 return ( 24 <TanStackDevtools 25 plugins={[ 26 stateInspectorPlugin, 27 networkLoggerPlugin, 28 ]} 29 /> 30 ) 31}

Dynamic Plugin Registration

tsx
1function App() { 2 const [plugins, setPlugins] = useState<DevtoolsPlugin[]>([]) 3 4 useEffect(() => { 5 // Register plugins conditionally 6 const activePlugins: DevtoolsPlugin[] = [] 7 8 if (process.env.NODE_ENV === 'development') { 9 activePlugins.push({ 10 id: 'debug', 11 name: 'Debug', 12 render: () => <DebugPanel />, 13 }) 14 } 15 16 setPlugins(activePlugins) 17 }, []) 18 19 return <TanStackDevtools plugins={plugins} /> 20}

Vite Plugin Integration

typescript
1// vite.config.ts 2import { defineConfig } from 'vite' 3import { tanstackDevtools } from '@tanstack/devtools/vite' 4 5export default defineConfig({ 6 plugins: [ 7 tanstackDevtools(), 8 ], 9})

Production Considerations

tsx
1// Only include devtools in development 2function App() { 3 return ( 4 <> 5 {process.env.NODE_ENV === 'development' && ( 6 <TanStackDevtools plugins={plugins} /> 7 )} 8 <MyApp /> 9 </> 10 ) 11} 12 13// Or use lazy loading 14const TanStackDevtools = lazy(() => 15 import('@tanstack/react-devtools').then((m) => ({ default: m.TanStackDevtools })) 16)

Framework Support

FrameworkPackageStatus
React@tanstack/react-devtoolsAlpha
Solid@tanstack/solid-devtoolsPlanned
Vue@tanstack/vue-devtoolsPlanned
Angular@tanstack/angular-devtoolsPlanned

Features

  • Unified Panel - Single interface for all TanStack debugging
  • Real-time Updates - Live monitoring of state changes
  • Plugin Architecture - Extensible with custom and third-party plugins
  • Built-in Plugins - Query, Router, and AI devtools panels
  • Lightweight - Built with Solid.js for minimal overhead
  • Type-safe - Full TypeScript support for plugin definitions
  • Framework-agnostic Core - Plugin logic works across frameworks

Best Practices

  1. Conditionally include in production - use environment checks or code splitting
  2. Use specific plugins rather than loading all available ones
  3. Give plugins unique IDs to prevent conflicts
  4. Keep plugin render functions lightweight - avoid expensive computations
  5. Use the Vite plugin for automatic setup in Vite-based projects
  6. Combine Query + Router + AI plugins for full-stack TanStack debugging
  7. Create domain-specific plugins for app-level state inspection
  8. Use AI devtools when debugging streaming, tool calls, or token usage

Common Pitfalls

  • Including devtools in production builds without tree-shaking
  • Using duplicate plugin IDs (causes rendering conflicts)
  • Heavy render functions in plugins (slows down the devtools panel)
  • Forgetting to wrap with QueryClientProvider when using Query plugin
  • Not passing the router instance to Router devtools panel

Связанные навыки

Looking for an alternative to tanstack-devtools or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Создание настраиваемых плагинов виджетов для системы ленты новостей prompts.chat

flags

Logo of vercel
vercel

Фреймворк React

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Разработчик