[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-devtools":3,"mdc-eyifye-key":33,"related-org-vercel-labs-devtools":2859,"related-repo-vercel-labs-devtools":3025},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"devtools","inspect and debug generative UI components","Drop-in inspector panel for any json-render app. Use when the user wants to debug a generative UI, inspect the spec tree, edit state at runtime, see dispatched actions, follow stream patches live, browse a catalog, or pick DOM elements to find their spec keys. Triggers include \"add devtools\", \"debug json-render\", \"inspect the spec\", \"why is this element not rendering\", \"see the state at runtime\", or requests to tap streams \u002F capture action logs for `@json-render\u002Fdevtools`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19],{"name":13,"slug":14,"type":15},"UI Components","ui-components","tag",{"name":17,"slug":18,"type":15},"Frontend","frontend",{"name":20,"slug":21,"type":15},"Debugging","debugging",15678,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fjson-render","2026-07-17T06:08:35.001228",null,845,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"The Generative UI framework","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fjson-render\u002Ftree\u002FHEAD\u002Fskills\u002Fdevtools","---\nname: devtools\ndescription: Drop-in inspector panel for any json-render app. Use when the user wants to debug a generative UI, inspect the spec tree, edit state at runtime, see dispatched actions, follow stream patches live, browse a catalog, or pick DOM elements to find their spec keys. Triggers include \"add devtools\", \"debug json-render\", \"inspect the spec\", \"why is this element not rendering\", \"see the state at runtime\", or requests to tap streams \u002F capture action logs for `@json-render\u002Fdevtools`.\n---\n\n# @json-render\u002Fdevtools\n\nA floating inspector panel for json-render apps. Framework-agnostic core + per-framework adapters (React, Vue, Svelte, Solid).\n\nProduction-safe: the component renders `null` when `NODE_ENV === \"production\"`.\n\n## Install\n\nInstall the core package plus the adapter that matches the host app's renderer.\n\n```bash\n# React\nnpm install @json-render\u002Fdevtools @json-render\u002Fdevtools-react\n\n# Vue\nnpm install @json-render\u002Fdevtools @json-render\u002Fdevtools-vue\n\n# Svelte\nnpm install @json-render\u002Fdevtools @json-render\u002Fdevtools-svelte\n\n# Solid\nnpm install @json-render\u002Fdevtools @json-render\u002Fdevtools-solid\n```\n\n## Drop-in usage\n\nPlace `\u003CJsonRenderDevtools \u002F>` anywhere inside the existing `\u003CJSONUIProvider>` (or framework equivalent). No other wiring required.\n\n### React\n\n```tsx\nimport { JsonRenderDevtools } from \"@json-render\u002Fdevtools-react\";\n\n\u003CJSONUIProvider registry={registry} handlers={handlers}>\n  \u003CRenderer spec={spec} registry={registry} \u002F>\n  \u003CJsonRenderDevtools spec={spec} catalog={catalog} messages={messages} \u002F>\n\u003C\u002FJSONUIProvider>;\n```\n\n### Vue\n\n```vue\n\u003Cscript setup>\nimport { JsonRenderDevtools } from \"@json-render\u002Fdevtools-vue\";\n\u003C\u002Fscript>\n\n\u003Ctemplate>\n  \u003CJSONUIProvider :registry=\"registry\">\n    \u003CRenderer :spec=\"spec\" :registry=\"registry\" \u002F>\n    \u003CJsonRenderDevtools :spec=\"spec\" :catalog=\"catalog\" :messages=\"messages\" \u002F>\n  \u003C\u002FJSONUIProvider>\n\u003C\u002Ftemplate>\n```\n\n### Svelte\n\n```svelte\n\u003Cscript>\n  import { JsonRenderDevtools } from \"@json-render\u002Fdevtools-svelte\";\n\u003C\u002Fscript>\n\n\u003CJSONUIProvider {registry}>\n  \u003CRenderer {spec} {registry} \u002F>\n  \u003CJsonRenderDevtools {spec} {catalog} {messages} \u002F>\n\u003C\u002FJSONUIProvider>\n```\n\n### Solid\n\n```tsx\nimport { JsonRenderDevtools } from \"@json-render\u002Fdevtools-solid\";\n\n\u003CJSONUIProvider registry={registry}>\n  \u003CRenderer spec={spec()} registry={registry} \u002F>\n  \u003CJsonRenderDevtools\n    spec={spec()}\n    catalog={catalog}\n    messages={messages()}\n  \u002F>\n\u003C\u002FJSONUIProvider>;\n```\n\n## Controls\n\n- Floating toggle appears bottom-right.\n- Hotkey: `Ctrl`\u002F`Cmd` + `Shift` + `J` (configurable via `hotkey` prop).\n- Drawer is resizable; height persists to localStorage.\n\n## Props\n\n- `spec` (`Spec | null`) — current spec.\n- `catalog` (`Catalog | null`) — catalog definition; required for the Catalog panel.\n- `messages` (`UIMessage[]`) — AI SDK `useChat` messages; scanned for spec data parts.\n- `initialOpen` (`boolean`) — start open.\n- `position` (`\"bottom-right\" | \"bottom-left\" | \"right\"`) — dock + toggle corner. `\"bottom-*\"` docks at the bottom; `\"right\"` docks at the right edge full-height (recommended for app-shells that already use `100vh` or fixed bottom bars).\n- `hotkey` (`string | false`) — `\"mod+shift+j\"` by default.\n- `bufferSize` (`number`) — event ring-buffer cap, default 500.\n- `reserveSpace` (`boolean`, default `true`) — when true the panel pushes the host app by applying `padding-bottom` \u002F `padding-right` on `body`. Set to `false` to keep the panel as a pure overlay.\n- `allowDockToggle` (`boolean`, default `true`) — show a toolbar button so the user can flip the panel between bottom-dock and right-dock. User choice persists to `localStorage` and overrides `position` on subsequent mounts. Pass `false` to lock the dock to `position`.\n- `onEvent` (`(DevtoolsEvent) => void`) — optional tap.\n\n## Panels\n\n- **Spec** — element tree rooted at `spec.root`; props\u002Fvisibility\u002Fevents\u002Fwatchers detail; integrated `validateSpec` warnings.\n- **State** — every JSON Pointer path with inline edit via `store.set`.\n- **Actions** — dispatched actions timeline (name, params, result\u002Ferror, duration).\n- **Stream** — spec patches, text chunks, token usage, lifecycle markers grouped by generation.\n- **Catalog** — components + actions declared in the catalog with prop chips.\n\n## Picker (toolbar)\n\nThe element picker is a toolbar button in the panel header (Chrome-DevTools-style), not a tab. Click it to activate pick mode, then click any rendered element in the page — selection jumps to the Spec tab with that element focused. `Esc` cancels.\n\n## Reserved space & docking\n\nThe panel can dock at the bottom or the right edge, and by default the user can flip between the two with a toolbar button (the choice persists to `localStorage`). Set `allowDockToggle={false}` if the host app only works with one dock — the button is hidden and the dock is locked to `position`.\n\nPick an initial dock that fits your layout:\n\n- **Bottom dock (default)** — works best for docs \u002F marketing \u002F content-flow sites and for app shells built with a `height: 100%` chain (`html { height: 100% }` → `body { height: 100% }` → `.app { height: 100% }`). The panel writes its height to `--jr-devtools-offset-bottom` and applies matching `padding-bottom` to `body`, so non-fixed content naturally makes room.\n- **Right dock** (`position=\"right\"`) — recommended for app-shell layouts that use `100vh` or `position: fixed; bottom: 0`. Right docking sidesteps the bottom edge entirely and writes its width to `--jr-devtools-offset-right` instead.\n\nApps that use `100vh`, `position: fixed`, or `position: sticky` can opt specific elements in with the published CSS custom properties:\n\n```css\n.composer   { bottom: var(--jr-devtools-offset-bottom, 0); }\n.sidebar    { right:  var(--jr-devtools-offset-right,  0); }\n.app-shell  { height: calc(100vh - var(--jr-devtools-offset-bottom, 0)); }\n```\n\nIf the automatic body padding causes problems with a particular layout, pass `reserveSpace={false}` to make the panel a pure overlay — the CSS custom properties are still published so you can reserve space manually.\n\n(`--jr-devtools-offset` is kept as a back-compat alias for whichever edge is currently active.)\n\n## Multiple renderers on one page (e.g. a chat)\n\nA single `\u003CJsonRenderDevtools \u002F>` can inspect many `\u003CRenderer \u002F>` instances at once — a chat where each assistant message renders its own spec, a dashboard made of several independent widgets, etc. The recipe:\n\n1. **One top-level `\u003CJSONUIProvider>`** so every renderer shares one state store and one action dispatcher. Devtools lives inside this provider and sees everything through it.\n2. **Per-renderer specs, shared state** — each assistant message renders `\u003CRenderer spec={msgSpec} registry={registry} \u002F>` directly, not wrapped in its own `StateProvider`. State paths from different messages must not collide.\n3. **Namespace state per turn** — when the source is an AI stream, hand the agent a unique `messageId` and require every element key (`\u003Cid>-root`) and state path (`\u002F\u003Cid>\u002Fcount`) to be prefixed with it.\n4. **Pass `spec={latest}` + `messages={all}`** — `spec` drives the Spec panel (usually the newest assistant message's spec), while `messages` feeds the Stream panel with patches from every turn.\n5. **Actions and the picker are already global** — `registerActionObserver` captures dispatches from any `ActionProvider` in the tree, and `data-jr-key` is written by the renderer itself, so Pick works across every rendered element regardless of which message produced it.\n\nSee `examples\u002Fdevtools` for a full AI chat wired this way.\n\n## Imperative API (React only)\n\n```tsx\nimport { useJsonRenderDevtools } from \"@json-render\u002Fdevtools-react\";\n\nconst devtools = useJsonRenderDevtools();\ndevtools?.open();\ndevtools?.toggle();\ndevtools?.recordEvent({ kind: \"stream-text\", at: Date.now(), text: \"hi\" });\n```\n\nReturns `null` in production or before the component mounts.\n\n## Server-side stream tap\n\nCapture spec patches at the API route so events persist server-side or flow into your own telemetry.\n\n```ts\nimport { tapJsonRenderStream, createEventStore } from \"@json-render\u002Fdevtools\";\nimport { pipeJsonRender } from \"@json-render\u002Fcore\";\n\nconst events = createEventStore({ bufferSize: 1000 });\nconst tapped = tapJsonRenderStream(result.toUIMessageStream(), events);\nwriter.merge(pipeJsonRender(tapped));\n```\n\nYAML equivalent: `tapYamlStream`.\n\n## Under the hood\n\n- **Shadow-DOM isolated panel** — the panel's styles never leak into the host app and vice versa.\n- **Ring-buffered event store** — capped log of devtools events (state changes, action dispatches, stream patches, etc.).\n- **Action observer registry** — each framework's `ActionProvider` reports via `notifyActionDispatch` \u002F `notifyActionSettle` in `@json-render\u002Fcore`; devtools subscribes via `registerActionObserver`.\n- **Picker element tagging** — while devtools is mounted, `ElementRenderer` wraps each rendered element in `\u003Cspan data-jr-key=\"...\" style=\"display:contents\">` so the picker can map DOM → spec key. No layout impact.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,53,75,82,87,252,258,279,286,532,538,850,856,927,933,1167,1173,1232,1238,1530,1536,1613,1619,1632,1638,1664,1669,1775,1803,2004,2017,2029,2035,2055,2204,2217,2223,2472,2484,2490,2495,2741,2753,2759,2853],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"json-renderdevtools",[44],{"type":45,"value":46},"text","@json-render\u002Fdevtools",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"A floating inspector panel for json-render apps. Framework-agnostic core + per-framework adapters (React, Vue, Svelte, Solid).",{"type":39,"tag":48,"props":54,"children":55},{},[56,58,65,67,73],{"type":45,"value":57},"Production-safe: the component renders ",{"type":39,"tag":59,"props":60,"children":62},"code",{"className":61},[],[63],{"type":45,"value":64},"null",{"type":45,"value":66}," when ",{"type":39,"tag":59,"props":68,"children":70},{"className":69},[],[71],{"type":45,"value":72},"NODE_ENV === \"production\"",{"type":45,"value":74},".",{"type":39,"tag":76,"props":77,"children":79},"h2",{"id":78},"install",[80],{"type":45,"value":81},"Install",{"type":39,"tag":48,"props":83,"children":84},{},[85],{"type":45,"value":86},"Install the core package plus the adapter that matches the host app's renderer.",{"type":39,"tag":88,"props":89,"children":94},"pre",{"className":90,"code":91,"language":92,"meta":93,"style":93},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# React\nnpm install @json-render\u002Fdevtools @json-render\u002Fdevtools-react\n\n# Vue\nnpm install @json-render\u002Fdevtools @json-render\u002Fdevtools-vue\n\n# Svelte\nnpm install @json-render\u002Fdevtools @json-render\u002Fdevtools-svelte\n\n# Solid\nnpm install @json-render\u002Fdevtools @json-render\u002Fdevtools-solid\n","bash","",[95],{"type":39,"tag":59,"props":96,"children":97},{"__ignoreMap":93},[98,110,136,146,155,176,184,193,214,222,231],{"type":39,"tag":99,"props":100,"children":103},"span",{"class":101,"line":102},"line",1,[104],{"type":39,"tag":99,"props":105,"children":107},{"style":106},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[108],{"type":45,"value":109},"# React\n",{"type":39,"tag":99,"props":111,"children":113},{"class":101,"line":112},2,[114,120,126,131],{"type":39,"tag":99,"props":115,"children":117},{"style":116},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[118],{"type":45,"value":119},"npm",{"type":39,"tag":99,"props":121,"children":123},{"style":122},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[124],{"type":45,"value":125}," install",{"type":39,"tag":99,"props":127,"children":128},{"style":122},[129],{"type":45,"value":130}," @json-render\u002Fdevtools",{"type":39,"tag":99,"props":132,"children":133},{"style":122},[134],{"type":45,"value":135}," @json-render\u002Fdevtools-react\n",{"type":39,"tag":99,"props":137,"children":139},{"class":101,"line":138},3,[140],{"type":39,"tag":99,"props":141,"children":143},{"emptyLinePlaceholder":142},true,[144],{"type":45,"value":145},"\n",{"type":39,"tag":99,"props":147,"children":149},{"class":101,"line":148},4,[150],{"type":39,"tag":99,"props":151,"children":152},{"style":106},[153],{"type":45,"value":154},"# Vue\n",{"type":39,"tag":99,"props":156,"children":158},{"class":101,"line":157},5,[159,163,167,171],{"type":39,"tag":99,"props":160,"children":161},{"style":116},[162],{"type":45,"value":119},{"type":39,"tag":99,"props":164,"children":165},{"style":122},[166],{"type":45,"value":125},{"type":39,"tag":99,"props":168,"children":169},{"style":122},[170],{"type":45,"value":130},{"type":39,"tag":99,"props":172,"children":173},{"style":122},[174],{"type":45,"value":175}," @json-render\u002Fdevtools-vue\n",{"type":39,"tag":99,"props":177,"children":179},{"class":101,"line":178},6,[180],{"type":39,"tag":99,"props":181,"children":182},{"emptyLinePlaceholder":142},[183],{"type":45,"value":145},{"type":39,"tag":99,"props":185,"children":187},{"class":101,"line":186},7,[188],{"type":39,"tag":99,"props":189,"children":190},{"style":106},[191],{"type":45,"value":192},"# Svelte\n",{"type":39,"tag":99,"props":194,"children":196},{"class":101,"line":195},8,[197,201,205,209],{"type":39,"tag":99,"props":198,"children":199},{"style":116},[200],{"type":45,"value":119},{"type":39,"tag":99,"props":202,"children":203},{"style":122},[204],{"type":45,"value":125},{"type":39,"tag":99,"props":206,"children":207},{"style":122},[208],{"type":45,"value":130},{"type":39,"tag":99,"props":210,"children":211},{"style":122},[212],{"type":45,"value":213}," @json-render\u002Fdevtools-svelte\n",{"type":39,"tag":99,"props":215,"children":217},{"class":101,"line":216},9,[218],{"type":39,"tag":99,"props":219,"children":220},{"emptyLinePlaceholder":142},[221],{"type":45,"value":145},{"type":39,"tag":99,"props":223,"children":225},{"class":101,"line":224},10,[226],{"type":39,"tag":99,"props":227,"children":228},{"style":106},[229],{"type":45,"value":230},"# Solid\n",{"type":39,"tag":99,"props":232,"children":234},{"class":101,"line":233},11,[235,239,243,247],{"type":39,"tag":99,"props":236,"children":237},{"style":116},[238],{"type":45,"value":119},{"type":39,"tag":99,"props":240,"children":241},{"style":122},[242],{"type":45,"value":125},{"type":39,"tag":99,"props":244,"children":245},{"style":122},[246],{"type":45,"value":130},{"type":39,"tag":99,"props":248,"children":249},{"style":122},[250],{"type":45,"value":251}," @json-render\u002Fdevtools-solid\n",{"type":39,"tag":76,"props":253,"children":255},{"id":254},"drop-in-usage",[256],{"type":45,"value":257},"Drop-in usage",{"type":39,"tag":48,"props":259,"children":260},{},[261,263,269,271,277],{"type":45,"value":262},"Place ",{"type":39,"tag":59,"props":264,"children":266},{"className":265},[],[267],{"type":45,"value":268},"\u003CJsonRenderDevtools \u002F>",{"type":45,"value":270}," anywhere inside the existing ",{"type":39,"tag":59,"props":272,"children":274},{"className":273},[],[275],{"type":45,"value":276},"\u003CJSONUIProvider>",{"type":45,"value":278}," (or framework equivalent). No other wiring required.",{"type":39,"tag":280,"props":281,"children":283},"h3",{"id":282},"react",[284],{"type":45,"value":285},"React",{"type":39,"tag":88,"props":287,"children":291},{"className":288,"code":289,"language":290,"meta":93,"style":93},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { JsonRenderDevtools } from \"@json-render\u002Fdevtools-react\";\n\n\u003CJSONUIProvider registry={registry} handlers={handlers}>\n  \u003CRenderer spec={spec} registry={registry} \u002F>\n  \u003CJsonRenderDevtools spec={spec} catalog={catalog} messages={messages} \u002F>\n\u003C\u002FJSONUIProvider>;\n","tsx",[292],{"type":39,"tag":59,"props":293,"children":294},{"__ignoreMap":93},[295,346,353,405,453,515],{"type":39,"tag":99,"props":296,"children":297},{"class":101,"line":102},[298,304,310,316,321,326,331,336,341],{"type":39,"tag":99,"props":299,"children":301},{"style":300},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[302],{"type":45,"value":303},"import",{"type":39,"tag":99,"props":305,"children":307},{"style":306},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[308],{"type":45,"value":309}," {",{"type":39,"tag":99,"props":311,"children":313},{"style":312},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[314],{"type":45,"value":315}," JsonRenderDevtools",{"type":39,"tag":99,"props":317,"children":318},{"style":306},[319],{"type":45,"value":320}," }",{"type":39,"tag":99,"props":322,"children":323},{"style":300},[324],{"type":45,"value":325}," from",{"type":39,"tag":99,"props":327,"children":328},{"style":306},[329],{"type":45,"value":330}," \"",{"type":39,"tag":99,"props":332,"children":333},{"style":122},[334],{"type":45,"value":335},"@json-render\u002Fdevtools-react",{"type":39,"tag":99,"props":337,"children":338},{"style":306},[339],{"type":45,"value":340},"\"",{"type":39,"tag":99,"props":342,"children":343},{"style":306},[344],{"type":45,"value":345},";\n",{"type":39,"tag":99,"props":347,"children":348},{"class":101,"line":112},[349],{"type":39,"tag":99,"props":350,"children":351},{"emptyLinePlaceholder":142},[352],{"type":45,"value":145},{"type":39,"tag":99,"props":354,"children":355},{"class":101,"line":138},[356,361,366,372,377,382,387,392,396,400],{"type":39,"tag":99,"props":357,"children":358},{"style":306},[359],{"type":45,"value":360},"\u003C",{"type":39,"tag":99,"props":362,"children":363},{"style":116},[364],{"type":45,"value":365},"JSONUIProvider",{"type":39,"tag":99,"props":367,"children":369},{"style":368},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[370],{"type":45,"value":371}," registry",{"type":39,"tag":99,"props":373,"children":374},{"style":306},[375],{"type":45,"value":376},"={",{"type":39,"tag":99,"props":378,"children":379},{"style":312},[380],{"type":45,"value":381},"registry",{"type":39,"tag":99,"props":383,"children":384},{"style":306},[385],{"type":45,"value":386},"} ",{"type":39,"tag":99,"props":388,"children":389},{"style":368},[390],{"type":45,"value":391},"handlers",{"type":39,"tag":99,"props":393,"children":394},{"style":306},[395],{"type":45,"value":376},{"type":39,"tag":99,"props":397,"children":398},{"style":312},[399],{"type":45,"value":391},{"type":39,"tag":99,"props":401,"children":402},{"style":306},[403],{"type":45,"value":404},"}>\n",{"type":39,"tag":99,"props":406,"children":407},{"class":101,"line":148},[408,413,418,423,427,432,436,440,444,448],{"type":39,"tag":99,"props":409,"children":410},{"style":306},[411],{"type":45,"value":412},"  \u003C",{"type":39,"tag":99,"props":414,"children":415},{"style":116},[416],{"type":45,"value":417},"Renderer",{"type":39,"tag":99,"props":419,"children":420},{"style":368},[421],{"type":45,"value":422}," spec",{"type":39,"tag":99,"props":424,"children":425},{"style":306},[426],{"type":45,"value":376},{"type":39,"tag":99,"props":428,"children":429},{"style":312},[430],{"type":45,"value":431},"spec",{"type":39,"tag":99,"props":433,"children":434},{"style":306},[435],{"type":45,"value":386},{"type":39,"tag":99,"props":437,"children":438},{"style":368},[439],{"type":45,"value":381},{"type":39,"tag":99,"props":441,"children":442},{"style":306},[443],{"type":45,"value":376},{"type":39,"tag":99,"props":445,"children":446},{"style":312},[447],{"type":45,"value":381},{"type":39,"tag":99,"props":449,"children":450},{"style":306},[451],{"type":45,"value":452},"} \u002F>\n",{"type":39,"tag":99,"props":454,"children":455},{"class":101,"line":157},[456,460,465,469,473,477,481,486,490,494,498,503,507,511],{"type":39,"tag":99,"props":457,"children":458},{"style":306},[459],{"type":45,"value":412},{"type":39,"tag":99,"props":461,"children":462},{"style":116},[463],{"type":45,"value":464},"JsonRenderDevtools",{"type":39,"tag":99,"props":466,"children":467},{"style":368},[468],{"type":45,"value":422},{"type":39,"tag":99,"props":470,"children":471},{"style":306},[472],{"type":45,"value":376},{"type":39,"tag":99,"props":474,"children":475},{"style":312},[476],{"type":45,"value":431},{"type":39,"tag":99,"props":478,"children":479},{"style":306},[480],{"type":45,"value":386},{"type":39,"tag":99,"props":482,"children":483},{"style":368},[484],{"type":45,"value":485},"catalog",{"type":39,"tag":99,"props":487,"children":488},{"style":306},[489],{"type":45,"value":376},{"type":39,"tag":99,"props":491,"children":492},{"style":312},[493],{"type":45,"value":485},{"type":39,"tag":99,"props":495,"children":496},{"style":306},[497],{"type":45,"value":386},{"type":39,"tag":99,"props":499,"children":500},{"style":368},[501],{"type":45,"value":502},"messages",{"type":39,"tag":99,"props":504,"children":505},{"style":306},[506],{"type":45,"value":376},{"type":39,"tag":99,"props":508,"children":509},{"style":312},[510],{"type":45,"value":502},{"type":39,"tag":99,"props":512,"children":513},{"style":306},[514],{"type":45,"value":452},{"type":39,"tag":99,"props":516,"children":517},{"class":101,"line":178},[518,523,527],{"type":39,"tag":99,"props":519,"children":520},{"style":306},[521],{"type":45,"value":522},"\u003C\u002F",{"type":39,"tag":99,"props":524,"children":525},{"style":116},[526],{"type":45,"value":365},{"type":39,"tag":99,"props":528,"children":529},{"style":306},[530],{"type":45,"value":531},">;\n",{"type":39,"tag":280,"props":533,"children":535},{"id":534},"vue",[536],{"type":45,"value":537},"Vue",{"type":39,"tag":88,"props":539,"children":542},{"className":540,"code":541,"language":534,"meta":93,"style":93},"language-vue shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cscript setup>\nimport { JsonRenderDevtools } from \"@json-render\u002Fdevtools-vue\";\n\u003C\u002Fscript>\n\n\u003Ctemplate>\n  \u003CJSONUIProvider :registry=\"registry\">\n    \u003CRenderer :spec=\"spec\" :registry=\"registry\" \u002F>\n    \u003CJsonRenderDevtools :spec=\"spec\" :catalog=\"catalog\" :messages=\"messages\" \u002F>\n  \u003C\u002FJSONUIProvider>\n\u003C\u002Ftemplate>\n",[543],{"type":39,"tag":59,"props":544,"children":545},{"__ignoreMap":93},[546,569,609,624,631,647,684,742,819,835],{"type":39,"tag":99,"props":547,"children":548},{"class":101,"line":102},[549,553,559,564],{"type":39,"tag":99,"props":550,"children":551},{"style":306},[552],{"type":45,"value":360},{"type":39,"tag":99,"props":554,"children":556},{"style":555},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[557],{"type":45,"value":558},"script",{"type":39,"tag":99,"props":560,"children":561},{"style":368},[562],{"type":45,"value":563}," setup",{"type":39,"tag":99,"props":565,"children":566},{"style":306},[567],{"type":45,"value":568},">\n",{"type":39,"tag":99,"props":570,"children":571},{"class":101,"line":112},[572,576,580,584,588,592,596,601,605],{"type":39,"tag":99,"props":573,"children":574},{"style":300},[575],{"type":45,"value":303},{"type":39,"tag":99,"props":577,"children":578},{"style":306},[579],{"type":45,"value":309},{"type":39,"tag":99,"props":581,"children":582},{"style":312},[583],{"type":45,"value":315},{"type":39,"tag":99,"props":585,"children":586},{"style":306},[587],{"type":45,"value":320},{"type":39,"tag":99,"props":589,"children":590},{"style":300},[591],{"type":45,"value":325},{"type":39,"tag":99,"props":593,"children":594},{"style":306},[595],{"type":45,"value":330},{"type":39,"tag":99,"props":597,"children":598},{"style":122},[599],{"type":45,"value":600},"@json-render\u002Fdevtools-vue",{"type":39,"tag":99,"props":602,"children":603},{"style":306},[604],{"type":45,"value":340},{"type":39,"tag":99,"props":606,"children":607},{"style":306},[608],{"type":45,"value":345},{"type":39,"tag":99,"props":610,"children":611},{"class":101,"line":138},[612,616,620],{"type":39,"tag":99,"props":613,"children":614},{"style":306},[615],{"type":45,"value":522},{"type":39,"tag":99,"props":617,"children":618},{"style":555},[619],{"type":45,"value":558},{"type":39,"tag":99,"props":621,"children":622},{"style":306},[623],{"type":45,"value":568},{"type":39,"tag":99,"props":625,"children":626},{"class":101,"line":148},[627],{"type":39,"tag":99,"props":628,"children":629},{"emptyLinePlaceholder":142},[630],{"type":45,"value":145},{"type":39,"tag":99,"props":632,"children":633},{"class":101,"line":157},[634,638,643],{"type":39,"tag":99,"props":635,"children":636},{"style":306},[637],{"type":45,"value":360},{"type":39,"tag":99,"props":639,"children":640},{"style":555},[641],{"type":45,"value":642},"template",{"type":39,"tag":99,"props":644,"children":645},{"style":306},[646],{"type":45,"value":568},{"type":39,"tag":99,"props":648,"children":649},{"class":101,"line":178},[650,654,658,663,668,672,676,680],{"type":39,"tag":99,"props":651,"children":652},{"style":306},[653],{"type":45,"value":412},{"type":39,"tag":99,"props":655,"children":656},{"style":555},[657],{"type":45,"value":365},{"type":39,"tag":99,"props":659,"children":660},{"style":368},[661],{"type":45,"value":662}," :registry",{"type":39,"tag":99,"props":664,"children":665},{"style":306},[666],{"type":45,"value":667},"=",{"type":39,"tag":99,"props":669,"children":670},{"style":306},[671],{"type":45,"value":340},{"type":39,"tag":99,"props":673,"children":674},{"style":122},[675],{"type":45,"value":381},{"type":39,"tag":99,"props":677,"children":678},{"style":306},[679],{"type":45,"value":340},{"type":39,"tag":99,"props":681,"children":682},{"style":306},[683],{"type":45,"value":568},{"type":39,"tag":99,"props":685,"children":686},{"class":101,"line":186},[687,692,696,701,705,709,713,717,721,725,729,733,737],{"type":39,"tag":99,"props":688,"children":689},{"style":306},[690],{"type":45,"value":691},"    \u003C",{"type":39,"tag":99,"props":693,"children":694},{"style":555},[695],{"type":45,"value":417},{"type":39,"tag":99,"props":697,"children":698},{"style":368},[699],{"type":45,"value":700}," :spec",{"type":39,"tag":99,"props":702,"children":703},{"style":306},[704],{"type":45,"value":667},{"type":39,"tag":99,"props":706,"children":707},{"style":306},[708],{"type":45,"value":340},{"type":39,"tag":99,"props":710,"children":711},{"style":122},[712],{"type":45,"value":431},{"type":39,"tag":99,"props":714,"children":715},{"style":306},[716],{"type":45,"value":340},{"type":39,"tag":99,"props":718,"children":719},{"style":368},[720],{"type":45,"value":662},{"type":39,"tag":99,"props":722,"children":723},{"style":306},[724],{"type":45,"value":667},{"type":39,"tag":99,"props":726,"children":727},{"style":306},[728],{"type":45,"value":340},{"type":39,"tag":99,"props":730,"children":731},{"style":122},[732],{"type":45,"value":381},{"type":39,"tag":99,"props":734,"children":735},{"style":306},[736],{"type":45,"value":340},{"type":39,"tag":99,"props":738,"children":739},{"style":306},[740],{"type":45,"value":741}," \u002F>\n",{"type":39,"tag":99,"props":743,"children":744},{"class":101,"line":195},[745,749,753,757,761,765,769,773,778,782,786,790,794,799,803,807,811,815],{"type":39,"tag":99,"props":746,"children":747},{"style":306},[748],{"type":45,"value":691},{"type":39,"tag":99,"props":750,"children":751},{"style":555},[752],{"type":45,"value":464},{"type":39,"tag":99,"props":754,"children":755},{"style":368},[756],{"type":45,"value":700},{"type":39,"tag":99,"props":758,"children":759},{"style":306},[760],{"type":45,"value":667},{"type":39,"tag":99,"props":762,"children":763},{"style":306},[764],{"type":45,"value":340},{"type":39,"tag":99,"props":766,"children":767},{"style":122},[768],{"type":45,"value":431},{"type":39,"tag":99,"props":770,"children":771},{"style":306},[772],{"type":45,"value":340},{"type":39,"tag":99,"props":774,"children":775},{"style":368},[776],{"type":45,"value":777}," :catalog",{"type":39,"tag":99,"props":779,"children":780},{"style":306},[781],{"type":45,"value":667},{"type":39,"tag":99,"props":783,"children":784},{"style":306},[785],{"type":45,"value":340},{"type":39,"tag":99,"props":787,"children":788},{"style":122},[789],{"type":45,"value":485},{"type":39,"tag":99,"props":791,"children":792},{"style":306},[793],{"type":45,"value":340},{"type":39,"tag":99,"props":795,"children":796},{"style":368},[797],{"type":45,"value":798}," :messages",{"type":39,"tag":99,"props":800,"children":801},{"style":306},[802],{"type":45,"value":667},{"type":39,"tag":99,"props":804,"children":805},{"style":306},[806],{"type":45,"value":340},{"type":39,"tag":99,"props":808,"children":809},{"style":122},[810],{"type":45,"value":502},{"type":39,"tag":99,"props":812,"children":813},{"style":306},[814],{"type":45,"value":340},{"type":39,"tag":99,"props":816,"children":817},{"style":306},[818],{"type":45,"value":741},{"type":39,"tag":99,"props":820,"children":821},{"class":101,"line":216},[822,827,831],{"type":39,"tag":99,"props":823,"children":824},{"style":306},[825],{"type":45,"value":826},"  \u003C\u002F",{"type":39,"tag":99,"props":828,"children":829},{"style":555},[830],{"type":45,"value":365},{"type":39,"tag":99,"props":832,"children":833},{"style":306},[834],{"type":45,"value":568},{"type":39,"tag":99,"props":836,"children":837},{"class":101,"line":224},[838,842,846],{"type":39,"tag":99,"props":839,"children":840},{"style":306},[841],{"type":45,"value":522},{"type":39,"tag":99,"props":843,"children":844},{"style":555},[845],{"type":45,"value":642},{"type":39,"tag":99,"props":847,"children":848},{"style":306},[849],{"type":45,"value":568},{"type":39,"tag":280,"props":851,"children":853},{"id":852},"svelte",[854],{"type":45,"value":855},"Svelte",{"type":39,"tag":88,"props":857,"children":860},{"className":858,"code":859,"language":852,"meta":93,"style":93},"language-svelte shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cscript>\n  import { JsonRenderDevtools } from \"@json-render\u002Fdevtools-svelte\";\n\u003C\u002Fscript>\n\n\u003CJSONUIProvider {registry}>\n  \u003CRenderer {spec} {registry} \u002F>\n  \u003CJsonRenderDevtools {spec} {catalog} {messages} \u002F>\n\u003C\u002FJSONUIProvider>\n",[861],{"type":39,"tag":59,"props":862,"children":863},{"__ignoreMap":93},[864,872,880,888,895,903,911,919],{"type":39,"tag":99,"props":865,"children":866},{"class":101,"line":102},[867],{"type":39,"tag":99,"props":868,"children":869},{},[870],{"type":45,"value":871},"\u003Cscript>\n",{"type":39,"tag":99,"props":873,"children":874},{"class":101,"line":112},[875],{"type":39,"tag":99,"props":876,"children":877},{},[878],{"type":45,"value":879},"  import { JsonRenderDevtools } from \"@json-render\u002Fdevtools-svelte\";\n",{"type":39,"tag":99,"props":881,"children":882},{"class":101,"line":138},[883],{"type":39,"tag":99,"props":884,"children":885},{},[886],{"type":45,"value":887},"\u003C\u002Fscript>\n",{"type":39,"tag":99,"props":889,"children":890},{"class":101,"line":148},[891],{"type":39,"tag":99,"props":892,"children":893},{"emptyLinePlaceholder":142},[894],{"type":45,"value":145},{"type":39,"tag":99,"props":896,"children":897},{"class":101,"line":157},[898],{"type":39,"tag":99,"props":899,"children":900},{},[901],{"type":45,"value":902},"\u003CJSONUIProvider {registry}>\n",{"type":39,"tag":99,"props":904,"children":905},{"class":101,"line":178},[906],{"type":39,"tag":99,"props":907,"children":908},{},[909],{"type":45,"value":910},"  \u003CRenderer {spec} {registry} \u002F>\n",{"type":39,"tag":99,"props":912,"children":913},{"class":101,"line":186},[914],{"type":39,"tag":99,"props":915,"children":916},{},[917],{"type":45,"value":918},"  \u003CJsonRenderDevtools {spec} {catalog} {messages} \u002F>\n",{"type":39,"tag":99,"props":920,"children":921},{"class":101,"line":195},[922],{"type":39,"tag":99,"props":923,"children":924},{},[925],{"type":45,"value":926},"\u003C\u002FJSONUIProvider>\n",{"type":39,"tag":280,"props":928,"children":930},{"id":929},"solid",[931],{"type":45,"value":932},"Solid",{"type":39,"tag":88,"props":934,"children":936},{"className":288,"code":935,"language":290,"meta":93,"style":93},"import { JsonRenderDevtools } from \"@json-render\u002Fdevtools-solid\";\n\n\u003CJSONUIProvider registry={registry}>\n  \u003CRenderer spec={spec()} registry={registry} \u002F>\n  \u003CJsonRenderDevtools\n    spec={spec()}\n    catalog={catalog}\n    messages={messages()}\n  \u002F>\n\u003C\u002FJSONUIProvider>;\n",[937],{"type":39,"tag":59,"props":938,"children":939},{"__ignoreMap":93},[940,980,987,1014,1063,1075,1100,1120,1144,1152],{"type":39,"tag":99,"props":941,"children":942},{"class":101,"line":102},[943,947,951,955,959,963,967,972,976],{"type":39,"tag":99,"props":944,"children":945},{"style":300},[946],{"type":45,"value":303},{"type":39,"tag":99,"props":948,"children":949},{"style":306},[950],{"type":45,"value":309},{"type":39,"tag":99,"props":952,"children":953},{"style":312},[954],{"type":45,"value":315},{"type":39,"tag":99,"props":956,"children":957},{"style":306},[958],{"type":45,"value":320},{"type":39,"tag":99,"props":960,"children":961},{"style":300},[962],{"type":45,"value":325},{"type":39,"tag":99,"props":964,"children":965},{"style":306},[966],{"type":45,"value":330},{"type":39,"tag":99,"props":968,"children":969},{"style":122},[970],{"type":45,"value":971},"@json-render\u002Fdevtools-solid",{"type":39,"tag":99,"props":973,"children":974},{"style":306},[975],{"type":45,"value":340},{"type":39,"tag":99,"props":977,"children":978},{"style":306},[979],{"type":45,"value":345},{"type":39,"tag":99,"props":981,"children":982},{"class":101,"line":112},[983],{"type":39,"tag":99,"props":984,"children":985},{"emptyLinePlaceholder":142},[986],{"type":45,"value":145},{"type":39,"tag":99,"props":988,"children":989},{"class":101,"line":138},[990,994,998,1002,1006,1010],{"type":39,"tag":99,"props":991,"children":992},{"style":306},[993],{"type":45,"value":360},{"type":39,"tag":99,"props":995,"children":996},{"style":116},[997],{"type":45,"value":365},{"type":39,"tag":99,"props":999,"children":1000},{"style":368},[1001],{"type":45,"value":371},{"type":39,"tag":99,"props":1003,"children":1004},{"style":306},[1005],{"type":45,"value":376},{"type":39,"tag":99,"props":1007,"children":1008},{"style":312},[1009],{"type":45,"value":381},{"type":39,"tag":99,"props":1011,"children":1012},{"style":306},[1013],{"type":45,"value":404},{"type":39,"tag":99,"props":1015,"children":1016},{"class":101,"line":148},[1017,1021,1025,1029,1033,1038,1043,1047,1051,1055,1059],{"type":39,"tag":99,"props":1018,"children":1019},{"style":306},[1020],{"type":45,"value":412},{"type":39,"tag":99,"props":1022,"children":1023},{"style":116},[1024],{"type":45,"value":417},{"type":39,"tag":99,"props":1026,"children":1027},{"style":368},[1028],{"type":45,"value":422},{"type":39,"tag":99,"props":1030,"children":1031},{"style":306},[1032],{"type":45,"value":376},{"type":39,"tag":99,"props":1034,"children":1036},{"style":1035},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1037],{"type":45,"value":431},{"type":39,"tag":99,"props":1039,"children":1040},{"style":312},[1041],{"type":45,"value":1042},"()",{"type":39,"tag":99,"props":1044,"children":1045},{"style":306},[1046],{"type":45,"value":386},{"type":39,"tag":99,"props":1048,"children":1049},{"style":368},[1050],{"type":45,"value":381},{"type":39,"tag":99,"props":1052,"children":1053},{"style":306},[1054],{"type":45,"value":376},{"type":39,"tag":99,"props":1056,"children":1057},{"style":312},[1058],{"type":45,"value":381},{"type":39,"tag":99,"props":1060,"children":1061},{"style":306},[1062],{"type":45,"value":452},{"type":39,"tag":99,"props":1064,"children":1065},{"class":101,"line":157},[1066,1070],{"type":39,"tag":99,"props":1067,"children":1068},{"style":306},[1069],{"type":45,"value":412},{"type":39,"tag":99,"props":1071,"children":1072},{"style":116},[1073],{"type":45,"value":1074},"JsonRenderDevtools\n",{"type":39,"tag":99,"props":1076,"children":1077},{"class":101,"line":178},[1078,1083,1087,1091,1095],{"type":39,"tag":99,"props":1079,"children":1080},{"style":368},[1081],{"type":45,"value":1082},"    spec",{"type":39,"tag":99,"props":1084,"children":1085},{"style":306},[1086],{"type":45,"value":376},{"type":39,"tag":99,"props":1088,"children":1089},{"style":1035},[1090],{"type":45,"value":431},{"type":39,"tag":99,"props":1092,"children":1093},{"style":312},[1094],{"type":45,"value":1042},{"type":39,"tag":99,"props":1096,"children":1097},{"style":306},[1098],{"type":45,"value":1099},"}\n",{"type":39,"tag":99,"props":1101,"children":1102},{"class":101,"line":186},[1103,1108,1112,1116],{"type":39,"tag":99,"props":1104,"children":1105},{"style":368},[1106],{"type":45,"value":1107},"    catalog",{"type":39,"tag":99,"props":1109,"children":1110},{"style":306},[1111],{"type":45,"value":376},{"type":39,"tag":99,"props":1113,"children":1114},{"style":312},[1115],{"type":45,"value":485},{"type":39,"tag":99,"props":1117,"children":1118},{"style":306},[1119],{"type":45,"value":1099},{"type":39,"tag":99,"props":1121,"children":1122},{"class":101,"line":195},[1123,1128,1132,1136,1140],{"type":39,"tag":99,"props":1124,"children":1125},{"style":368},[1126],{"type":45,"value":1127},"    messages",{"type":39,"tag":99,"props":1129,"children":1130},{"style":306},[1131],{"type":45,"value":376},{"type":39,"tag":99,"props":1133,"children":1134},{"style":1035},[1135],{"type":45,"value":502},{"type":39,"tag":99,"props":1137,"children":1138},{"style":312},[1139],{"type":45,"value":1042},{"type":39,"tag":99,"props":1141,"children":1142},{"style":306},[1143],{"type":45,"value":1099},{"type":39,"tag":99,"props":1145,"children":1146},{"class":101,"line":216},[1147],{"type":39,"tag":99,"props":1148,"children":1149},{"style":306},[1150],{"type":45,"value":1151},"  \u002F>\n",{"type":39,"tag":99,"props":1153,"children":1154},{"class":101,"line":224},[1155,1159,1163],{"type":39,"tag":99,"props":1156,"children":1157},{"style":306},[1158],{"type":45,"value":522},{"type":39,"tag":99,"props":1160,"children":1161},{"style":116},[1162],{"type":45,"value":365},{"type":39,"tag":99,"props":1164,"children":1165},{"style":306},[1166],{"type":45,"value":531},{"type":39,"tag":76,"props":1168,"children":1170},{"id":1169},"controls",[1171],{"type":45,"value":1172},"Controls",{"type":39,"tag":1174,"props":1175,"children":1176},"ul",{},[1177,1183,1227],{"type":39,"tag":1178,"props":1179,"children":1180},"li",{},[1181],{"type":45,"value":1182},"Floating toggle appears bottom-right.",{"type":39,"tag":1178,"props":1184,"children":1185},{},[1186,1188,1194,1196,1202,1204,1210,1211,1217,1219,1225],{"type":45,"value":1187},"Hotkey: ",{"type":39,"tag":59,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":45,"value":1193},"Ctrl",{"type":45,"value":1195},"\u002F",{"type":39,"tag":59,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":45,"value":1201},"Cmd",{"type":45,"value":1203}," + ",{"type":39,"tag":59,"props":1205,"children":1207},{"className":1206},[],[1208],{"type":45,"value":1209},"Shift",{"type":45,"value":1203},{"type":39,"tag":59,"props":1212,"children":1214},{"className":1213},[],[1215],{"type":45,"value":1216},"J",{"type":45,"value":1218}," (configurable via ",{"type":39,"tag":59,"props":1220,"children":1222},{"className":1221},[],[1223],{"type":45,"value":1224},"hotkey",{"type":45,"value":1226}," prop).",{"type":39,"tag":1178,"props":1228,"children":1229},{},[1230],{"type":45,"value":1231},"Drawer is resizable; height persists to localStorage.",{"type":39,"tag":76,"props":1233,"children":1235},{"id":1234},"props",[1236],{"type":45,"value":1237},"Props",{"type":39,"tag":1174,"props":1239,"children":1240},{},[1241,1259,1276,1301,1319,1361,1386,1404,1461,1512],{"type":39,"tag":1178,"props":1242,"children":1243},{},[1244,1249,1251,1257],{"type":39,"tag":59,"props":1245,"children":1247},{"className":1246},[],[1248],{"type":45,"value":431},{"type":45,"value":1250}," (",{"type":39,"tag":59,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":45,"value":1256},"Spec | null",{"type":45,"value":1258},") — current spec.",{"type":39,"tag":1178,"props":1260,"children":1261},{},[1262,1267,1268,1274],{"type":39,"tag":59,"props":1263,"children":1265},{"className":1264},[],[1266],{"type":45,"value":485},{"type":45,"value":1250},{"type":39,"tag":59,"props":1269,"children":1271},{"className":1270},[],[1272],{"type":45,"value":1273},"Catalog | null",{"type":45,"value":1275},") — catalog definition; required for the Catalog panel.",{"type":39,"tag":1178,"props":1277,"children":1278},{},[1279,1284,1285,1291,1293,1299],{"type":39,"tag":59,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":45,"value":502},{"type":45,"value":1250},{"type":39,"tag":59,"props":1286,"children":1288},{"className":1287},[],[1289],{"type":45,"value":1290},"UIMessage[]",{"type":45,"value":1292},") — AI SDK ",{"type":39,"tag":59,"props":1294,"children":1296},{"className":1295},[],[1297],{"type":45,"value":1298},"useChat",{"type":45,"value":1300}," messages; scanned for spec data parts.",{"type":39,"tag":1178,"props":1302,"children":1303},{},[1304,1310,1311,1317],{"type":39,"tag":59,"props":1305,"children":1307},{"className":1306},[],[1308],{"type":45,"value":1309},"initialOpen",{"type":45,"value":1250},{"type":39,"tag":59,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":45,"value":1316},"boolean",{"type":45,"value":1318},") — start open.",{"type":39,"tag":1178,"props":1320,"children":1321},{},[1322,1328,1329,1335,1337,1343,1345,1351,1353,1359],{"type":39,"tag":59,"props":1323,"children":1325},{"className":1324},[],[1326],{"type":45,"value":1327},"position",{"type":45,"value":1250},{"type":39,"tag":59,"props":1330,"children":1332},{"className":1331},[],[1333],{"type":45,"value":1334},"\"bottom-right\" | \"bottom-left\" | \"right\"",{"type":45,"value":1336},") — dock + toggle corner. ",{"type":39,"tag":59,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":45,"value":1342},"\"bottom-*\"",{"type":45,"value":1344}," docks at the bottom; ",{"type":39,"tag":59,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":45,"value":1350},"\"right\"",{"type":45,"value":1352}," docks at the right edge full-height (recommended for app-shells that already use ",{"type":39,"tag":59,"props":1354,"children":1356},{"className":1355},[],[1357],{"type":45,"value":1358},"100vh",{"type":45,"value":1360}," or fixed bottom bars).",{"type":39,"tag":1178,"props":1362,"children":1363},{},[1364,1369,1370,1376,1378,1384],{"type":39,"tag":59,"props":1365,"children":1367},{"className":1366},[],[1368],{"type":45,"value":1224},{"type":45,"value":1250},{"type":39,"tag":59,"props":1371,"children":1373},{"className":1372},[],[1374],{"type":45,"value":1375},"string | false",{"type":45,"value":1377},") — ",{"type":39,"tag":59,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":45,"value":1383},"\"mod+shift+j\"",{"type":45,"value":1385}," by default.",{"type":39,"tag":1178,"props":1387,"children":1388},{},[1389,1395,1396,1402],{"type":39,"tag":59,"props":1390,"children":1392},{"className":1391},[],[1393],{"type":45,"value":1394},"bufferSize",{"type":45,"value":1250},{"type":39,"tag":59,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":45,"value":1401},"number",{"type":45,"value":1403},") — event ring-buffer cap, default 500.",{"type":39,"tag":1178,"props":1405,"children":1406},{},[1407,1413,1414,1419,1421,1427,1429,1435,1437,1443,1445,1451,1453,1459],{"type":39,"tag":59,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":45,"value":1412},"reserveSpace",{"type":45,"value":1250},{"type":39,"tag":59,"props":1415,"children":1417},{"className":1416},[],[1418],{"type":45,"value":1316},{"type":45,"value":1420},", default ",{"type":39,"tag":59,"props":1422,"children":1424},{"className":1423},[],[1425],{"type":45,"value":1426},"true",{"type":45,"value":1428},") — when true the panel pushes the host app by applying ",{"type":39,"tag":59,"props":1430,"children":1432},{"className":1431},[],[1433],{"type":45,"value":1434},"padding-bottom",{"type":45,"value":1436}," \u002F ",{"type":39,"tag":59,"props":1438,"children":1440},{"className":1439},[],[1441],{"type":45,"value":1442},"padding-right",{"type":45,"value":1444}," on ",{"type":39,"tag":59,"props":1446,"children":1448},{"className":1447},[],[1449],{"type":45,"value":1450},"body",{"type":45,"value":1452},". Set to ",{"type":39,"tag":59,"props":1454,"children":1456},{"className":1455},[],[1457],{"type":45,"value":1458},"false",{"type":45,"value":1460}," to keep the panel as a pure overlay.",{"type":39,"tag":1178,"props":1462,"children":1463},{},[1464,1470,1471,1476,1477,1482,1484,1490,1492,1497,1499,1504,1506,1511],{"type":39,"tag":59,"props":1465,"children":1467},{"className":1466},[],[1468],{"type":45,"value":1469},"allowDockToggle",{"type":45,"value":1250},{"type":39,"tag":59,"props":1472,"children":1474},{"className":1473},[],[1475],{"type":45,"value":1316},{"type":45,"value":1420},{"type":39,"tag":59,"props":1478,"children":1480},{"className":1479},[],[1481],{"type":45,"value":1426},{"type":45,"value":1483},") — show a toolbar button so the user can flip the panel between bottom-dock and right-dock. User choice persists to ",{"type":39,"tag":59,"props":1485,"children":1487},{"className":1486},[],[1488],{"type":45,"value":1489},"localStorage",{"type":45,"value":1491}," and overrides ",{"type":39,"tag":59,"props":1493,"children":1495},{"className":1494},[],[1496],{"type":45,"value":1327},{"type":45,"value":1498}," on subsequent mounts. Pass ",{"type":39,"tag":59,"props":1500,"children":1502},{"className":1501},[],[1503],{"type":45,"value":1458},{"type":45,"value":1505}," to lock the dock to ",{"type":39,"tag":59,"props":1507,"children":1509},{"className":1508},[],[1510],{"type":45,"value":1327},{"type":45,"value":74},{"type":39,"tag":1178,"props":1513,"children":1514},{},[1515,1521,1522,1528],{"type":39,"tag":59,"props":1516,"children":1518},{"className":1517},[],[1519],{"type":45,"value":1520},"onEvent",{"type":45,"value":1250},{"type":39,"tag":59,"props":1523,"children":1525},{"className":1524},[],[1526],{"type":45,"value":1527},"(DevtoolsEvent) => void",{"type":45,"value":1529},") — optional tap.",{"type":39,"tag":76,"props":1531,"children":1533},{"id":1532},"panels",[1534],{"type":45,"value":1535},"Panels",{"type":39,"tag":1174,"props":1537,"children":1538},{},[1539,1566,1583,1593,1603],{"type":39,"tag":1178,"props":1540,"children":1541},{},[1542,1548,1550,1556,1558,1564],{"type":39,"tag":1543,"props":1544,"children":1545},"strong",{},[1546],{"type":45,"value":1547},"Spec",{"type":45,"value":1549}," — element tree rooted at ",{"type":39,"tag":59,"props":1551,"children":1553},{"className":1552},[],[1554],{"type":45,"value":1555},"spec.root",{"type":45,"value":1557},"; props\u002Fvisibility\u002Fevents\u002Fwatchers detail; integrated ",{"type":39,"tag":59,"props":1559,"children":1561},{"className":1560},[],[1562],{"type":45,"value":1563},"validateSpec",{"type":45,"value":1565}," warnings.",{"type":39,"tag":1178,"props":1567,"children":1568},{},[1569,1574,1576,1582],{"type":39,"tag":1543,"props":1570,"children":1571},{},[1572],{"type":45,"value":1573},"State",{"type":45,"value":1575}," — every JSON Pointer path with inline edit via ",{"type":39,"tag":59,"props":1577,"children":1579},{"className":1578},[],[1580],{"type":45,"value":1581},"store.set",{"type":45,"value":74},{"type":39,"tag":1178,"props":1584,"children":1585},{},[1586,1591],{"type":39,"tag":1543,"props":1587,"children":1588},{},[1589],{"type":45,"value":1590},"Actions",{"type":45,"value":1592}," — dispatched actions timeline (name, params, result\u002Ferror, duration).",{"type":39,"tag":1178,"props":1594,"children":1595},{},[1596,1601],{"type":39,"tag":1543,"props":1597,"children":1598},{},[1599],{"type":45,"value":1600},"Stream",{"type":45,"value":1602}," — spec patches, text chunks, token usage, lifecycle markers grouped by generation.",{"type":39,"tag":1178,"props":1604,"children":1605},{},[1606,1611],{"type":39,"tag":1543,"props":1607,"children":1608},{},[1609],{"type":45,"value":1610},"Catalog",{"type":45,"value":1612}," — components + actions declared in the catalog with prop chips.",{"type":39,"tag":76,"props":1614,"children":1616},{"id":1615},"picker-toolbar",[1617],{"type":45,"value":1618},"Picker (toolbar)",{"type":39,"tag":48,"props":1620,"children":1621},{},[1622,1624,1630],{"type":45,"value":1623},"The element picker is a toolbar button in the panel header (Chrome-DevTools-style), not a tab. Click it to activate pick mode, then click any rendered element in the page — selection jumps to the Spec tab with that element focused. ",{"type":39,"tag":59,"props":1625,"children":1627},{"className":1626},[],[1628],{"type":45,"value":1629},"Esc",{"type":45,"value":1631}," cancels.",{"type":39,"tag":76,"props":1633,"children":1635},{"id":1634},"reserved-space-docking",[1636],{"type":45,"value":1637},"Reserved space & docking",{"type":39,"tag":48,"props":1639,"children":1640},{},[1641,1643,1648,1650,1656,1658,1663],{"type":45,"value":1642},"The panel can dock at the bottom or the right edge, and by default the user can flip between the two with a toolbar button (the choice persists to ",{"type":39,"tag":59,"props":1644,"children":1646},{"className":1645},[],[1647],{"type":45,"value":1489},{"type":45,"value":1649},"). Set ",{"type":39,"tag":59,"props":1651,"children":1653},{"className":1652},[],[1654],{"type":45,"value":1655},"allowDockToggle={false}",{"type":45,"value":1657}," if the host app only works with one dock — the button is hidden and the dock is locked to ",{"type":39,"tag":59,"props":1659,"children":1661},{"className":1660},[],[1662],{"type":45,"value":1327},{"type":45,"value":74},{"type":39,"tag":48,"props":1665,"children":1666},{},[1667],{"type":45,"value":1668},"Pick an initial dock that fits your layout:",{"type":39,"tag":1174,"props":1670,"children":1671},{},[1672,1735],{"type":39,"tag":1178,"props":1673,"children":1674},{},[1675,1680,1682,1688,1690,1696,1698,1704,1705,1711,1713,1719,1721,1726,1728,1733],{"type":39,"tag":1543,"props":1676,"children":1677},{},[1678],{"type":45,"value":1679},"Bottom dock (default)",{"type":45,"value":1681}," — works best for docs \u002F marketing \u002F content-flow sites and for app shells built with a ",{"type":39,"tag":59,"props":1683,"children":1685},{"className":1684},[],[1686],{"type":45,"value":1687},"height: 100%",{"type":45,"value":1689}," chain (",{"type":39,"tag":59,"props":1691,"children":1693},{"className":1692},[],[1694],{"type":45,"value":1695},"html { height: 100% }",{"type":45,"value":1697}," → ",{"type":39,"tag":59,"props":1699,"children":1701},{"className":1700},[],[1702],{"type":45,"value":1703},"body { height: 100% }",{"type":45,"value":1697},{"type":39,"tag":59,"props":1706,"children":1708},{"className":1707},[],[1709],{"type":45,"value":1710},".app { height: 100% }",{"type":45,"value":1712},"). The panel writes its height to ",{"type":39,"tag":59,"props":1714,"children":1716},{"className":1715},[],[1717],{"type":45,"value":1718},"--jr-devtools-offset-bottom",{"type":45,"value":1720}," and applies matching ",{"type":39,"tag":59,"props":1722,"children":1724},{"className":1723},[],[1725],{"type":45,"value":1434},{"type":45,"value":1727}," to ",{"type":39,"tag":59,"props":1729,"children":1731},{"className":1730},[],[1732],{"type":45,"value":1450},{"type":45,"value":1734},", so non-fixed content naturally makes room.",{"type":39,"tag":1178,"props":1736,"children":1737},{},[1738,1743,1744,1750,1752,1757,1759,1765,1767,1773],{"type":39,"tag":1543,"props":1739,"children":1740},{},[1741],{"type":45,"value":1742},"Right dock",{"type":45,"value":1250},{"type":39,"tag":59,"props":1745,"children":1747},{"className":1746},[],[1748],{"type":45,"value":1749},"position=\"right\"",{"type":45,"value":1751},") — recommended for app-shell layouts that use ",{"type":39,"tag":59,"props":1753,"children":1755},{"className":1754},[],[1756],{"type":45,"value":1358},{"type":45,"value":1758}," or ",{"type":39,"tag":59,"props":1760,"children":1762},{"className":1761},[],[1763],{"type":45,"value":1764},"position: fixed; bottom: 0",{"type":45,"value":1766},". Right docking sidesteps the bottom edge entirely and writes its width to ",{"type":39,"tag":59,"props":1768,"children":1770},{"className":1769},[],[1771],{"type":45,"value":1772},"--jr-devtools-offset-right",{"type":45,"value":1774}," instead.",{"type":39,"tag":48,"props":1776,"children":1777},{},[1778,1780,1785,1787,1793,1795,1801],{"type":45,"value":1779},"Apps that use ",{"type":39,"tag":59,"props":1781,"children":1783},{"className":1782},[],[1784],{"type":45,"value":1358},{"type":45,"value":1786},", ",{"type":39,"tag":59,"props":1788,"children":1790},{"className":1789},[],[1791],{"type":45,"value":1792},"position: fixed",{"type":45,"value":1794},", or ",{"type":39,"tag":59,"props":1796,"children":1798},{"className":1797},[],[1799],{"type":45,"value":1800},"position: sticky",{"type":45,"value":1802}," can opt specific elements in with the published CSS custom properties:",{"type":39,"tag":88,"props":1804,"children":1808},{"className":1805,"code":1806,"language":1807,"meta":93,"style":93},"language-css shiki shiki-themes material-theme-lighter material-theme material-theme-palenight",".composer   { bottom: var(--jr-devtools-offset-bottom, 0); }\n.sidebar    { right:  var(--jr-devtools-offset-right,  0); }\n.app-shell  { height: calc(100vh - var(--jr-devtools-offset-bottom, 0)); }\n","css",[1809],{"type":39,"tag":59,"props":1810,"children":1811},{"__ignoreMap":93},[1812,1875,1931],{"type":39,"tag":99,"props":1813,"children":1814},{"class":101,"line":102},[1815,1819,1824,1829,1835,1840,1845,1850,1854,1859,1865,1870],{"type":39,"tag":99,"props":1816,"children":1817},{"style":306},[1818],{"type":45,"value":74},{"type":39,"tag":99,"props":1820,"children":1821},{"style":116},[1822],{"type":45,"value":1823},"composer",{"type":39,"tag":99,"props":1825,"children":1826},{"style":306},[1827],{"type":45,"value":1828},"   {",{"type":39,"tag":99,"props":1830,"children":1832},{"style":1831},"--shiki-light:#8796B0;--shiki-default:#B2CCD6;--shiki-dark:#B2CCD6",[1833],{"type":45,"value":1834}," bottom",{"type":39,"tag":99,"props":1836,"children":1837},{"style":306},[1838],{"type":45,"value":1839},":",{"type":39,"tag":99,"props":1841,"children":1842},{"style":1035},[1843],{"type":45,"value":1844}," var",{"type":39,"tag":99,"props":1846,"children":1847},{"style":306},[1848],{"type":45,"value":1849},"(",{"type":39,"tag":99,"props":1851,"children":1852},{"style":312},[1853],{"type":45,"value":1718},{"type":39,"tag":99,"props":1855,"children":1856},{"style":306},[1857],{"type":45,"value":1858},",",{"type":39,"tag":99,"props":1860,"children":1862},{"style":1861},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1863],{"type":45,"value":1864}," 0",{"type":39,"tag":99,"props":1866,"children":1867},{"style":306},[1868],{"type":45,"value":1869},");",{"type":39,"tag":99,"props":1871,"children":1872},{"style":306},[1873],{"type":45,"value":1874}," }\n",{"type":39,"tag":99,"props":1876,"children":1877},{"class":101,"line":112},[1878,1882,1887,1892,1897,1901,1906,1910,1914,1918,1923,1927],{"type":39,"tag":99,"props":1879,"children":1880},{"style":306},[1881],{"type":45,"value":74},{"type":39,"tag":99,"props":1883,"children":1884},{"style":116},[1885],{"type":45,"value":1886},"sidebar",{"type":39,"tag":99,"props":1888,"children":1889},{"style":306},[1890],{"type":45,"value":1891},"    {",{"type":39,"tag":99,"props":1893,"children":1894},{"style":1831},[1895],{"type":45,"value":1896}," right",{"type":39,"tag":99,"props":1898,"children":1899},{"style":306},[1900],{"type":45,"value":1839},{"type":39,"tag":99,"props":1902,"children":1903},{"style":1035},[1904],{"type":45,"value":1905},"  var",{"type":39,"tag":99,"props":1907,"children":1908},{"style":306},[1909],{"type":45,"value":1849},{"type":39,"tag":99,"props":1911,"children":1912},{"style":312},[1913],{"type":45,"value":1772},{"type":39,"tag":99,"props":1915,"children":1916},{"style":306},[1917],{"type":45,"value":1858},{"type":39,"tag":99,"props":1919,"children":1920},{"style":1861},[1921],{"type":45,"value":1922},"  0",{"type":39,"tag":99,"props":1924,"children":1925},{"style":306},[1926],{"type":45,"value":1869},{"type":39,"tag":99,"props":1928,"children":1929},{"style":306},[1930],{"type":45,"value":1874},{"type":39,"tag":99,"props":1932,"children":1933},{"class":101,"line":138},[1934,1938,1943,1948,1953,1957,1962,1966,1970,1975,1979,1983,1987,1991,1995,2000],{"type":39,"tag":99,"props":1935,"children":1936},{"style":306},[1937],{"type":45,"value":74},{"type":39,"tag":99,"props":1939,"children":1940},{"style":116},[1941],{"type":45,"value":1942},"app-shell",{"type":39,"tag":99,"props":1944,"children":1945},{"style":306},[1946],{"type":45,"value":1947},"  {",{"type":39,"tag":99,"props":1949,"children":1950},{"style":1831},[1951],{"type":45,"value":1952}," height",{"type":39,"tag":99,"props":1954,"children":1955},{"style":306},[1956],{"type":45,"value":1839},{"type":39,"tag":99,"props":1958,"children":1959},{"style":1035},[1960],{"type":45,"value":1961}," calc",{"type":39,"tag":99,"props":1963,"children":1964},{"style":306},[1965],{"type":45,"value":1849},{"type":39,"tag":99,"props":1967,"children":1968},{"style":1861},[1969],{"type":45,"value":1358},{"type":39,"tag":99,"props":1971,"children":1972},{"style":306},[1973],{"type":45,"value":1974}," -",{"type":39,"tag":99,"props":1976,"children":1977},{"style":1035},[1978],{"type":45,"value":1844},{"type":39,"tag":99,"props":1980,"children":1981},{"style":306},[1982],{"type":45,"value":1849},{"type":39,"tag":99,"props":1984,"children":1985},{"style":312},[1986],{"type":45,"value":1718},{"type":39,"tag":99,"props":1988,"children":1989},{"style":306},[1990],{"type":45,"value":1858},{"type":39,"tag":99,"props":1992,"children":1993},{"style":1861},[1994],{"type":45,"value":1864},{"type":39,"tag":99,"props":1996,"children":1997},{"style":306},[1998],{"type":45,"value":1999},"));",{"type":39,"tag":99,"props":2001,"children":2002},{"style":306},[2003],{"type":45,"value":1874},{"type":39,"tag":48,"props":2005,"children":2006},{},[2007,2009,2015],{"type":45,"value":2008},"If the automatic body padding causes problems with a particular layout, pass ",{"type":39,"tag":59,"props":2010,"children":2012},{"className":2011},[],[2013],{"type":45,"value":2014},"reserveSpace={false}",{"type":45,"value":2016}," to make the panel a pure overlay — the CSS custom properties are still published so you can reserve space manually.",{"type":39,"tag":48,"props":2018,"children":2019},{},[2020,2021,2027],{"type":45,"value":1849},{"type":39,"tag":59,"props":2022,"children":2024},{"className":2023},[],[2025],{"type":45,"value":2026},"--jr-devtools-offset",{"type":45,"value":2028}," is kept as a back-compat alias for whichever edge is currently active.)",{"type":39,"tag":76,"props":2030,"children":2032},{"id":2031},"multiple-renderers-on-one-page-eg-a-chat",[2033],{"type":45,"value":2034},"Multiple renderers on one page (e.g. a chat)",{"type":39,"tag":48,"props":2036,"children":2037},{},[2038,2040,2045,2047,2053],{"type":45,"value":2039},"A single ",{"type":39,"tag":59,"props":2041,"children":2043},{"className":2042},[],[2044],{"type":45,"value":268},{"type":45,"value":2046}," can inspect many ",{"type":39,"tag":59,"props":2048,"children":2050},{"className":2049},[],[2051],{"type":45,"value":2052},"\u003CRenderer \u002F>",{"type":45,"value":2054}," instances at once — a chat where each assistant message renders its own spec, a dashboard made of several independent widgets, etc. The recipe:",{"type":39,"tag":2056,"props":2057,"children":2058},"ol",{},[2059,2074,2100,2134,2171],{"type":39,"tag":1178,"props":2060,"children":2061},{},[2062,2072],{"type":39,"tag":1543,"props":2063,"children":2064},{},[2065,2067],{"type":45,"value":2066},"One top-level ",{"type":39,"tag":59,"props":2068,"children":2070},{"className":2069},[],[2071],{"type":45,"value":276},{"type":45,"value":2073}," so every renderer shares one state store and one action dispatcher. Devtools lives inside this provider and sees everything through it.",{"type":39,"tag":1178,"props":2075,"children":2076},{},[2077,2082,2084,2090,2092,2098],{"type":39,"tag":1543,"props":2078,"children":2079},{},[2080],{"type":45,"value":2081},"Per-renderer specs, shared state",{"type":45,"value":2083}," — each assistant message renders ",{"type":39,"tag":59,"props":2085,"children":2087},{"className":2086},[],[2088],{"type":45,"value":2089},"\u003CRenderer spec={msgSpec} registry={registry} \u002F>",{"type":45,"value":2091}," directly, not wrapped in its own ",{"type":39,"tag":59,"props":2093,"children":2095},{"className":2094},[],[2096],{"type":45,"value":2097},"StateProvider",{"type":45,"value":2099},". State paths from different messages must not collide.",{"type":39,"tag":1178,"props":2101,"children":2102},{},[2103,2108,2110,2116,2118,2124,2126,2132],{"type":39,"tag":1543,"props":2104,"children":2105},{},[2106],{"type":45,"value":2107},"Namespace state per turn",{"type":45,"value":2109}," — when the source is an AI stream, hand the agent a unique ",{"type":39,"tag":59,"props":2111,"children":2113},{"className":2112},[],[2114],{"type":45,"value":2115},"messageId",{"type":45,"value":2117}," and require every element key (",{"type":39,"tag":59,"props":2119,"children":2121},{"className":2120},[],[2122],{"type":45,"value":2123},"\u003Cid>-root",{"type":45,"value":2125},") and state path (",{"type":39,"tag":59,"props":2127,"children":2129},{"className":2128},[],[2130],{"type":45,"value":2131},"\u002F\u003Cid>\u002Fcount",{"type":45,"value":2133},") to be prefixed with it.",{"type":39,"tag":1178,"props":2135,"children":2136},{},[2137,2155,2157,2162,2164,2169],{"type":39,"tag":1543,"props":2138,"children":2139},{},[2140,2142,2148,2149],{"type":45,"value":2141},"Pass ",{"type":39,"tag":59,"props":2143,"children":2145},{"className":2144},[],[2146],{"type":45,"value":2147},"spec={latest}",{"type":45,"value":1203},{"type":39,"tag":59,"props":2150,"children":2152},{"className":2151},[],[2153],{"type":45,"value":2154},"messages={all}",{"type":45,"value":2156}," — ",{"type":39,"tag":59,"props":2158,"children":2160},{"className":2159},[],[2161],{"type":45,"value":431},{"type":45,"value":2163}," drives the Spec panel (usually the newest assistant message's spec), while ",{"type":39,"tag":59,"props":2165,"children":2167},{"className":2166},[],[2168],{"type":45,"value":502},{"type":45,"value":2170}," feeds the Stream panel with patches from every turn.",{"type":39,"tag":1178,"props":2172,"children":2173},{},[2174,2179,2180,2186,2188,2194,2196,2202],{"type":39,"tag":1543,"props":2175,"children":2176},{},[2177],{"type":45,"value":2178},"Actions and the picker are already global",{"type":45,"value":2156},{"type":39,"tag":59,"props":2181,"children":2183},{"className":2182},[],[2184],{"type":45,"value":2185},"registerActionObserver",{"type":45,"value":2187}," captures dispatches from any ",{"type":39,"tag":59,"props":2189,"children":2191},{"className":2190},[],[2192],{"type":45,"value":2193},"ActionProvider",{"type":45,"value":2195}," in the tree, and ",{"type":39,"tag":59,"props":2197,"children":2199},{"className":2198},[],[2200],{"type":45,"value":2201},"data-jr-key",{"type":45,"value":2203}," is written by the renderer itself, so Pick works across every rendered element regardless of which message produced it.",{"type":39,"tag":48,"props":2205,"children":2206},{},[2207,2209,2215],{"type":45,"value":2208},"See ",{"type":39,"tag":59,"props":2210,"children":2212},{"className":2211},[],[2213],{"type":45,"value":2214},"examples\u002Fdevtools",{"type":45,"value":2216}," for a full AI chat wired this way.",{"type":39,"tag":76,"props":2218,"children":2220},{"id":2219},"imperative-api-react-only",[2221],{"type":45,"value":2222},"Imperative API (React only)",{"type":39,"tag":88,"props":2224,"children":2226},{"className":288,"code":2225,"language":290,"meta":93,"style":93},"import { useJsonRenderDevtools } from \"@json-render\u002Fdevtools-react\";\n\nconst devtools = useJsonRenderDevtools();\ndevtools?.open();\ndevtools?.toggle();\ndevtools?.recordEvent({ kind: \"stream-text\", at: Date.now(), text: \"hi\" });\n",[2227],{"type":39,"tag":59,"props":2228,"children":2229},{"__ignoreMap":93},[2230,2270,2277,2306,2331,2355],{"type":39,"tag":99,"props":2231,"children":2232},{"class":101,"line":102},[2233,2237,2241,2246,2250,2254,2258,2262,2266],{"type":39,"tag":99,"props":2234,"children":2235},{"style":300},[2236],{"type":45,"value":303},{"type":39,"tag":99,"props":2238,"children":2239},{"style":306},[2240],{"type":45,"value":309},{"type":39,"tag":99,"props":2242,"children":2243},{"style":312},[2244],{"type":45,"value":2245}," useJsonRenderDevtools",{"type":39,"tag":99,"props":2247,"children":2248},{"style":306},[2249],{"type":45,"value":320},{"type":39,"tag":99,"props":2251,"children":2252},{"style":300},[2253],{"type":45,"value":325},{"type":39,"tag":99,"props":2255,"children":2256},{"style":306},[2257],{"type":45,"value":330},{"type":39,"tag":99,"props":2259,"children":2260},{"style":122},[2261],{"type":45,"value":335},{"type":39,"tag":99,"props":2263,"children":2264},{"style":306},[2265],{"type":45,"value":340},{"type":39,"tag":99,"props":2267,"children":2268},{"style":306},[2269],{"type":45,"value":345},{"type":39,"tag":99,"props":2271,"children":2272},{"class":101,"line":112},[2273],{"type":39,"tag":99,"props":2274,"children":2275},{"emptyLinePlaceholder":142},[2276],{"type":45,"value":145},{"type":39,"tag":99,"props":2278,"children":2279},{"class":101,"line":138},[2280,2285,2290,2294,2298,2302],{"type":39,"tag":99,"props":2281,"children":2282},{"style":368},[2283],{"type":45,"value":2284},"const",{"type":39,"tag":99,"props":2286,"children":2287},{"style":312},[2288],{"type":45,"value":2289}," devtools ",{"type":39,"tag":99,"props":2291,"children":2292},{"style":306},[2293],{"type":45,"value":667},{"type":39,"tag":99,"props":2295,"children":2296},{"style":1035},[2297],{"type":45,"value":2245},{"type":39,"tag":99,"props":2299,"children":2300},{"style":312},[2301],{"type":45,"value":1042},{"type":39,"tag":99,"props":2303,"children":2304},{"style":306},[2305],{"type":45,"value":345},{"type":39,"tag":99,"props":2307,"children":2308},{"class":101,"line":148},[2309,2313,2318,2323,2327],{"type":39,"tag":99,"props":2310,"children":2311},{"style":312},[2312],{"type":45,"value":4},{"type":39,"tag":99,"props":2314,"children":2315},{"style":306},[2316],{"type":45,"value":2317},"?.",{"type":39,"tag":99,"props":2319,"children":2320},{"style":1035},[2321],{"type":45,"value":2322},"open",{"type":39,"tag":99,"props":2324,"children":2325},{"style":312},[2326],{"type":45,"value":1042},{"type":39,"tag":99,"props":2328,"children":2329},{"style":306},[2330],{"type":45,"value":345},{"type":39,"tag":99,"props":2332,"children":2333},{"class":101,"line":157},[2334,2338,2342,2347,2351],{"type":39,"tag":99,"props":2335,"children":2336},{"style":312},[2337],{"type":45,"value":4},{"type":39,"tag":99,"props":2339,"children":2340},{"style":306},[2341],{"type":45,"value":2317},{"type":39,"tag":99,"props":2343,"children":2344},{"style":1035},[2345],{"type":45,"value":2346},"toggle",{"type":39,"tag":99,"props":2348,"children":2349},{"style":312},[2350],{"type":45,"value":1042},{"type":39,"tag":99,"props":2352,"children":2353},{"style":306},[2354],{"type":45,"value":345},{"type":39,"tag":99,"props":2356,"children":2357},{"class":101,"line":178},[2358,2362,2366,2371,2375,2380,2385,2389,2393,2398,2402,2406,2411,2415,2420,2424,2429,2433,2437,2442,2446,2450,2455,2459,2463,2468],{"type":39,"tag":99,"props":2359,"children":2360},{"style":312},[2361],{"type":45,"value":4},{"type":39,"tag":99,"props":2363,"children":2364},{"style":306},[2365],{"type":45,"value":2317},{"type":39,"tag":99,"props":2367,"children":2368},{"style":1035},[2369],{"type":45,"value":2370},"recordEvent",{"type":39,"tag":99,"props":2372,"children":2373},{"style":312},[2374],{"type":45,"value":1849},{"type":39,"tag":99,"props":2376,"children":2377},{"style":306},[2378],{"type":45,"value":2379},"{",{"type":39,"tag":99,"props":2381,"children":2382},{"style":555},[2383],{"type":45,"value":2384}," kind",{"type":39,"tag":99,"props":2386,"children":2387},{"style":306},[2388],{"type":45,"value":1839},{"type":39,"tag":99,"props":2390,"children":2391},{"style":306},[2392],{"type":45,"value":330},{"type":39,"tag":99,"props":2394,"children":2395},{"style":122},[2396],{"type":45,"value":2397},"stream-text",{"type":39,"tag":99,"props":2399,"children":2400},{"style":306},[2401],{"type":45,"value":340},{"type":39,"tag":99,"props":2403,"children":2404},{"style":306},[2405],{"type":45,"value":1858},{"type":39,"tag":99,"props":2407,"children":2408},{"style":555},[2409],{"type":45,"value":2410}," at",{"type":39,"tag":99,"props":2412,"children":2413},{"style":306},[2414],{"type":45,"value":1839},{"type":39,"tag":99,"props":2416,"children":2417},{"style":312},[2418],{"type":45,"value":2419}," Date",{"type":39,"tag":99,"props":2421,"children":2422},{"style":306},[2423],{"type":45,"value":74},{"type":39,"tag":99,"props":2425,"children":2426},{"style":1035},[2427],{"type":45,"value":2428},"now",{"type":39,"tag":99,"props":2430,"children":2431},{"style":312},[2432],{"type":45,"value":1042},{"type":39,"tag":99,"props":2434,"children":2435},{"style":306},[2436],{"type":45,"value":1858},{"type":39,"tag":99,"props":2438,"children":2439},{"style":555},[2440],{"type":45,"value":2441}," text",{"type":39,"tag":99,"props":2443,"children":2444},{"style":306},[2445],{"type":45,"value":1839},{"type":39,"tag":99,"props":2447,"children":2448},{"style":306},[2449],{"type":45,"value":330},{"type":39,"tag":99,"props":2451,"children":2452},{"style":122},[2453],{"type":45,"value":2454},"hi",{"type":39,"tag":99,"props":2456,"children":2457},{"style":306},[2458],{"type":45,"value":340},{"type":39,"tag":99,"props":2460,"children":2461},{"style":306},[2462],{"type":45,"value":320},{"type":39,"tag":99,"props":2464,"children":2465},{"style":312},[2466],{"type":45,"value":2467},")",{"type":39,"tag":99,"props":2469,"children":2470},{"style":306},[2471],{"type":45,"value":345},{"type":39,"tag":48,"props":2473,"children":2474},{},[2475,2477,2482],{"type":45,"value":2476},"Returns ",{"type":39,"tag":59,"props":2478,"children":2480},{"className":2479},[],[2481],{"type":45,"value":64},{"type":45,"value":2483}," in production or before the component mounts.",{"type":39,"tag":76,"props":2485,"children":2487},{"id":2486},"server-side-stream-tap",[2488],{"type":45,"value":2489},"Server-side stream tap",{"type":39,"tag":48,"props":2491,"children":2492},{},[2493],{"type":45,"value":2494},"Capture spec patches at the API route so events persist server-side or flow into your own telemetry.",{"type":39,"tag":88,"props":2496,"children":2500},{"className":2497,"code":2498,"language":2499,"meta":93,"style":93},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { tapJsonRenderStream, createEventStore } from \"@json-render\u002Fdevtools\";\nimport { pipeJsonRender } from \"@json-render\u002Fcore\";\n\nconst events = createEventStore({ bufferSize: 1000 });\nconst tapped = tapJsonRenderStream(result.toUIMessageStream(), events);\nwriter.merge(pipeJsonRender(tapped));\n","ts",[2501],{"type":39,"tag":59,"props":2502,"children":2503},{"__ignoreMap":93},[2504,2553,2594,2601,2655,2706],{"type":39,"tag":99,"props":2505,"children":2506},{"class":101,"line":102},[2507,2511,2515,2520,2524,2529,2533,2537,2541,2545,2549],{"type":39,"tag":99,"props":2508,"children":2509},{"style":300},[2510],{"type":45,"value":303},{"type":39,"tag":99,"props":2512,"children":2513},{"style":306},[2514],{"type":45,"value":309},{"type":39,"tag":99,"props":2516,"children":2517},{"style":312},[2518],{"type":45,"value":2519}," tapJsonRenderStream",{"type":39,"tag":99,"props":2521,"children":2522},{"style":306},[2523],{"type":45,"value":1858},{"type":39,"tag":99,"props":2525,"children":2526},{"style":312},[2527],{"type":45,"value":2528}," createEventStore",{"type":39,"tag":99,"props":2530,"children":2531},{"style":306},[2532],{"type":45,"value":320},{"type":39,"tag":99,"props":2534,"children":2535},{"style":300},[2536],{"type":45,"value":325},{"type":39,"tag":99,"props":2538,"children":2539},{"style":306},[2540],{"type":45,"value":330},{"type":39,"tag":99,"props":2542,"children":2543},{"style":122},[2544],{"type":45,"value":46},{"type":39,"tag":99,"props":2546,"children":2547},{"style":306},[2548],{"type":45,"value":340},{"type":39,"tag":99,"props":2550,"children":2551},{"style":306},[2552],{"type":45,"value":345},{"type":39,"tag":99,"props":2554,"children":2555},{"class":101,"line":112},[2556,2560,2564,2569,2573,2577,2581,2586,2590],{"type":39,"tag":99,"props":2557,"children":2558},{"style":300},[2559],{"type":45,"value":303},{"type":39,"tag":99,"props":2561,"children":2562},{"style":306},[2563],{"type":45,"value":309},{"type":39,"tag":99,"props":2565,"children":2566},{"style":312},[2567],{"type":45,"value":2568}," pipeJsonRender",{"type":39,"tag":99,"props":2570,"children":2571},{"style":306},[2572],{"type":45,"value":320},{"type":39,"tag":99,"props":2574,"children":2575},{"style":300},[2576],{"type":45,"value":325},{"type":39,"tag":99,"props":2578,"children":2579},{"style":306},[2580],{"type":45,"value":330},{"type":39,"tag":99,"props":2582,"children":2583},{"style":122},[2584],{"type":45,"value":2585},"@json-render\u002Fcore",{"type":39,"tag":99,"props":2587,"children":2588},{"style":306},[2589],{"type":45,"value":340},{"type":39,"tag":99,"props":2591,"children":2592},{"style":306},[2593],{"type":45,"value":345},{"type":39,"tag":99,"props":2595,"children":2596},{"class":101,"line":138},[2597],{"type":39,"tag":99,"props":2598,"children":2599},{"emptyLinePlaceholder":142},[2600],{"type":45,"value":145},{"type":39,"tag":99,"props":2602,"children":2603},{"class":101,"line":148},[2604,2608,2613,2617,2621,2625,2629,2634,2638,2643,2647,2651],{"type":39,"tag":99,"props":2605,"children":2606},{"style":368},[2607],{"type":45,"value":2284},{"type":39,"tag":99,"props":2609,"children":2610},{"style":312},[2611],{"type":45,"value":2612}," events ",{"type":39,"tag":99,"props":2614,"children":2615},{"style":306},[2616],{"type":45,"value":667},{"type":39,"tag":99,"props":2618,"children":2619},{"style":1035},[2620],{"type":45,"value":2528},{"type":39,"tag":99,"props":2622,"children":2623},{"style":312},[2624],{"type":45,"value":1849},{"type":39,"tag":99,"props":2626,"children":2627},{"style":306},[2628],{"type":45,"value":2379},{"type":39,"tag":99,"props":2630,"children":2631},{"style":555},[2632],{"type":45,"value":2633}," bufferSize",{"type":39,"tag":99,"props":2635,"children":2636},{"style":306},[2637],{"type":45,"value":1839},{"type":39,"tag":99,"props":2639,"children":2640},{"style":1861},[2641],{"type":45,"value":2642}," 1000",{"type":39,"tag":99,"props":2644,"children":2645},{"style":306},[2646],{"type":45,"value":320},{"type":39,"tag":99,"props":2648,"children":2649},{"style":312},[2650],{"type":45,"value":2467},{"type":39,"tag":99,"props":2652,"children":2653},{"style":306},[2654],{"type":45,"value":345},{"type":39,"tag":99,"props":2656,"children":2657},{"class":101,"line":157},[2658,2662,2667,2671,2675,2680,2684,2689,2693,2697,2702],{"type":39,"tag":99,"props":2659,"children":2660},{"style":368},[2661],{"type":45,"value":2284},{"type":39,"tag":99,"props":2663,"children":2664},{"style":312},[2665],{"type":45,"value":2666}," tapped ",{"type":39,"tag":99,"props":2668,"children":2669},{"style":306},[2670],{"type":45,"value":667},{"type":39,"tag":99,"props":2672,"children":2673},{"style":1035},[2674],{"type":45,"value":2519},{"type":39,"tag":99,"props":2676,"children":2677},{"style":312},[2678],{"type":45,"value":2679},"(result",{"type":39,"tag":99,"props":2681,"children":2682},{"style":306},[2683],{"type":45,"value":74},{"type":39,"tag":99,"props":2685,"children":2686},{"style":1035},[2687],{"type":45,"value":2688},"toUIMessageStream",{"type":39,"tag":99,"props":2690,"children":2691},{"style":312},[2692],{"type":45,"value":1042},{"type":39,"tag":99,"props":2694,"children":2695},{"style":306},[2696],{"type":45,"value":1858},{"type":39,"tag":99,"props":2698,"children":2699},{"style":312},[2700],{"type":45,"value":2701}," events)",{"type":39,"tag":99,"props":2703,"children":2704},{"style":306},[2705],{"type":45,"value":345},{"type":39,"tag":99,"props":2707,"children":2708},{"class":101,"line":178},[2709,2714,2718,2723,2727,2732,2737],{"type":39,"tag":99,"props":2710,"children":2711},{"style":312},[2712],{"type":45,"value":2713},"writer",{"type":39,"tag":99,"props":2715,"children":2716},{"style":306},[2717],{"type":45,"value":74},{"type":39,"tag":99,"props":2719,"children":2720},{"style":1035},[2721],{"type":45,"value":2722},"merge",{"type":39,"tag":99,"props":2724,"children":2725},{"style":312},[2726],{"type":45,"value":1849},{"type":39,"tag":99,"props":2728,"children":2729},{"style":1035},[2730],{"type":45,"value":2731},"pipeJsonRender",{"type":39,"tag":99,"props":2733,"children":2734},{"style":312},[2735],{"type":45,"value":2736},"(tapped))",{"type":39,"tag":99,"props":2738,"children":2739},{"style":306},[2740],{"type":45,"value":345},{"type":39,"tag":48,"props":2742,"children":2743},{},[2744,2746,2752],{"type":45,"value":2745},"YAML equivalent: ",{"type":39,"tag":59,"props":2747,"children":2749},{"className":2748},[],[2750],{"type":45,"value":2751},"tapYamlStream",{"type":45,"value":74},{"type":39,"tag":76,"props":2754,"children":2756},{"id":2755},"under-the-hood",[2757],{"type":45,"value":2758},"Under the hood",{"type":39,"tag":1174,"props":2760,"children":2761},{},[2762,2772,2782,2827],{"type":39,"tag":1178,"props":2763,"children":2764},{},[2765,2770],{"type":39,"tag":1543,"props":2766,"children":2767},{},[2768],{"type":45,"value":2769},"Shadow-DOM isolated panel",{"type":45,"value":2771}," — the panel's styles never leak into the host app and vice versa.",{"type":39,"tag":1178,"props":2773,"children":2774},{},[2775,2780],{"type":39,"tag":1543,"props":2776,"children":2777},{},[2778],{"type":45,"value":2779},"Ring-buffered event store",{"type":45,"value":2781}," — capped log of devtools events (state changes, action dispatches, stream patches, etc.).",{"type":39,"tag":1178,"props":2783,"children":2784},{},[2785,2790,2792,2797,2799,2805,2806,2812,2814,2819,2821,2826],{"type":39,"tag":1543,"props":2786,"children":2787},{},[2788],{"type":45,"value":2789},"Action observer registry",{"type":45,"value":2791}," — each framework's ",{"type":39,"tag":59,"props":2793,"children":2795},{"className":2794},[],[2796],{"type":45,"value":2193},{"type":45,"value":2798}," reports via ",{"type":39,"tag":59,"props":2800,"children":2802},{"className":2801},[],[2803],{"type":45,"value":2804},"notifyActionDispatch",{"type":45,"value":1436},{"type":39,"tag":59,"props":2807,"children":2809},{"className":2808},[],[2810],{"type":45,"value":2811},"notifyActionSettle",{"type":45,"value":2813}," in ",{"type":39,"tag":59,"props":2815,"children":2817},{"className":2816},[],[2818],{"type":45,"value":2585},{"type":45,"value":2820},"; devtools subscribes via ",{"type":39,"tag":59,"props":2822,"children":2824},{"className":2823},[],[2825],{"type":45,"value":2185},{"type":45,"value":74},{"type":39,"tag":1178,"props":2828,"children":2829},{},[2830,2835,2837,2843,2845,2851],{"type":39,"tag":1543,"props":2831,"children":2832},{},[2833],{"type":45,"value":2834},"Picker element tagging",{"type":45,"value":2836}," — while devtools is mounted, ",{"type":39,"tag":59,"props":2838,"children":2840},{"className":2839},[],[2841],{"type":45,"value":2842},"ElementRenderer",{"type":45,"value":2844}," wraps each rendered element in ",{"type":39,"tag":59,"props":2846,"children":2848},{"className":2847},[],[2849],{"type":45,"value":2850},"\u003Cspan data-jr-key=\"...\" style=\"display:contents\">",{"type":45,"value":2852}," so the picker can map DOM → spec key. No layout impact.",{"type":39,"tag":2854,"props":2855,"children":2856},"style",{},[2857],{"type":45,"value":2858},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2860,"total":3024},[2861,2879,2891,2903,2918,2933,2945,2958,2971,2984,2996,3009],{"slug":2862,"name":2862,"fn":2863,"description":2864,"org":2865,"tags":2866,"stars":2876,"repoUrl":2877,"updatedAt":2878},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2867,2870,2873],{"name":2868,"slug":2869,"type":15},"Agents","agents",{"name":2871,"slug":2872,"type":15},"Automation","automation",{"name":2874,"slug":2875,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":2880,"name":2880,"fn":2881,"description":2882,"org":2883,"tags":2884,"stars":2876,"repoUrl":2877,"updatedAt":2890},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2885,2886,2889],{"name":2871,"slug":2872,"type":15},{"name":2887,"slug":2888,"type":15},"AWS","aws",{"name":2874,"slug":2875,"type":15},"2026-07-17T06:08:33.665276",{"slug":2892,"name":2892,"fn":2893,"description":2894,"org":2895,"tags":2896,"stars":2876,"repoUrl":2877,"updatedAt":2902},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2897,2898,2899],{"name":2868,"slug":2869,"type":15},{"name":2874,"slug":2875,"type":15},{"name":2900,"slug":2901,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":2904,"name":2904,"fn":2905,"description":2906,"org":2907,"tags":2908,"stars":2876,"repoUrl":2877,"updatedAt":2917},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2909,2912,2913,2914],{"name":2910,"slug":2911,"type":15},"API Development","api-development",{"name":2871,"slug":2872,"type":15},{"name":2874,"slug":2875,"type":15},{"name":2915,"slug":2916,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":2919,"name":2919,"fn":2920,"description":2921,"org":2922,"tags":2923,"stars":2876,"repoUrl":2877,"updatedAt":2932},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2924,2925,2926,2929],{"name":2874,"slug":2875,"type":15},{"name":20,"slug":21,"type":15},{"name":2927,"slug":2928,"type":15},"QA","qa",{"name":2930,"slug":2931,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":2934,"name":2934,"fn":2935,"description":2936,"org":2937,"tags":2938,"stars":2876,"repoUrl":2877,"updatedAt":2944},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2939,2940,2941],{"name":2868,"slug":2869,"type":15},{"name":2874,"slug":2875,"type":15},{"name":2942,"slug":2943,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":2946,"name":2946,"fn":2947,"description":2948,"org":2949,"tags":2950,"stars":2876,"repoUrl":2877,"updatedAt":2957},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2951,2952,2955],{"name":2874,"slug":2875,"type":15},{"name":2953,"slug":2954,"type":15},"Messaging","messaging",{"name":2956,"slug":2946,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":2959,"name":2959,"fn":2960,"description":2961,"org":2962,"tags":2963,"stars":2876,"repoUrl":2877,"updatedAt":2970},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2964,2965,2966,2967],{"name":2871,"slug":2872,"type":15},{"name":2874,"slug":2875,"type":15},{"name":2930,"slug":2931,"type":15},{"name":2968,"slug":2969,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":2972,"name":2972,"fn":2973,"description":2974,"org":2975,"tags":2976,"stars":2981,"repoUrl":2982,"updatedAt":2983},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2977,2980],{"name":2978,"slug":2979,"type":15},"Deployment","deployment",{"name":2968,"slug":2969,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":2985,"name":2985,"fn":2986,"description":2987,"org":2988,"tags":2989,"stars":2981,"repoUrl":2982,"updatedAt":2995},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2990,2993,2994],{"name":2991,"slug":2992,"type":15},"CLI","cli",{"name":2978,"slug":2979,"type":15},{"name":2968,"slug":2969,"type":15},"2026-07-17T06:08:41.84179",{"slug":2997,"name":2997,"fn":2998,"description":2999,"org":3000,"tags":3001,"stars":2981,"repoUrl":2982,"updatedAt":3008},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3002,3005,3006,3007],{"name":3003,"slug":3004,"type":15},"Best Practices","best-practices",{"name":17,"slug":18,"type":15},{"name":285,"slug":282,"type":15},{"name":13,"slug":14,"type":15},"2026-07-17T06:05:40.576913",{"slug":3010,"name":3010,"fn":3011,"description":3012,"org":3013,"tags":3014,"stars":2981,"repoUrl":2982,"updatedAt":3023},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3015,3018,3019,3022],{"name":3016,"slug":3017,"type":15},"Cost Optimization","cost-optimization",{"name":2978,"slug":2979,"type":15},{"name":3020,"slug":3021,"type":15},"Performance","performance",{"name":2968,"slug":2969,"type":15},"2026-07-17T06:04:08.327515",100,{"items":3026,"total":3112},[3027,3043,3049,3061,3078,3088,3100],{"slug":3028,"name":3028,"fn":3029,"description":3030,"org":3031,"tags":3032,"stars":22,"repoUrl":23,"updatedAt":3042},"codegen","generate code from UI specifications","Code generation utilities for json-render. Use when generating code from UI specs, building custom code exporters, traversing specs, or serializing props for @json-render\u002Fcodegen.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3033,3036,3039],{"name":3034,"slug":3035,"type":15},"Code Generation","code-generation",{"name":3037,"slug":3038,"type":15},"Engineering","engineering",{"name":3040,"slug":3041,"type":15},"JSON","json","2026-07-17T06:08:34.68038",{"slug":4,"name":4,"fn":5,"description":6,"org":3044,"tags":3045,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3046,3047,3048],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":3050,"name":3050,"fn":3051,"description":3052,"org":3053,"tags":3054,"stars":22,"repoUrl":23,"updatedAt":3060},"directives","apply custom directives to JSON specs","Pre-built custom directives for json-render — formatting, math, string manipulation, and i18n. Use when working with @json-render\u002Fdirectives, defining custom directives with defineDirective, or adding $format, $math, $concat, $count, $truncate, $pluralize, $join, or $t to specs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3055,3056,3057,3059],{"name":2871,"slug":2872,"type":15},{"name":17,"slug":18,"type":15},{"name":3058,"slug":3058,"type":15},"i18n",{"name":3040,"slug":3041,"type":15},"2026-07-17T06:04:05.866831",{"slug":3062,"name":3062,"fn":3063,"description":3064,"org":3065,"tags":3066,"stars":22,"repoUrl":23,"updatedAt":3077},"image","generate images from JSON specifications","Image renderer for json-render that turns JSON specs into SVG and PNG images via Satori. Use when working with @json-render\u002Fimage, generating OG images from JSON, creating social cards, or rendering AI-generated image specs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3067,3070,3071,3074],{"name":3068,"slug":3069,"type":15},"Images","images",{"name":3040,"slug":3041,"type":15},{"name":3072,"slug":3073,"type":15},"Satori","satori",{"name":3075,"slug":3076,"type":15},"SVG","svg","2026-07-17T06:07:42.441875",{"slug":3079,"name":3079,"fn":3080,"description":3081,"org":3082,"tags":3083,"stars":22,"repoUrl":23,"updatedAt":3087},"ink","render JSON specs as terminal UIs","Ink terminal renderer for json-render that turns JSON specs into interactive terminal UIs. Use when working with @json-render\u002Fink, building terminal UIs from JSON, creating terminal component catalogs, or rendering AI-generated specs in the terminal.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3084,3085,3086],{"name":2991,"slug":2992,"type":15},{"name":3040,"slug":3041,"type":15},{"name":13,"slug":14,"type":15},"2026-07-17T06:08:28.678043",{"slug":3089,"name":3089,"fn":3090,"description":3091,"org":3092,"tags":3093,"stars":22,"repoUrl":23,"updatedAt":3099},"jotai","manage state with Jotai","Jotai adapter for json-render's StateStore interface. Use when integrating json-render with Jotai for state management via @json-render\u002Fjotai.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3094,3095,3096],{"name":17,"slug":18,"type":15},{"name":285,"slug":282,"type":15},{"name":3097,"slug":3098,"type":15},"State Management","state-management","2026-07-17T06:05:48.244622",{"slug":3101,"name":3101,"fn":3102,"description":3103,"org":3104,"tags":3105,"stars":22,"repoUrl":23,"updatedAt":3111},"mcp","render interactive UIs with MCP","MCP Apps integration for json-render. Use when building MCP servers that render interactive UIs in Claude, ChatGPT, Cursor, or VS Code, or when integrating json-render with the Model Context Protocol.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3106,3107,3108,3110],{"name":17,"slug":18,"type":15},{"name":3040,"slug":3041,"type":15},{"name":3109,"slug":3101,"type":15},"MCP",{"name":13,"slug":14,"type":15},"2026-07-17T06:05:41.274723",25]