tanstack-devtools — for Claude Code tanstack-devtools, opsflow, 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'

# 핵심 주제

iEnergyy iEnergyy
[0]
[0]
업데이트: 4/14/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

적합한 상황: 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 into a

최적의 용도

적합한 상황: 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

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs 데모

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 및 설치 단계

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

? 자주 묻는 질문

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.

tanstack-devtools은 어떻게 설치하나요?

다음 명령을 실행하세요: npx killer-skills add iEnergyy/opsflow. Cursor, Windsurf, VS Code, Claude Code와 19개 이상의 다른 IDE에서 동작합니다.

tanstack-devtools은 어디에 쓰이나요?

주요 활용 사례는 다음과 같습니다: 사용 사례: Applying React: @tanstack/react-devtools, 사용 사례: Applying Core: @tanstack/devtools, 사용 사례: Applying npm install @tanstack/react-devtools.

tanstack-devtools 와 호환되는 IDE는 무엇인가요?

이 스킬은 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 와 호환됩니다. 통합 설치에는 Killer-Skills CLI를 사용하세요.

tanstack-devtools에 제한 사항이 있나요?

제한 사항: Requires repository-specific context from the skill documentation. 제한 사항: Works best when the underlying tools and dependencies are already configured.

이 스킬 설치 방법

  1. 1. 터미널 열기

    프로젝트 디렉터리에서 터미널 또는 명령줄을 여세요.

  2. 2. 설치 명령 실행

    npx killer-skills add iEnergyy/opsflow 를 실행하세요. CLI가 IDE 또는 에이전트를 자동으로 감지하고 스킬을 설정합니다.

  3. 3. 스킬 사용 시작

    스킬이 이제 활성화되었습니다. 현재 프로젝트에서 tanstack-devtools을 바로 사용할 수 있습니다.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

tanstack-devtools

Install tanstack-devtools, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

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

현지화된 요약: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
인공지능

widget-generator

Logo of f
f

현지화된 요약: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
인공지능

flags

Logo of vercel
vercel

현지화된 요약: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

현지화된 요약: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
개발자