[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-copilotkit-copilotkit-debug":3,"mdc--14rhhv-key":51,"related-org-copilotkit-copilotkit-debug":1103,"related-repo-copilotkit-copilotkit-debug":1276},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":46,"sourceUrl":49,"mdContent":50},"copilotkit-debug","diagnose and debug CopilotKit issues","Use when diagnosing CopilotKit issues -- runtime connectivity failures, agent not responding, streaming errors, tool execution problems, transcription failures, version mismatches, and AG-UI event tracing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},"copilotkit","CopilotKit","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcopilotkit.png",[12,16,17],{"name":13,"slug":14,"type":15},"Observability","observability","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Debugging","debugging",35928,"https:\u002F\u002Fgithub.com\u002FCopilotKit\u002FCopilotKit","2026-07-12T08:06:23.407872",null,4434,[26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],"agent","agent-native","agentic-ai","agents","ai","ai-agent","ai-assistant","assistant","assistant-chat-bots","copilot","copilot-chat","generative-ui","js","llm","nextjs","open-source","react","reactjs","ts","typescript",{"repoUrl":21,"stars":20,"forks":24,"topics":47,"description":48},[26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],"The Frontend Stack for Agents & Generative UI. React, Angular, Mobile, Slack, and more.  Makers of the AG-UI Protocol","https:\u002F\u002Fgithub.com\u002FCopilotKit\u002FCopilotKit\u002Ftree\u002FHEAD\u002Fskills\u002Fcopilotkit-debug","---\nname: copilotkit-debug\ndescription: \"Use when diagnosing CopilotKit issues -- runtime connectivity failures, agent not responding, streaming errors, tool execution problems, transcription failures, version mismatches, and AG-UI event tracing.\"\nversion: 1.0.0\n---\n\n# CopilotKit Debugging Skill\n\n## When to Use\n\nInvoke this skill when:\n\n- The CopilotKit runtime is unreachable or returning errors\n- Agents fail to connect, respond, or stream events\n- Frontend tools are not executing or returning results\n- Transcription (voice) is failing\n- Version mismatch errors appear between packages\n- AG-UI SSE events are malformed or missing\n- CORS errors block browser requests to the runtime\n\n## Diagnostic Workflow\n\n### Step 1: Gather Information\n\nBefore proposing any fix, collect:\n\n1. **Package versions** -- Run `npm ls @copilotkit\u002Fruntime @copilotkit\u002Freact @copilotkit\u002Fcore @ag-ui\u002Fclient` (or the v1 equivalents). Version mismatches between runtime and react packages are a common root cause.\n2. **Runtime mode** -- Is this SSE mode (`CopilotSseRuntime`) or Intelligence mode (`CopilotIntelligenceRuntime`)? Check the runtime constructor.\n3. **Transport configuration** -- What is `runtimeUrl` set to on the `CopilotKit` provider (from `@copilotkit\u002Freact-core\u002Fv2`)? Does it match the `basePath` in `createCopilotEndpoint`?\n4. **Agent type** -- Is the agent a `BuiltInAgent`, `LangGraphAgent`, `A2AAgent`, or custom `AbstractAgent`?\n5. **Error messages** -- Collect the exact error from browser console and server logs. CopilotKit uses structured error codes (see `references\u002Ferror-patterns.md`).\n6. **Browser network tab** -- Check the `\u002Finfo` request (runtime discovery), the `\u002Fagent\u002F:id\u002Frun` SSE stream, and any CORS preflight failures.\n\n### Step 2: Check Logs and Error Codes\n\nCopilotKit has three error code systems:\n\n- **V1 error codes** -- Legacy error codes from the v1 runtime layer (`@copilotkit\u002Fruntime`). Codes like `NETWORK_ERROR`, `AGENT_NOT_FOUND`, `API_NOT_FOUND`. Still surfaced in some contexts since `@copilotkit\u002F*` packages wrap v2 internally.\n- **V2 `CopilotKitCoreErrorCode`** -- Used by `@copilotkit\u002Fcore`. Codes like `runtime_info_fetch_failed`, `agent_connect_failed`, `agent_run_failed`.\n- **`TranscriptionErrorCode`** -- Used by both v1 and v2 for voice transcription. Codes like `service_not_configured`, `rate_limited`, `auth_failed`.\n\nMatch the error code to the catalog in `references\u002Ferror-patterns.md` for root cause and resolution.\n\n### Step 3: Trace AG-UI Events\n\nFor streaming\u002Fagent issues, trace the AG-UI event flow:\n\n1. **RunStartedEvent** -- Confirms the agent run was initiated\n2. **TextMessageStartEvent \u002F TextMessageChunkEvent \u002F TextMessageEndEvent** -- Text streaming\n3. **ToolCallStartEvent \u002F ToolCallArgsEvent \u002F ToolCallEndEvent** -- Tool invocations\n4. **ToolCallResultEvent** -- Tool results flowing back\n5. **StateSnapshotEvent \u002F StateDeltaEvent** -- Agent state synchronization\n6. **ReasoningStartEvent \u002F ReasoningMessageContentEvent \u002F ReasoningMessageEndEvent** -- Reasoning tokens (can cause stalls, see issue #3323)\n7. **RunFinishedEvent** -- Successful completion\n8. **RunErrorEvent** -- Agent-level error\n\nEnable the CopilotKit Web Inspector (`@copilotkit\u002Fweb-inspector`) to see events in real time. Or check the SSE stream directly in the browser Network tab -- each event is a `data:` line in the `text\u002Fevent-stream` response.\n\n### Step 4: Identify Root Cause\n\nUse the reference documents to match symptoms to known issues:\n\n- **`references\u002Fruntime-debugging.md`** -- Connectivity, CORS, transport, SSE streaming\n- **`references\u002Fagent-debugging.md`** -- Agent discovery, state sync, tool execution, AG-UI protocol\n- **`references\u002Ferror-patterns.md`** -- Complete error code catalog with resolutions\n- **`references\u002Fquick-workflows.md`** -- Step-by-step diagnostic sequences for common scenarios\n\n### Step 5: Fix and Verify\n\n1. Apply the fix\n2. Verify the `\u002Finfo` endpoint returns the expected agent list\n3. Confirm the SSE stream produces a complete event sequence (RunStarted through RunFinished)\n4. Check the browser console for any remaining structured errors\n\n## Using mcp-docs for Live Documentation Lookups\n\nDuring debugging, use the `copilotkit-docs` MCP server to look up the latest CopilotKit documentation. This server provides two tools: `search-docs` (search documentation) and `search-code` (search source code examples).\n\n### MCP Setup\n\n**Claude Code:** The MCP server is auto-configured by the plugin's `.mcp.json` -- no manual setup needed. The agent can call the `search-docs` and `search-code` tools from the `copilotkit-docs` server directly.\n\n**Codex:** Add the following to your `.codex\u002Fconfig.toml`:\n\n```toml\n[mcp_servers.copilotkit-docs]\ntype = \"http\"\nurl = \"https:\u002F\u002Fmcp.copilotkit.ai\u002Fmcp\"\n```\n\n### Tool Usage\n\nThe `search-docs` and `search-code` tools are invoked as MCP tool calls (not CLI commands). Examples of what to search for during debugging:\n\n```\nsearch-docs(\"AGENT_NOT_FOUND\")\nsearch-docs(\"CopilotRuntime configuration\")\nsearch-docs(\"AG-UI protocol events\")\nsearch-docs(\"troubleshooting common issues\")\nsearch-docs(\"CORS configuration copilotkit\")\nsearch-code(\"CopilotRuntime error handling\")\n```\n\nThe official troubleshooting docs are at:\n\n- `https:\u002F\u002Fdocs.copilotkit.ai\u002Ftroubleshooting\u002Fcommon-issues`\n- `https:\u002F\u002Fdocs.copilotkit.ai\u002Fcoagents\u002Ftroubleshooting\u002Fcommon-issues`\n\n## Key File Locations in the CopilotKit Codebase\n\n| Component                    | Path                                                                 |\n| ---------------------------- | -------------------------------------------------------------------- |\n| V1 Error classes & codes     | `packages\u002Fv1\u002Fshared\u002Fsrc\u002Futils\u002Ferrors.ts`                             |\n| V2 Core error codes          | `packages\u002Fv2\u002Fcore\u002Fsrc\u002Fcore\u002Fcore.ts` (`CopilotKitCoreErrorCode` enum) |\n| V2 Transcription errors      | `packages\u002Fv2\u002Fshared\u002Fsrc\u002Ftranscription-errors.ts`                     |\n| Runtime SSE response         | `packages\u002Fv2\u002Fruntime\u002Fsrc\u002Fhandlers\u002Fshared\u002Fsse-response.ts`            |\n| Runtime info endpoint        | `packages\u002Fv2\u002Fruntime\u002Fsrc\u002Fhandlers\u002Fget-runtime-info.ts`               |\n| Runtime CORS config          | `packages\u002Fv2\u002Fruntime\u002Fsrc\u002Fendpoints\u002Fhono.ts`                          |\n| Intelligence platform client | `packages\u002Fv2\u002Fruntime\u002Fsrc\u002Fintelligence-platform\u002Fclient.ts`            |\n| Agent package (BuiltInAgent) | `packages\u002Fv2\u002Fagent\u002Fsrc\u002Findex.ts`                                     |\n| Web Inspector                | `packages\u002Fv2\u002Fweb-inspector\u002Fsrc\u002Findex.ts`                             |\n",{"data":52,"body":54},{"name":4,"description":6,"version":53},"1.0.0",{"type":55,"children":56},"root",[57,66,73,79,119,125,132,137,320,326,331,463,475,481,486,569,598,604,609,667,673,703,709,738,744,783,801,841,847,865,875,880,901,907,1097],{"type":58,"tag":59,"props":60,"children":62},"element","h1",{"id":61},"copilotkit-debugging-skill",[63],{"type":64,"value":65},"text","CopilotKit Debugging Skill",{"type":58,"tag":67,"props":68,"children":70},"h2",{"id":69},"when-to-use",[71],{"type":64,"value":72},"When to Use",{"type":58,"tag":74,"props":75,"children":76},"p",{},[77],{"type":64,"value":78},"Invoke this skill when:",{"type":58,"tag":80,"props":81,"children":82},"ul",{},[83,89,94,99,104,109,114],{"type":58,"tag":84,"props":85,"children":86},"li",{},[87],{"type":64,"value":88},"The CopilotKit runtime is unreachable or returning errors",{"type":58,"tag":84,"props":90,"children":91},{},[92],{"type":64,"value":93},"Agents fail to connect, respond, or stream events",{"type":58,"tag":84,"props":95,"children":96},{},[97],{"type":64,"value":98},"Frontend tools are not executing or returning results",{"type":58,"tag":84,"props":100,"children":101},{},[102],{"type":64,"value":103},"Transcription (voice) is failing",{"type":58,"tag":84,"props":105,"children":106},{},[107],{"type":64,"value":108},"Version mismatch errors appear between packages",{"type":58,"tag":84,"props":110,"children":111},{},[112],{"type":64,"value":113},"AG-UI SSE events are malformed or missing",{"type":58,"tag":84,"props":115,"children":116},{},[117],{"type":64,"value":118},"CORS errors block browser requests to the runtime",{"type":58,"tag":67,"props":120,"children":122},{"id":121},"diagnostic-workflow",[123],{"type":64,"value":124},"Diagnostic Workflow",{"type":58,"tag":126,"props":127,"children":129},"h3",{"id":128},"step-1-gather-information",[130],{"type":64,"value":131},"Step 1: Gather Information",{"type":58,"tag":74,"props":133,"children":134},{},[135],{"type":64,"value":136},"Before proposing any fix, collect:",{"type":58,"tag":138,"props":139,"children":140},"ol",{},[141,161,187,236,276,294],{"type":58,"tag":84,"props":142,"children":143},{},[144,150,152,159],{"type":58,"tag":145,"props":146,"children":147},"strong",{},[148],{"type":64,"value":149},"Package versions",{"type":64,"value":151}," -- Run ",{"type":58,"tag":153,"props":154,"children":156},"code",{"className":155},[],[157],{"type":64,"value":158},"npm ls @copilotkit\u002Fruntime @copilotkit\u002Freact @copilotkit\u002Fcore @ag-ui\u002Fclient",{"type":64,"value":160}," (or the v1 equivalents). Version mismatches between runtime and react packages are a common root cause.",{"type":58,"tag":84,"props":162,"children":163},{},[164,169,171,177,179,185],{"type":58,"tag":145,"props":165,"children":166},{},[167],{"type":64,"value":168},"Runtime mode",{"type":64,"value":170}," -- Is this SSE mode (",{"type":58,"tag":153,"props":172,"children":174},{"className":173},[],[175],{"type":64,"value":176},"CopilotSseRuntime",{"type":64,"value":178},") or Intelligence mode (",{"type":58,"tag":153,"props":180,"children":182},{"className":181},[],[183],{"type":64,"value":184},"CopilotIntelligenceRuntime",{"type":64,"value":186},")? Check the runtime constructor.",{"type":58,"tag":84,"props":188,"children":189},{},[190,195,197,203,205,210,212,218,220,226,228,234],{"type":58,"tag":145,"props":191,"children":192},{},[193],{"type":64,"value":194},"Transport configuration",{"type":64,"value":196}," -- What is ",{"type":58,"tag":153,"props":198,"children":200},{"className":199},[],[201],{"type":64,"value":202},"runtimeUrl",{"type":64,"value":204}," set to on the ",{"type":58,"tag":153,"props":206,"children":208},{"className":207},[],[209],{"type":64,"value":9},{"type":64,"value":211}," provider (from ",{"type":58,"tag":153,"props":213,"children":215},{"className":214},[],[216],{"type":64,"value":217},"@copilotkit\u002Freact-core\u002Fv2",{"type":64,"value":219},")? Does it match the ",{"type":58,"tag":153,"props":221,"children":223},{"className":222},[],[224],{"type":64,"value":225},"basePath",{"type":64,"value":227}," in ",{"type":58,"tag":153,"props":229,"children":231},{"className":230},[],[232],{"type":64,"value":233},"createCopilotEndpoint",{"type":64,"value":235},"?",{"type":58,"tag":84,"props":237,"children":238},{},[239,244,246,252,254,260,261,267,269,275],{"type":58,"tag":145,"props":240,"children":241},{},[242],{"type":64,"value":243},"Agent type",{"type":64,"value":245}," -- Is the agent a ",{"type":58,"tag":153,"props":247,"children":249},{"className":248},[],[250],{"type":64,"value":251},"BuiltInAgent",{"type":64,"value":253},", ",{"type":58,"tag":153,"props":255,"children":257},{"className":256},[],[258],{"type":64,"value":259},"LangGraphAgent",{"type":64,"value":253},{"type":58,"tag":153,"props":262,"children":264},{"className":263},[],[265],{"type":64,"value":266},"A2AAgent",{"type":64,"value":268},", or custom ",{"type":58,"tag":153,"props":270,"children":272},{"className":271},[],[273],{"type":64,"value":274},"AbstractAgent",{"type":64,"value":235},{"type":58,"tag":84,"props":277,"children":278},{},[279,284,286,292],{"type":58,"tag":145,"props":280,"children":281},{},[282],{"type":64,"value":283},"Error messages",{"type":64,"value":285}," -- Collect the exact error from browser console and server logs. CopilotKit uses structured error codes (see ",{"type":58,"tag":153,"props":287,"children":289},{"className":288},[],[290],{"type":64,"value":291},"references\u002Ferror-patterns.md",{"type":64,"value":293},").",{"type":58,"tag":84,"props":295,"children":296},{},[297,302,304,310,312,318],{"type":58,"tag":145,"props":298,"children":299},{},[300],{"type":64,"value":301},"Browser network tab",{"type":64,"value":303}," -- Check the ",{"type":58,"tag":153,"props":305,"children":307},{"className":306},[],[308],{"type":64,"value":309},"\u002Finfo",{"type":64,"value":311}," request (runtime discovery), the ",{"type":58,"tag":153,"props":313,"children":315},{"className":314},[],[316],{"type":64,"value":317},"\u002Fagent\u002F:id\u002Frun",{"type":64,"value":319}," SSE stream, and any CORS preflight failures.",{"type":58,"tag":126,"props":321,"children":323},{"id":322},"step-2-check-logs-and-error-codes",[324],{"type":64,"value":325},"Step 2: Check Logs and Error Codes",{"type":58,"tag":74,"props":327,"children":328},{},[329],{"type":64,"value":330},"CopilotKit has three error code systems:",{"type":58,"tag":80,"props":332,"children":333},{},[334,382,428],{"type":58,"tag":84,"props":335,"children":336},{},[337,342,344,350,352,358,359,365,366,372,374,380],{"type":58,"tag":145,"props":338,"children":339},{},[340],{"type":64,"value":341},"V1 error codes",{"type":64,"value":343}," -- Legacy error codes from the v1 runtime layer (",{"type":58,"tag":153,"props":345,"children":347},{"className":346},[],[348],{"type":64,"value":349},"@copilotkit\u002Fruntime",{"type":64,"value":351},"). Codes like ",{"type":58,"tag":153,"props":353,"children":355},{"className":354},[],[356],{"type":64,"value":357},"NETWORK_ERROR",{"type":64,"value":253},{"type":58,"tag":153,"props":360,"children":362},{"className":361},[],[363],{"type":64,"value":364},"AGENT_NOT_FOUND",{"type":64,"value":253},{"type":58,"tag":153,"props":367,"children":369},{"className":368},[],[370],{"type":64,"value":371},"API_NOT_FOUND",{"type":64,"value":373},". Still surfaced in some contexts since ",{"type":58,"tag":153,"props":375,"children":377},{"className":376},[],[378],{"type":64,"value":379},"@copilotkit\u002F*",{"type":64,"value":381}," packages wrap v2 internally.",{"type":58,"tag":84,"props":383,"children":384},{},[385,396,398,404,406,412,413,419,420,426],{"type":58,"tag":145,"props":386,"children":387},{},[388,390],{"type":64,"value":389},"V2 ",{"type":58,"tag":153,"props":391,"children":393},{"className":392},[],[394],{"type":64,"value":395},"CopilotKitCoreErrorCode",{"type":64,"value":397}," -- Used by ",{"type":58,"tag":153,"props":399,"children":401},{"className":400},[],[402],{"type":64,"value":403},"@copilotkit\u002Fcore",{"type":64,"value":405},". Codes like ",{"type":58,"tag":153,"props":407,"children":409},{"className":408},[],[410],{"type":64,"value":411},"runtime_info_fetch_failed",{"type":64,"value":253},{"type":58,"tag":153,"props":414,"children":416},{"className":415},[],[417],{"type":64,"value":418},"agent_connect_failed",{"type":64,"value":253},{"type":58,"tag":153,"props":421,"children":423},{"className":422},[],[424],{"type":64,"value":425},"agent_run_failed",{"type":64,"value":427},".",{"type":58,"tag":84,"props":429,"children":430},{},[431,440,442,448,449,455,456,462],{"type":58,"tag":145,"props":432,"children":433},{},[434],{"type":58,"tag":153,"props":435,"children":437},{"className":436},[],[438],{"type":64,"value":439},"TranscriptionErrorCode",{"type":64,"value":441}," -- Used by both v1 and v2 for voice transcription. Codes like ",{"type":58,"tag":153,"props":443,"children":445},{"className":444},[],[446],{"type":64,"value":447},"service_not_configured",{"type":64,"value":253},{"type":58,"tag":153,"props":450,"children":452},{"className":451},[],[453],{"type":64,"value":454},"rate_limited",{"type":64,"value":253},{"type":58,"tag":153,"props":457,"children":459},{"className":458},[],[460],{"type":64,"value":461},"auth_failed",{"type":64,"value":427},{"type":58,"tag":74,"props":464,"children":465},{},[466,468,473],{"type":64,"value":467},"Match the error code to the catalog in ",{"type":58,"tag":153,"props":469,"children":471},{"className":470},[],[472],{"type":64,"value":291},{"type":64,"value":474}," for root cause and resolution.",{"type":58,"tag":126,"props":476,"children":478},{"id":477},"step-3-trace-ag-ui-events",[479],{"type":64,"value":480},"Step 3: Trace AG-UI Events",{"type":58,"tag":74,"props":482,"children":483},{},[484],{"type":64,"value":485},"For streaming\u002Fagent issues, trace the AG-UI event flow:",{"type":58,"tag":138,"props":487,"children":488},{},[489,499,509,519,529,539,549,559],{"type":58,"tag":84,"props":490,"children":491},{},[492,497],{"type":58,"tag":145,"props":493,"children":494},{},[495],{"type":64,"value":496},"RunStartedEvent",{"type":64,"value":498}," -- Confirms the agent run was initiated",{"type":58,"tag":84,"props":500,"children":501},{},[502,507],{"type":58,"tag":145,"props":503,"children":504},{},[505],{"type":64,"value":506},"TextMessageStartEvent \u002F TextMessageChunkEvent \u002F TextMessageEndEvent",{"type":64,"value":508}," -- Text streaming",{"type":58,"tag":84,"props":510,"children":511},{},[512,517],{"type":58,"tag":145,"props":513,"children":514},{},[515],{"type":64,"value":516},"ToolCallStartEvent \u002F ToolCallArgsEvent \u002F ToolCallEndEvent",{"type":64,"value":518}," -- Tool invocations",{"type":58,"tag":84,"props":520,"children":521},{},[522,527],{"type":58,"tag":145,"props":523,"children":524},{},[525],{"type":64,"value":526},"ToolCallResultEvent",{"type":64,"value":528}," -- Tool results flowing back",{"type":58,"tag":84,"props":530,"children":531},{},[532,537],{"type":58,"tag":145,"props":533,"children":534},{},[535],{"type":64,"value":536},"StateSnapshotEvent \u002F StateDeltaEvent",{"type":64,"value":538}," -- Agent state synchronization",{"type":58,"tag":84,"props":540,"children":541},{},[542,547],{"type":58,"tag":145,"props":543,"children":544},{},[545],{"type":64,"value":546},"ReasoningStartEvent \u002F ReasoningMessageContentEvent \u002F ReasoningMessageEndEvent",{"type":64,"value":548}," -- Reasoning tokens (can cause stalls, see issue #3323)",{"type":58,"tag":84,"props":550,"children":551},{},[552,557],{"type":58,"tag":145,"props":553,"children":554},{},[555],{"type":64,"value":556},"RunFinishedEvent",{"type":64,"value":558}," -- Successful completion",{"type":58,"tag":84,"props":560,"children":561},{},[562,567],{"type":58,"tag":145,"props":563,"children":564},{},[565],{"type":64,"value":566},"RunErrorEvent",{"type":64,"value":568}," -- Agent-level error",{"type":58,"tag":74,"props":570,"children":571},{},[572,574,580,582,588,590,596],{"type":64,"value":573},"Enable the CopilotKit Web Inspector (",{"type":58,"tag":153,"props":575,"children":577},{"className":576},[],[578],{"type":64,"value":579},"@copilotkit\u002Fweb-inspector",{"type":64,"value":581},") to see events in real time. Or check the SSE stream directly in the browser Network tab -- each event is a ",{"type":58,"tag":153,"props":583,"children":585},{"className":584},[],[586],{"type":64,"value":587},"data:",{"type":64,"value":589}," line in the ",{"type":58,"tag":153,"props":591,"children":593},{"className":592},[],[594],{"type":64,"value":595},"text\u002Fevent-stream",{"type":64,"value":597}," response.",{"type":58,"tag":126,"props":599,"children":601},{"id":600},"step-4-identify-root-cause",[602],{"type":64,"value":603},"Step 4: Identify Root Cause",{"type":58,"tag":74,"props":605,"children":606},{},[607],{"type":64,"value":608},"Use the reference documents to match symptoms to known issues:",{"type":58,"tag":80,"props":610,"children":611},{},[612,626,640,653],{"type":58,"tag":84,"props":613,"children":614},{},[615,624],{"type":58,"tag":145,"props":616,"children":617},{},[618],{"type":58,"tag":153,"props":619,"children":621},{"className":620},[],[622],{"type":64,"value":623},"references\u002Fruntime-debugging.md",{"type":64,"value":625}," -- Connectivity, CORS, transport, SSE streaming",{"type":58,"tag":84,"props":627,"children":628},{},[629,638],{"type":58,"tag":145,"props":630,"children":631},{},[632],{"type":58,"tag":153,"props":633,"children":635},{"className":634},[],[636],{"type":64,"value":637},"references\u002Fagent-debugging.md",{"type":64,"value":639}," -- Agent discovery, state sync, tool execution, AG-UI protocol",{"type":58,"tag":84,"props":641,"children":642},{},[643,651],{"type":58,"tag":145,"props":644,"children":645},{},[646],{"type":58,"tag":153,"props":647,"children":649},{"className":648},[],[650],{"type":64,"value":291},{"type":64,"value":652}," -- Complete error code catalog with resolutions",{"type":58,"tag":84,"props":654,"children":655},{},[656,665],{"type":58,"tag":145,"props":657,"children":658},{},[659],{"type":58,"tag":153,"props":660,"children":662},{"className":661},[],[663],{"type":64,"value":664},"references\u002Fquick-workflows.md",{"type":64,"value":666}," -- Step-by-step diagnostic sequences for common scenarios",{"type":58,"tag":126,"props":668,"children":670},{"id":669},"step-5-fix-and-verify",[671],{"type":64,"value":672},"Step 5: Fix and Verify",{"type":58,"tag":138,"props":674,"children":675},{},[676,681,693,698],{"type":58,"tag":84,"props":677,"children":678},{},[679],{"type":64,"value":680},"Apply the fix",{"type":58,"tag":84,"props":682,"children":683},{},[684,686,691],{"type":64,"value":685},"Verify the ",{"type":58,"tag":153,"props":687,"children":689},{"className":688},[],[690],{"type":64,"value":309},{"type":64,"value":692}," endpoint returns the expected agent list",{"type":58,"tag":84,"props":694,"children":695},{},[696],{"type":64,"value":697},"Confirm the SSE stream produces a complete event sequence (RunStarted through RunFinished)",{"type":58,"tag":84,"props":699,"children":700},{},[701],{"type":64,"value":702},"Check the browser console for any remaining structured errors",{"type":58,"tag":67,"props":704,"children":706},{"id":705},"using-mcp-docs-for-live-documentation-lookups",[707],{"type":64,"value":708},"Using mcp-docs for Live Documentation Lookups",{"type":58,"tag":74,"props":710,"children":711},{},[712,714,720,722,728,730,736],{"type":64,"value":713},"During debugging, use the ",{"type":58,"tag":153,"props":715,"children":717},{"className":716},[],[718],{"type":64,"value":719},"copilotkit-docs",{"type":64,"value":721}," MCP server to look up the latest CopilotKit documentation. This server provides two tools: ",{"type":58,"tag":153,"props":723,"children":725},{"className":724},[],[726],{"type":64,"value":727},"search-docs",{"type":64,"value":729}," (search documentation) and ",{"type":58,"tag":153,"props":731,"children":733},{"className":732},[],[734],{"type":64,"value":735},"search-code",{"type":64,"value":737}," (search source code examples).",{"type":58,"tag":126,"props":739,"children":741},{"id":740},"mcp-setup",[742],{"type":64,"value":743},"MCP Setup",{"type":58,"tag":74,"props":745,"children":746},{},[747,752,754,760,762,767,769,774,776,781],{"type":58,"tag":145,"props":748,"children":749},{},[750],{"type":64,"value":751},"Claude Code:",{"type":64,"value":753}," The MCP server is auto-configured by the plugin's ",{"type":58,"tag":153,"props":755,"children":757},{"className":756},[],[758],{"type":64,"value":759},".mcp.json",{"type":64,"value":761}," -- no manual setup needed. The agent can call the ",{"type":58,"tag":153,"props":763,"children":765},{"className":764},[],[766],{"type":64,"value":727},{"type":64,"value":768}," and ",{"type":58,"tag":153,"props":770,"children":772},{"className":771},[],[773],{"type":64,"value":735},{"type":64,"value":775}," tools from the ",{"type":58,"tag":153,"props":777,"children":779},{"className":778},[],[780],{"type":64,"value":719},{"type":64,"value":782}," server directly.",{"type":58,"tag":74,"props":784,"children":785},{},[786,791,793,799],{"type":58,"tag":145,"props":787,"children":788},{},[789],{"type":64,"value":790},"Codex:",{"type":64,"value":792}," Add the following to your ",{"type":58,"tag":153,"props":794,"children":796},{"className":795},[],[797],{"type":64,"value":798},".codex\u002Fconfig.toml",{"type":64,"value":800},":",{"type":58,"tag":802,"props":803,"children":808},"pre",{"className":804,"code":805,"language":806,"meta":807,"style":807},"language-toml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","[mcp_servers.copilotkit-docs]\ntype = \"http\"\nurl = \"https:\u002F\u002Fmcp.copilotkit.ai\u002Fmcp\"\n","toml","",[809],{"type":58,"tag":153,"props":810,"children":811},{"__ignoreMap":807},[812,823,832],{"type":58,"tag":813,"props":814,"children":817},"span",{"class":815,"line":816},"line",1,[818],{"type":58,"tag":813,"props":819,"children":820},{},[821],{"type":64,"value":822},"[mcp_servers.copilotkit-docs]\n",{"type":58,"tag":813,"props":824,"children":826},{"class":815,"line":825},2,[827],{"type":58,"tag":813,"props":828,"children":829},{},[830],{"type":64,"value":831},"type = \"http\"\n",{"type":58,"tag":813,"props":833,"children":835},{"class":815,"line":834},3,[836],{"type":58,"tag":813,"props":837,"children":838},{},[839],{"type":64,"value":840},"url = \"https:\u002F\u002Fmcp.copilotkit.ai\u002Fmcp\"\n",{"type":58,"tag":126,"props":842,"children":844},{"id":843},"tool-usage",[845],{"type":64,"value":846},"Tool Usage",{"type":58,"tag":74,"props":848,"children":849},{},[850,852,857,858,863],{"type":64,"value":851},"The ",{"type":58,"tag":153,"props":853,"children":855},{"className":854},[],[856],{"type":64,"value":727},{"type":64,"value":768},{"type":58,"tag":153,"props":859,"children":861},{"className":860},[],[862],{"type":64,"value":735},{"type":64,"value":864}," tools are invoked as MCP tool calls (not CLI commands). Examples of what to search for during debugging:",{"type":58,"tag":802,"props":866,"children":870},{"className":867,"code":869,"language":64},[868],"language-text","search-docs(\"AGENT_NOT_FOUND\")\nsearch-docs(\"CopilotRuntime configuration\")\nsearch-docs(\"AG-UI protocol events\")\nsearch-docs(\"troubleshooting common issues\")\nsearch-docs(\"CORS configuration copilotkit\")\nsearch-code(\"CopilotRuntime error handling\")\n",[871],{"type":58,"tag":153,"props":872,"children":873},{"__ignoreMap":807},[874],{"type":64,"value":869},{"type":58,"tag":74,"props":876,"children":877},{},[878],{"type":64,"value":879},"The official troubleshooting docs are at:",{"type":58,"tag":80,"props":881,"children":882},{},[883,892],{"type":58,"tag":84,"props":884,"children":885},{},[886],{"type":58,"tag":153,"props":887,"children":889},{"className":888},[],[890],{"type":64,"value":891},"https:\u002F\u002Fdocs.copilotkit.ai\u002Ftroubleshooting\u002Fcommon-issues",{"type":58,"tag":84,"props":893,"children":894},{},[895],{"type":58,"tag":153,"props":896,"children":898},{"className":897},[],[899],{"type":64,"value":900},"https:\u002F\u002Fdocs.copilotkit.ai\u002Fcoagents\u002Ftroubleshooting\u002Fcommon-issues",{"type":58,"tag":67,"props":902,"children":904},{"id":903},"key-file-locations-in-the-copilotkit-codebase",[905],{"type":64,"value":906},"Key File Locations in the CopilotKit Codebase",{"type":58,"tag":908,"props":909,"children":910},"table",{},[911,930],{"type":58,"tag":912,"props":913,"children":914},"thead",{},[915],{"type":58,"tag":916,"props":917,"children":918},"tr",{},[919,925],{"type":58,"tag":920,"props":921,"children":922},"th",{},[923],{"type":64,"value":924},"Component",{"type":58,"tag":920,"props":926,"children":927},{},[928],{"type":64,"value":929},"Path",{"type":58,"tag":931,"props":932,"children":933},"tbody",{},[934,952,978,995,1012,1029,1046,1063,1080],{"type":58,"tag":916,"props":935,"children":936},{},[937,943],{"type":58,"tag":938,"props":939,"children":940},"td",{},[941],{"type":64,"value":942},"V1 Error classes & codes",{"type":58,"tag":938,"props":944,"children":945},{},[946],{"type":58,"tag":153,"props":947,"children":949},{"className":948},[],[950],{"type":64,"value":951},"packages\u002Fv1\u002Fshared\u002Fsrc\u002Futils\u002Ferrors.ts",{"type":58,"tag":916,"props":953,"children":954},{},[955,960],{"type":58,"tag":938,"props":956,"children":957},{},[958],{"type":64,"value":959},"V2 Core error codes",{"type":58,"tag":938,"props":961,"children":962},{},[963,969,971,976],{"type":58,"tag":153,"props":964,"children":966},{"className":965},[],[967],{"type":64,"value":968},"packages\u002Fv2\u002Fcore\u002Fsrc\u002Fcore\u002Fcore.ts",{"type":64,"value":970}," (",{"type":58,"tag":153,"props":972,"children":974},{"className":973},[],[975],{"type":64,"value":395},{"type":64,"value":977}," enum)",{"type":58,"tag":916,"props":979,"children":980},{},[981,986],{"type":58,"tag":938,"props":982,"children":983},{},[984],{"type":64,"value":985},"V2 Transcription errors",{"type":58,"tag":938,"props":987,"children":988},{},[989],{"type":58,"tag":153,"props":990,"children":992},{"className":991},[],[993],{"type":64,"value":994},"packages\u002Fv2\u002Fshared\u002Fsrc\u002Ftranscription-errors.ts",{"type":58,"tag":916,"props":996,"children":997},{},[998,1003],{"type":58,"tag":938,"props":999,"children":1000},{},[1001],{"type":64,"value":1002},"Runtime SSE response",{"type":58,"tag":938,"props":1004,"children":1005},{},[1006],{"type":58,"tag":153,"props":1007,"children":1009},{"className":1008},[],[1010],{"type":64,"value":1011},"packages\u002Fv2\u002Fruntime\u002Fsrc\u002Fhandlers\u002Fshared\u002Fsse-response.ts",{"type":58,"tag":916,"props":1013,"children":1014},{},[1015,1020],{"type":58,"tag":938,"props":1016,"children":1017},{},[1018],{"type":64,"value":1019},"Runtime info endpoint",{"type":58,"tag":938,"props":1021,"children":1022},{},[1023],{"type":58,"tag":153,"props":1024,"children":1026},{"className":1025},[],[1027],{"type":64,"value":1028},"packages\u002Fv2\u002Fruntime\u002Fsrc\u002Fhandlers\u002Fget-runtime-info.ts",{"type":58,"tag":916,"props":1030,"children":1031},{},[1032,1037],{"type":58,"tag":938,"props":1033,"children":1034},{},[1035],{"type":64,"value":1036},"Runtime CORS config",{"type":58,"tag":938,"props":1038,"children":1039},{},[1040],{"type":58,"tag":153,"props":1041,"children":1043},{"className":1042},[],[1044],{"type":64,"value":1045},"packages\u002Fv2\u002Fruntime\u002Fsrc\u002Fendpoints\u002Fhono.ts",{"type":58,"tag":916,"props":1047,"children":1048},{},[1049,1054],{"type":58,"tag":938,"props":1050,"children":1051},{},[1052],{"type":64,"value":1053},"Intelligence platform client",{"type":58,"tag":938,"props":1055,"children":1056},{},[1057],{"type":58,"tag":153,"props":1058,"children":1060},{"className":1059},[],[1061],{"type":64,"value":1062},"packages\u002Fv2\u002Fruntime\u002Fsrc\u002Fintelligence-platform\u002Fclient.ts",{"type":58,"tag":916,"props":1064,"children":1065},{},[1066,1071],{"type":58,"tag":938,"props":1067,"children":1068},{},[1069],{"type":64,"value":1070},"Agent package (BuiltInAgent)",{"type":58,"tag":938,"props":1072,"children":1073},{},[1074],{"type":58,"tag":153,"props":1075,"children":1077},{"className":1076},[],[1078],{"type":64,"value":1079},"packages\u002Fv2\u002Fagent\u002Fsrc\u002Findex.ts",{"type":58,"tag":916,"props":1081,"children":1082},{},[1083,1088],{"type":58,"tag":938,"props":1084,"children":1085},{},[1086],{"type":64,"value":1087},"Web Inspector",{"type":58,"tag":938,"props":1089,"children":1090},{},[1091],{"type":58,"tag":153,"props":1092,"children":1094},{"className":1093},[],[1095],{"type":64,"value":1096},"packages\u002Fv2\u002Fweb-inspector\u002Fsrc\u002Findex.ts",{"type":58,"tag":1098,"props":1099,"children":1100},"style",{},[1101],{"type":64,"value":1102},"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":1104,"total":1275},[1105,1122,1139,1156,1162,1175,1188,1202,1214,1226,1241,1256],{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":20,"repoUrl":21,"updatedAt":1121},"a2ui-renderer","render declarative agent UI surfaces","Render A2UI (Agent-to-UI declarative surfaces) in CopilotKit v2. Enable the runtime via CopilotRuntime({ a2ui: {...} }), then enable the provider via \u003CCopilotKit a2ui={{ theme }}>. Auto-activates via \u002Finfo — do NOT manually pass renderActivityMessages. createA2UIMessageRenderer ships from @copilotkit\u002Freact-core\u002Fv2; low-level primitives (A2UIProvider, A2UIRenderer, createCatalog) ship from @copilotkit\u002Fa2ui-renderer. Covers theme customization, createSurface dedup, action-bridge try\u002Ffinally cleanup. Load when an agent emits A2UI operations (createSurface \u002F updateComponents \u002F updateDataModel), when wiring a2ui on CopilotRuntime, or when styling A2UI surfaces.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1111,1112,1115,1118],{"name":9,"slug":8,"type":15},{"name":1113,"slug":1114,"type":15},"Design","design",{"name":1116,"slug":1117,"type":15},"Frontend","frontend",{"name":1119,"slug":1120,"type":15},"UI Components","ui-components","2026-07-12T08:06:36.722091",{"slug":1123,"name":1123,"fn":1124,"description":1125,"org":1126,"tags":1127,"stars":20,"repoUrl":21,"updatedAt":1138},"copilotkit-agui","build and debug CopilotKit agent backends","Use when building custom agent backends, implementing the AG-UI protocol, debugging streaming issues, or understanding how agents communicate with frontends. Covers event types, SSE transport, AbstractAgent\u002FHttpAgent patterns, state synchronization, tool calls, and human-in-the-loop flows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1128,1130,1133,1136,1137],{"name":1129,"slug":29,"type":15},"Agents",{"name":1131,"slug":1132,"type":15},"API Development","api-development",{"name":1134,"slug":1135,"type":15},"Backend","backend",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"2026-07-12T08:06:22.179755",{"slug":1140,"name":1140,"fn":1141,"description":1142,"org":1143,"tags":1144,"stars":20,"repoUrl":21,"updatedAt":1155},"copilotkit-contribute","contribute to CopilotKit open-source project","Use when contributing to the CopilotKit open-source project — forking, cloning, setting up the monorepo, creating branches, running tests, and submitting pull requests against CopilotKit\u002FCopilotKit.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1145,1146,1149,1152],{"name":9,"slug":8,"type":15},{"name":1147,"slug":1148,"type":15},"Engineering","engineering",{"name":1150,"slug":1151,"type":15},"GitHub","github",{"name":1153,"slug":1154,"type":15},"Pull Requests","pull-requests","2026-07-12T08:06:30.102192",{"slug":4,"name":4,"fn":5,"description":6,"org":1157,"tags":1158,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1159,1160,1161],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},{"slug":1163,"name":1163,"fn":1164,"description":1165,"org":1166,"tags":1167,"stars":20,"repoUrl":21,"updatedAt":1174},"copilotkit-develop","build AI features with CopilotKit","Use when building AI-powered features with CopilotKit v2 -- adding chat interfaces, registering frontend tools, sharing application context with agents, handling agent interrupts, and working with the CopilotKit runtime.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1168,1169,1172,1173],{"name":1129,"slug":29,"type":15},{"name":1170,"slug":1171,"type":15},"AI Context","ai-context",{"name":9,"slug":8,"type":15},{"name":1116,"slug":1117,"type":15},"2026-07-12T08:06:28.856644",{"slug":1176,"name":1176,"fn":1177,"description":1178,"org":1179,"tags":1180,"stars":20,"repoUrl":21,"updatedAt":1187},"copilotkit-integrations","integrate agent frameworks into CopilotKit applications","Use when wiring an external agent framework (LangGraph, CrewAI, PydanticAI, Mastra, ADK, LlamaIndex, Agno, Strands, Microsoft Agent Framework, or others) into a CopilotKit application via the AG-UI protocol.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1181,1182,1183,1184],{"name":1129,"slug":29,"type":15},{"name":1131,"slug":1132,"type":15},{"name":9,"slug":8,"type":15},{"name":1185,"slug":1186,"type":15},"Integrations","integrations","2026-07-12T08:06:32.560054",{"slug":1189,"name":1189,"fn":1190,"description":1191,"org":1192,"tags":1193,"stars":20,"repoUrl":21,"updatedAt":1201},"copilotkit-self-update","update CopilotKit agent skills","Use when the user wants to update, refresh, or reinstall the CopilotKit agent SKILLS (the SKILL.md files that teach this agent about CopilotKit). NOT for updating the CopilotKit codebase or project — this is specifically about refreshing the skills\u002Fknowledge this agent has loaded. Triggers on \"update copilotkit skills\", \"update skills\", \"refresh skills\", \"skills are stale\", \"skills are outdated\", \"get latest skills\", \"my copilotkit knowledge is wrong\", \"copilotkit APIs changed\", \"skills seem old\", \"wrong API names\", \"reinstall skills\", \"skills not working right\", \"update your copilotkit knowledge\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1194,1195,1198],{"name":9,"slug":8,"type":15},{"name":1196,"slug":1197,"type":15},"Documentation","documentation",{"name":1199,"slug":1200,"type":15},"Productivity","productivity","2026-07-12T08:06:31.345052",{"slug":1203,"name":1203,"fn":1204,"description":1205,"org":1206,"tags":1207,"stars":20,"repoUrl":21,"updatedAt":1213},"copilotkit-setup","set up CopilotKit in projects","Use when adding CopilotKit to an existing project or bootstrapping a new CopilotKit project from scratch. Covers framework detection, package installation, runtime wiring, provider setup, and first working chat integration.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1208,1209,1210],{"name":9,"slug":8,"type":15},{"name":1116,"slug":1117,"type":15},{"name":1211,"slug":1212,"type":15},"Onboarding","onboarding","2026-07-12T08:06:25.534415",{"slug":1215,"name":1215,"fn":1216,"description":1217,"org":1218,"tags":1219,"stars":20,"repoUrl":21,"updatedAt":1225},"copilotkit-upgrade","migrate CopilotKit applications to v2","Use when migrating a CopilotKit v1 application to v2 -- updating package imports, replacing deprecated hooks and components, switching from GraphQL runtime to AG-UI protocol runtime, and resolving breaking API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1220,1221,1222],{"name":9,"slug":8,"type":15},{"name":1147,"slug":1148,"type":15},{"name":1223,"slug":1224,"type":15},"Migration","migration","2026-07-12T08:06:26.949801",{"slug":1227,"name":1227,"fn":1228,"description":1229,"org":1230,"tags":1231,"stars":20,"repoUrl":21,"updatedAt":1240},"react-core","integrate CopilotKit into React applications","@copilotkit\u002Freact-core — mount the CopilotKit provider (from @copilotkit\u002Freact-core\u002Fv2) in a Next.js App Router \u002F React Router v7 \u002F TanStack Start \u002F SPA app, drop in CopilotChat\u002FCopilotPopup\u002FCopilotSidebar (v2 chat components ship from react-core\u002Fv2 — NOT react-ui, which is CSS-only in v2), access and subscribe to agents with useAgent \u002F useAgentContext \u002F useCapabilities, switch between multiple agents, manage durable Intelligence threads with useThreads, register browser-side tools via useFrontendTool, render tool calls with useRenderTool \u002F useComponent \u002F useDefaultRenderTool, gate execution with useHumanInTheLoop, wire file attachments with useAttachments, configure suggestion pills, and register activity- and custom-message renderers. publicLicenseKey is canonical (publicApiKey is deprecated alias). Load the reference under references\u002F that matches your task.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1232,1233,1234,1237,1239],{"name":9,"slug":8,"type":15},{"name":1116,"slug":1117,"type":15},{"name":1235,"slug":1236,"type":15},"Next.js","next-js",{"name":1238,"slug":42,"type":15},"React",{"name":1119,"slug":1120,"type":15},"2026-07-12T08:06:15.72619",{"slug":1242,"name":1242,"fn":1243,"description":1244,"org":1245,"tags":1246,"stars":20,"repoUrl":21,"updatedAt":1255},"runtime","mount and configure CopilotRuntime servers","@copilotkit\u002Fruntime — mount a fetch-native CopilotRuntime on any JS server, wire middleware, pick an AgentRunner, instantiate BuiltInAgent (Factory Mode with TanStack AI is the preferred default) or plug in any of 12 external agent frameworks (Mastra, LangGraph, CrewAI Crews\u002FFlows, PydanticAI, ADK, LlamaIndex, Agno, AWS Strands, MS Agent Framework, AG2, A2A), enable Intelligence mode for durable threads + websocket, register server-side tools via defineTool, and wire voice transcription. Uses the fetch-based createCopilotRuntimeHandler primitive — the Express\u002FHono adapters are discouraged. Load the reference under references\u002F that matches your task.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1247,1248,1249,1252],{"name":1134,"slug":1135,"type":15},{"name":9,"slug":8,"type":15},{"name":1250,"slug":1251,"type":15},"JavaScript","javascript",{"name":1253,"slug":1254,"type":15},"Middleware","middleware","2026-07-12T08:06:10.034875",{"slug":1257,"name":1258,"fn":1259,"description":1260,"org":1261,"tags":1262,"stars":1272,"repoUrl":1273,"updatedAt":1274},"advanced-visualization-techniques","Advanced Visualization Techniques","create advanced generative UI visualizations","UI mockups, dashboards, advanced interactivity, generative art, simulations, math visualizations, and design system rules for producing rich generateSandboxedUi output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1263,1266,1267,1268,1271],{"name":1264,"slug":1265,"type":15},"Dashboards","dashboards",{"name":1113,"slug":1114,"type":15},{"name":1116,"slug":1117,"type":15},{"name":1269,"slug":1270,"type":15},"Generative Art","generative-art",{"name":1119,"slug":1120,"type":15},1440,"https:\u002F\u002Fgithub.com\u002FCopilotKit\u002FOpenGenerativeUI","2026-07-12T08:06:40.712754",14,{"items":1277,"total":1326},[1278,1285,1293,1300,1306,1313,1320],{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1279,"tags":1280,"stars":20,"repoUrl":21,"updatedAt":1121},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1281,1282,1283,1284],{"name":9,"slug":8,"type":15},{"name":1113,"slug":1114,"type":15},{"name":1116,"slug":1117,"type":15},{"name":1119,"slug":1120,"type":15},{"slug":1123,"name":1123,"fn":1124,"description":1125,"org":1286,"tags":1287,"stars":20,"repoUrl":21,"updatedAt":1138},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1288,1289,1290,1291,1292],{"name":1129,"slug":29,"type":15},{"name":1131,"slug":1132,"type":15},{"name":1134,"slug":1135,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"slug":1140,"name":1140,"fn":1141,"description":1142,"org":1294,"tags":1295,"stars":20,"repoUrl":21,"updatedAt":1155},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1296,1297,1298,1299],{"name":9,"slug":8,"type":15},{"name":1147,"slug":1148,"type":15},{"name":1150,"slug":1151,"type":15},{"name":1153,"slug":1154,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1301,"tags":1302,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1303,1304,1305],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},{"slug":1163,"name":1163,"fn":1164,"description":1165,"org":1307,"tags":1308,"stars":20,"repoUrl":21,"updatedAt":1174},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1309,1310,1311,1312],{"name":1129,"slug":29,"type":15},{"name":1170,"slug":1171,"type":15},{"name":9,"slug":8,"type":15},{"name":1116,"slug":1117,"type":15},{"slug":1176,"name":1176,"fn":1177,"description":1178,"org":1314,"tags":1315,"stars":20,"repoUrl":21,"updatedAt":1187},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1316,1317,1318,1319],{"name":1129,"slug":29,"type":15},{"name":1131,"slug":1132,"type":15},{"name":9,"slug":8,"type":15},{"name":1185,"slug":1186,"type":15},{"slug":1189,"name":1189,"fn":1190,"description":1191,"org":1321,"tags":1322,"stars":20,"repoUrl":21,"updatedAt":1201},{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1323,1324,1325],{"name":9,"slug":8,"type":15},{"name":1196,"slug":1197,"type":15},{"name":1199,"slug":1200,"type":15},11]