In-app Claude Code panel for React. Click a component, type what you want, hit enter — Claude already has the file, line, props, route, and (optionally) a screenshot.
npm i -D claude-code-react-devtoolIn App.tsx:
import { ClaudeCodeDevTool } from 'claude-code-react-devtool'
export default function App() {
return (
<>
<YourApp />
{import.meta.env.DEV && <ClaudeCodeDevTool defaultOpen />}
</>
)
}Add .claude-code-devtool/ to your .gitignore.
In another terminal, from your project root:
npx claude-code-react-devtoolSkip all permission prompts:
npx claude-code-react-devtool --dangerously-skip-permissionsOpen your app. The panel docks at the bottom. Click Pick Component → click an element → type your prompt.
MIT.