Give your AI agent eyes into your React app. Inspect component trees, read props and state, and profile rendering performance β all from the command line. Inspired by Vercel's agent-browser and Callstack's agent-device.
The project is in early development and considered experimental. Pull requests are welcome!
- Walk the full component tree with props, state, and hooks
- Search for components by display name
- Profile renders: find slow components, excessive re-renders, and commit timelines
- Persistent background daemon that survives across CLI calls
- Token-efficient output built for LLM consumption
npm install -g agent-react-devtoolsOr run it directly:
npx agent-react-devtools startagent-react-devtools start
agent-react-devtools statusDaemon: running (port 8097)
Apps: 1 connected, 24 components
Uptime: 12s
Last event: app connected 3s ago
Browse the component tree:
agent-react-devtools get tree --depth 3@c1 [fn] App
ββ @c2 [fn] Header
β ββ @c3 [fn] Nav
β ββ @c4 [fn] SearchBar
ββ @c5 [fn] TodoList
β ββ @c6 [fn] TodoItem key=1
β ββ @c7 [fn] TodoItem key=2
β ββ @c8 [fn] TodoItem key=3
β ββ ... +47 more TodoItem
ββ @c9 [fn] Footer
53 components shown (1,843 total)
Host components (<div>, <span>, etc.) are filtered by default to keep output compact. Use --all to include them. Host components with keys or custom element names (e.g. <my-widget>) are always shown.
View a subtree rooted at a specific component:
agent-react-devtools get tree @c5 --depth 2@c1 [fn] TodoList
ββ @c2 [fn] TodoItem key=1
ββ @c3 [fn] TodoItem key=2
ββ @c4 [fn] TodoItem key=3
Inspect a component's props, state, and hooks:
agent-react-devtools get component @c6@c6 [fn] TodoItem key=1
props:
id: 1
text: "Buy groceries"
done: false
onToggle: Ζ
hooks:
State: false
Callback: Ζ
Find components by name:
agent-react-devtools find TodoItem@c6 [fn] TodoItem key=1
@c7 [fn] TodoItem key=2
@c8 [fn] TodoItem key=3
Profile rendering performance:
agent-react-devtools profile start
# ... interact with the app ...
agent-react-devtools profile stop
agent-react-devtools profile slowSlowest (by avg render time):
@c5 [fn] TodoList avg:4.2ms max:8.1ms renders:6 causes:props-changed changed: props: items, onDelete
@c4 [fn] SearchBar avg:2.1ms max:3.4ms renders:12 causes:hooks-changed changed: hooks: #0
@c2 [fn] Header avg:0.8ms max:1.2ms renders:3 causes:parent-rendered
agent-react-devtools start [--port 8097] # Start daemon
agent-react-devtools stop # Stop daemon
agent-react-devtools status # Connection statusagent-react-devtools get tree [@c1 | id] [--depth N] [--all] [--max-lines N] # Component hierarchy (subtree)
agent-react-devtools get component <@c1 | id> # Props, state, hooks
agent-react-devtools find <name> [--exact] # Search by display name
agent-react-devtools count # Component count by type
agent-react-devtools errors # Components with errors/warningsTree output flags:
--depth Nβ limit tree depth--allβ include host components (filtered by default)--max-lines Nβ hard cap on output lines
Components are labeled @c1, @c2, etc. You can use these labels or numeric IDs interchangeably.
Components with errors or warnings are annotated in tree and search output:
@c5 [fn] Form β 2 β1
Use the errors command to list only components with issues. When no app is attached, it exits 1 with No React app is attached rather than reporting a clean tree:
agent-react-devtools errors@c5 [fn] Form β 2 β1
@c8 [fn] Input β3
Block until a condition is met. Useful in scripts or agent workflows where the daemon starts before the app:
agent-react-devtools wait --connected [--timeout 30] # Block until an app connects
agent-react-devtools wait --component App [--timeout 30] # Block until a component appearsExits with code 0 when the condition is met, or code 1 on timeout.
agent-react-devtools profile start [name] # Begin a profiling session
agent-react-devtools profile stop # Stop and collect data
agent-react-devtools profile report <@c1 | id> # Render report for a component
agent-react-devtools profile slow [--limit N] # Slowest components by avg duration
agent-react-devtools profile rerenders [--limit N] # Most re-rendered components
agent-react-devtools profile timeline [--limit N] # Commit timeline
agent-react-devtools profile commit <N | #N> [--limit N] # Single commit detail
agent-react-devtools profile export <file> # Export as React DevTools Profiler JSON
agent-react-devtools profile diff <before.json> <after.json> [--limit N] [--threshold N] # Compare two exportsFor Vite, Next.js, and Create React App, run init in the project root to
patch the appropriate web entry or config:
npx agent-react-devtools initFor standard React Native and Expo projects, init also configures Metro and a
reachable app module. It supports existing CommonJS (.js/.cjs) Metro
configs and creates one when none exists. Use the manual setup below for ESM,
TypeScript, JSON/package-field, custom --config, or ambiguous Metro setups.
To undo these changes:
npx agent-react-devtools uninitAdd a single import as the first line of your entry point (e.g. src/main.tsx):
import "agent-react-devtools/connect";This handles everything: deleting the Vite hook stub, initializing react-devtools-core, and connecting via WebSocket. Your app is never blocked β if the daemon isn't running, it times out after 2 seconds.
For Vite apps, use the plugin instead β no changes to your app code needed:
// vite.config.ts
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { reactDevtools } from "agent-react-devtools/vite";
export default defineConfig({
plugins: [reactDevtools(), react()],
});The plugin only runs in dev mode (vite dev), not in production builds.
Options:
reactDevtools({ port: 8097, host: "localhost" });Before React Native 0.87, standalone DevTools connected automatically without code changes. React Native 0.87 removed that path, so the setup below is now required.
npm install --save-dev agent-react-devtoolsBoth of the following steps are required.
npx agent-react-devtools init performs both steps automatically for the
common CommonJS Metro configurations and entries it recognizes: package.json
main, Expo Router's root layout, bare index.*, and Expo App.*. It patches
all available platform-specific entries when a shared entry does not exist.
The CLI first preflights every target and leaves files unchanged when it cannot
safely identify the config or entry. uninit removes only its marked edits.
For a bare React Native app:
// metro.config.js
const { getDefaultConfig, mergeConfig } = require("@react-native/metro-config");
const { withAgentReactDevTools } = require("agent-react-devtools/metro");
const projectConfig = {};
const config = mergeConfig(getDefaultConfig(__dirname), projectConfig);
module.exports = withAgentReactDevTools(config);For Expo:
// metro.config.js
const { getDefaultConfig } = require("expo/metro-config");
const { withAgentReactDevTools } = require("agent-react-devtools/metro");
const config = getDefaultConfig(__dirname);
module.exports = withAgentReactDevTools(config);Apply withAgentReactDevTools outermost, after all other Metro configuration
and wrappers. It preserves the final config's existing serializer hooks and
adds the agent bootstrap after React Native's own pre-main initialization.
Add this import to a user-owned module that is always reachable from the app
entryβfor example, bare React Native's index.js or Expo Router's
app/_layout.tsx:
import "agent-react-devtools/react-native";The import makes the bootstrap part of Metro's dependency graph. The Metro wrapper then executes that module before application modules; its textual position among imports does not control the execution order.
The client and daemon use port 8097 by default:
# Terminal 1
agent-react-devtools start
# Terminal 2 β restart Metro after changing metro.config.js
npx react-native start
# Expo: npx expo start
# Terminal 3
agent-react-devtools status
agent-react-devtools wait --connected --timeout 30
agent-react-devtools get treeFor an Android device connected over USB, forward the DevTools port before launching the app:
adb reverse tcp:8097 tcp:8097This integration connects only from a native development runtime. Native production builds exit without connecting; browser and default/server imports resolve to no-op modules.
If status reports zero connected apps:
- Confirm both the Metro wrapper and graph import are present.
- Ensure
withAgentReactDevToolswraps the final config, outside other Metro wrappers. - Stop and restart Metro; if its cache is stale, use
--reset-cache(bare) ornpx expo start -c. - Confirm the daemon is listening on 8097 and repeat
adb reversefor Android devices. - Check that the app is a development build.
Configure the two steps above manually when Metro uses ESM (.mjs),
TypeScript, JSON or a package-field configuration; when your app starts Metro
with a custom --config; or when the CLI reports an ambiguous config or entry.
Keep withAgentReactDevTools as the final outermost wrapper.
When using agent-browser to drive the app (e.g. for profiling interactions), you must use headed mode. Headless Chromium does not properly execute the devtools connect script:
agent-browser --session devtools --headed open http://localhost:5173/
agent-react-devtools status # Should show "Apps: 1 connected"Add the skill to your AI coding assistant for richer context:
npx skills add callstackincubator/agent-react-devtoolsThis works with Claude Code, Codex, Cursor, Gemini CLI, GitHub Copilot, Goose, OpenCode, and Windsurf.
You can also install via the Claude Code plugin marketplace:
/plugin marketplace add callstackincubator/agent-react-devtools
/plugin install agent-react-devtools@piotrski
Codex discovers project skills from AGENTS.md. This repo includes one at the root that registers:
packages/agent-react-devtools/skills/react-devtools/SKILL.md
If your assistant does not auto-load skills, add something like this to your project's AGENTS.md, CLAUDE.md, or equivalent agent instructions:
## React Debugging
This project uses agent-react-devtools to inspect the running React app.
- `agent-react-devtools start` β start the daemon
- `agent-react-devtools status` β check if the app is connected
- `agent-react-devtools get tree` β see the component hierarchy
- `agent-react-devtools get tree @c5` β see subtree from a specific component
- `agent-react-devtools get component @c1` β inspect a specific component
- `agent-react-devtools find <Name>` β search for components
- `agent-react-devtools errors` β list components with errors or warnings
- `agent-react-devtools profile start` / `profile stop` / `profile slow` β diagnose render performancebun install # Install dependencies
bun run build # Build
bun run test # Run tests
bun run typecheck # Type checkMIT