[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-posthog-building-html-canvases":3,"mdc-pvx3st-key":52,"related-org-posthog-building-html-canvases":387,"related-repo-posthog-building-html-canvases":555},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":47,"sourceUrl":50,"mdContent":51},"building-html-canvases","author HTML and CSS PostHog canvases","Author a PostHog canvas with semantic HTML, CSS, and direct browser APIs — documents, articles, generative graphics, 2D canvas and WebGL experiences, and focused experiments where React components add no useful structure. Use after building-canvases has routed a canvas request to a plain-HTML\u002Fbrowser-API implementation. Covers the thin component wrapper the current runtime requires, styling and theming without Quill, drawing surfaces, and animation\u002Fcleanup patterns.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"posthog","PostHog","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fposthog.png",[12,16,17,20,23],{"name":13,"slug":14,"type":15},"Graphics","graphics","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"HTML","html",{"name":21,"slug":22,"type":15},"CSS","css",{"name":24,"slug":25,"type":15},"Design","design",35568,"https:\u002F\u002Fgithub.com\u002FPostHog\u002Fposthog","2026-08-06T06:09:30.313848",null,2977,[32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],"ab-testing","ai-analytics","analytics","cdp","data-warehouse","experiments","feature-flags","javascript","product-analytics","python","react","session-replay","surveys","typescript","web-analytics",{"repoUrl":27,"stars":26,"forks":30,"topics":48,"description":49},[32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],"🦔 PostHog is an all-in-one developer platform for building successful products. We offer product analytics, web analytics, session replay, error tracking, feature flags, experimentation, surveys, data warehouse, a CDP, and an AI product assistant to help debug your code, ship features faster, and keep all your usage and customer data in one stack.","https:\u002F\u002Fgithub.com\u002FPostHog\u002Fposthog\u002Ftree\u002FHEAD\u002Fproducts\u002Fcanvas\u002Fskills\u002Fbuilding-html-canvases","---\nname: building-html-canvases\ndescription: >\n  Author a PostHog canvas with semantic HTML, CSS, and direct browser APIs — documents, articles,\n  generative graphics, 2D canvas and WebGL experiences, and focused experiments where React\n  components add no useful structure. Use after building-canvases has routed a canvas request to a\n  plain-HTML\u002Fbrowser-API implementation. Covers the thin component wrapper the current runtime\n  requires, styling and theming without Quill, drawing surfaces, and animation\u002Fcleanup patterns.\n---\n\n# Building HTML canvases\n\nSome canvases are documents or graphics programs, not applications: a written report, a diagram,\na generative-art piece, a WebGL scene. For these, semantic HTML, CSS, and direct browser APIs are\nthe right tools — don't force Quill components or React state onto a static page.\n\n## The wrapper the current runtime requires\n\nEvery canvas keeps `src\u002Fcanvas.tsx` as its mounted React entry component (default export, no\nprops). Keep the React layer as a thin shell and write the\nexperience in HTML\u002FCSS\u002Fbrowser APIs inside it:\n\n- A document is JSX that is effectively semantic HTML — `\u003Carticle>`, headings, lists, tables,\n  figures — with a `\u003Cstyle>` block for typography and layout. Write real, specific copy.\n- A drawing\u002FWebGL program renders a `\u003Ccanvas>` element and drives it imperatively from a\n  `useEffect` via a ref: get the 2D\u002FWebGL context, run the setup and render loop there.\n- Clean up in the effect's return: cancel `requestAnimationFrame` loops, remove listeners, and\n  release contexts, so theme switches and remounts don't leak or double-run.\n- Mixing tiers is fine: a mostly static page can mount one interactive island, and a data board\n  can hand a chart's `\u003Ccanvas>` to imperative code while React owns the chrome.\n\nThe import allowlist still applies (react, react-dom, @posthog\u002Fquill, recharts, lucide-react,\ndayjs) — browser globals (`document`, `CanvasRenderingContext2D`, `WebGLRenderingContext`,\n`requestAnimationFrame`, `IntersectionObserver`, Web Audio, etc.) need no import. Three.js and\nother npm graphics libraries are not yet loadable; write against raw WebGL or 2D canvas until the\nbuild pipeline's dependency admission ships.\n\n## Styling and theme without Quill\n\n- Use Tailwind utilities and\u002For a `\u003Cstyle>` block (keyframes and complex selectors are fine).\n- The host toggles a `.dark` class on the document root when the user's PostHog theme changes.\n  Define your colors as CSS variables under `:root { … }` with overrides under `html.dark { … }`,\n  or use theme token utilities (`bg-background`, `text-foreground`, `border-border`) — never a\n  light-only hardcoded color.\n- For canvas\u002FWebGL drawing colors, read the resolved token at runtime\n  (`getComputedStyle(document.documentElement).getPropertyValue(\"--primary\")`) or your own CSS\n  variables, and re-read on theme change if the scene is long-lived.\n\n## Rules that still apply\n\n- No `fetch()`\u002F`XMLHttpRequest`, no `\u003Cscript>` tags, no dynamic `import()`, no remote assets —\n  the sandbox blocks them. PostHog data comes only through the `ph` bridge (see the\n  `querying-canvas-data` skill), including `ph.capture` for interaction analytics.\n- External links go through `ph.openExternal(url)` (posthog.com origins only), from a user\n  interaction.\n- Validate and publish through the canvas tools as described in `validating-and-publishing-canvases`.\n",{"data":53,"body":54},{"name":4,"description":6},{"type":55,"children":56},"root",[57,65,71,78,92,164,206,212,291,297],{"type":58,"tag":59,"props":60,"children":61},"element","h1",{"id":4},[62],{"type":63,"value":64},"text","Building HTML canvases",{"type":58,"tag":66,"props":67,"children":68},"p",{},[69],{"type":63,"value":70},"Some canvases are documents or graphics programs, not applications: a written report, a diagram,\na generative-art piece, a WebGL scene. For these, semantic HTML, CSS, and direct browser APIs are\nthe right tools — don't force Quill components or React state onto a static page.",{"type":58,"tag":72,"props":73,"children":75},"h2",{"id":74},"the-wrapper-the-current-runtime-requires",[76],{"type":63,"value":77},"The wrapper the current runtime requires",{"type":58,"tag":66,"props":79,"children":80},{},[81,83,90],{"type":63,"value":82},"Every canvas keeps ",{"type":58,"tag":84,"props":85,"children":87},"code",{"className":86},[],[88],{"type":63,"value":89},"src\u002Fcanvas.tsx",{"type":63,"value":91}," as its mounted React entry component (default export, no\nprops). Keep the React layer as a thin shell and write the\nexperience in HTML\u002FCSS\u002Fbrowser APIs inside it:",{"type":58,"tag":93,"props":94,"children":95},"ul",{},[96,118,139,152],{"type":58,"tag":97,"props":98,"children":99},"li",{},[100,102,108,110,116],{"type":63,"value":101},"A document is JSX that is effectively semantic HTML — ",{"type":58,"tag":84,"props":103,"children":105},{"className":104},[],[106],{"type":63,"value":107},"\u003Carticle>",{"type":63,"value":109},", headings, lists, tables,\nfigures — with a ",{"type":58,"tag":84,"props":111,"children":113},{"className":112},[],[114],{"type":63,"value":115},"\u003Cstyle>",{"type":63,"value":117}," block for typography and layout. Write real, specific copy.",{"type":58,"tag":97,"props":119,"children":120},{},[121,123,129,131,137],{"type":63,"value":122},"A drawing\u002FWebGL program renders a ",{"type":58,"tag":84,"props":124,"children":126},{"className":125},[],[127],{"type":63,"value":128},"\u003Ccanvas>",{"type":63,"value":130}," element and drives it imperatively from a\n",{"type":58,"tag":84,"props":132,"children":134},{"className":133},[],[135],{"type":63,"value":136},"useEffect",{"type":63,"value":138}," via a ref: get the 2D\u002FWebGL context, run the setup and render loop there.",{"type":58,"tag":97,"props":140,"children":141},{},[142,144,150],{"type":63,"value":143},"Clean up in the effect's return: cancel ",{"type":58,"tag":84,"props":145,"children":147},{"className":146},[],[148],{"type":63,"value":149},"requestAnimationFrame",{"type":63,"value":151}," loops, remove listeners, and\nrelease contexts, so theme switches and remounts don't leak or double-run.",{"type":58,"tag":97,"props":153,"children":154},{},[155,157,162],{"type":63,"value":156},"Mixing tiers is fine: a mostly static page can mount one interactive island, and a data board\ncan hand a chart's ",{"type":58,"tag":84,"props":158,"children":160},{"className":159},[],[161],{"type":63,"value":128},{"type":63,"value":163}," to imperative code while React owns the chrome.",{"type":58,"tag":66,"props":165,"children":166},{},[167,169,175,177,183,184,190,192,197,198,204],{"type":63,"value":168},"The import allowlist still applies (react, react-dom, @posthog\u002Fquill, recharts, lucide-react,\ndayjs) — browser globals (",{"type":58,"tag":84,"props":170,"children":172},{"className":171},[],[173],{"type":63,"value":174},"document",{"type":63,"value":176},", ",{"type":58,"tag":84,"props":178,"children":180},{"className":179},[],[181],{"type":63,"value":182},"CanvasRenderingContext2D",{"type":63,"value":176},{"type":58,"tag":84,"props":185,"children":187},{"className":186},[],[188],{"type":63,"value":189},"WebGLRenderingContext",{"type":63,"value":191},",\n",{"type":58,"tag":84,"props":193,"children":195},{"className":194},[],[196],{"type":63,"value":149},{"type":63,"value":176},{"type":58,"tag":84,"props":199,"children":201},{"className":200},[],[202],{"type":63,"value":203},"IntersectionObserver",{"type":63,"value":205},", Web Audio, etc.) need no import. Three.js and\nother npm graphics libraries are not yet loadable; write against raw WebGL or 2D canvas until the\nbuild pipeline's dependency admission ships.",{"type":58,"tag":72,"props":207,"children":209},{"id":208},"styling-and-theme-without-quill",[210],{"type":63,"value":211},"Styling and theme without Quill",{"type":58,"tag":93,"props":213,"children":214},{},[215,227,278],{"type":58,"tag":97,"props":216,"children":217},{},[218,220,225],{"type":63,"value":219},"Use Tailwind utilities and\u002For a ",{"type":58,"tag":84,"props":221,"children":223},{"className":222},[],[224],{"type":63,"value":115},{"type":63,"value":226}," block (keyframes and complex selectors are fine).",{"type":58,"tag":97,"props":228,"children":229},{},[230,232,238,240,246,248,254,256,262,263,269,270,276],{"type":63,"value":231},"The host toggles a ",{"type":58,"tag":84,"props":233,"children":235},{"className":234},[],[236],{"type":63,"value":237},".dark",{"type":63,"value":239}," class on the document root when the user's PostHog theme changes.\nDefine your colors as CSS variables under ",{"type":58,"tag":84,"props":241,"children":243},{"className":242},[],[244],{"type":63,"value":245},":root { … }",{"type":63,"value":247}," with overrides under ",{"type":58,"tag":84,"props":249,"children":251},{"className":250},[],[252],{"type":63,"value":253},"html.dark { … }",{"type":63,"value":255},",\nor use theme token utilities (",{"type":58,"tag":84,"props":257,"children":259},{"className":258},[],[260],{"type":63,"value":261},"bg-background",{"type":63,"value":176},{"type":58,"tag":84,"props":264,"children":266},{"className":265},[],[267],{"type":63,"value":268},"text-foreground",{"type":63,"value":176},{"type":58,"tag":84,"props":271,"children":273},{"className":272},[],[274],{"type":63,"value":275},"border-border",{"type":63,"value":277},") — never a\nlight-only hardcoded color.",{"type":58,"tag":97,"props":279,"children":280},{},[281,283,289],{"type":63,"value":282},"For canvas\u002FWebGL drawing colors, read the resolved token at runtime\n(",{"type":58,"tag":84,"props":284,"children":286},{"className":285},[],[287],{"type":63,"value":288},"getComputedStyle(document.documentElement).getPropertyValue(\"--primary\")",{"type":63,"value":290},") or your own CSS\nvariables, and re-read on theme change if the scene is long-lived.",{"type":58,"tag":72,"props":292,"children":294},{"id":293},"rules-that-still-apply",[295],{"type":63,"value":296},"Rules that still apply",{"type":58,"tag":93,"props":298,"children":299},{},[300,361,374],{"type":58,"tag":97,"props":301,"children":302},{},[303,305,311,313,319,321,327,329,335,337,343,345,351,353,359],{"type":63,"value":304},"No ",{"type":58,"tag":84,"props":306,"children":308},{"className":307},[],[309],{"type":63,"value":310},"fetch()",{"type":63,"value":312},"\u002F",{"type":58,"tag":84,"props":314,"children":316},{"className":315},[],[317],{"type":63,"value":318},"XMLHttpRequest",{"type":63,"value":320},", no ",{"type":58,"tag":84,"props":322,"children":324},{"className":323},[],[325],{"type":63,"value":326},"\u003Cscript>",{"type":63,"value":328}," tags, no dynamic ",{"type":58,"tag":84,"props":330,"children":332},{"className":331},[],[333],{"type":63,"value":334},"import()",{"type":63,"value":336},", no remote assets —\nthe sandbox blocks them. PostHog data comes only through the ",{"type":58,"tag":84,"props":338,"children":340},{"className":339},[],[341],{"type":63,"value":342},"ph",{"type":63,"value":344}," bridge (see the\n",{"type":58,"tag":84,"props":346,"children":348},{"className":347},[],[349],{"type":63,"value":350},"querying-canvas-data",{"type":63,"value":352}," skill), including ",{"type":58,"tag":84,"props":354,"children":356},{"className":355},[],[357],{"type":63,"value":358},"ph.capture",{"type":63,"value":360}," for interaction analytics.",{"type":58,"tag":97,"props":362,"children":363},{},[364,366,372],{"type":63,"value":365},"External links go through ",{"type":58,"tag":84,"props":367,"children":369},{"className":368},[],[370],{"type":63,"value":371},"ph.openExternal(url)",{"type":63,"value":373}," (posthog.com origins only), from a user\ninteraction.",{"type":58,"tag":97,"props":375,"children":376},{},[377,379,385],{"type":63,"value":378},"Validate and publish through the canvas tools as described in ",{"type":58,"tag":84,"props":380,"children":382},{"className":381},[],[383],{"type":63,"value":384},"validating-and-publishing-canvases",{"type":63,"value":386},".",{"items":388,"total":554},[389,405,417,429,442,457,473,488,496,512,527,539],{"slug":390,"name":390,"fn":391,"description":392,"org":393,"tags":394,"stars":26,"repoUrl":27,"updatedAt":404},"analyzing-expensive-users","analyze expensive users in AI observability","Analyze the most expensive users in AI observability and explain why they cost so much. Use when the user asks about top spenders, expensive users, per-user LLM cost, user-level cost drivers, or patterns behind high AI observability spend.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[395,397,400,403],{"name":396,"slug":34,"type":15},"Analytics",{"name":398,"slug":399,"type":15},"Cost Optimization","cost-optimization",{"name":401,"slug":402,"type":15},"Observability","observability",{"name":9,"slug":8,"type":15},"2026-07-28T05:34:11.117757",{"slug":406,"name":406,"fn":407,"description":408,"org":409,"tags":410,"stars":26,"repoUrl":27,"updatedAt":416},"auditing-endpoints","audit PostHog project endpoints","Audit every endpoint in a PostHog project for staleness, failed materialisations, and unused materialised versions. Use when the user asks \"what endpoints can I clean up?\", \"are any of my endpoints broken?\", \"which materialised versions are still being called?\", or wants a one-shot cleanup pass over the Endpoints product. Produces a prioritised report grouped by issue type, with recommended actions but does not modify anything without explicit confirmation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[411,412,415],{"name":396,"slug":34,"type":15},{"name":413,"slug":414,"type":15},"Audit","audit",{"name":9,"slug":8,"type":15},"2026-06-08T08:08:33.693989",{"slug":418,"name":418,"fn":419,"description":420,"org":421,"tags":422,"stars":26,"repoUrl":27,"updatedAt":428},"auditing-warehouse-source-health","audit PostHog data warehouse source health","Audit the health of a PostHog project's data warehouse sources and syncs — find every broken or degraded source connection, sync schema, and webhook channel. Use when the user asks \"why are my imports failing?\", \"what's broken with my sources?\", \"why is my warehouse data stale?\", or wants a one-shot triage of source\u002Fsync health before deciding where to dig in. Produces a prioritized report grouped by severity, with recommended next steps. For materialized-view health use `auditing-warehouse-view-health`; for a single failing sync use `diagnosing-failed-warehouse-syncs`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[423,424,426,427],{"name":413,"slug":414,"type":15},{"name":425,"slug":36,"type":15},"Data Warehouse",{"name":401,"slug":402,"type":15},{"name":9,"slug":8,"type":15},"2026-06-18T08:22:57.67984",{"slug":430,"name":430,"fn":431,"description":432,"org":433,"tags":434,"stars":26,"repoUrl":27,"updatedAt":441},"auditing-warehouse-view-health","audit PostHog materialized view health","Audit the health of a PostHog project's materialized views (saved queries) — find every failed materialization and flag unused or stale materialized views that cost storage and compute. Use when the user asks \"which of my views are broken?\", \"why is this materialized view failing?\", \"are any of my views wasting compute?\", or wants a one-shot triage of view health. For source\u002Fsync health use `auditing-warehouse-source-health`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[435,436,437,440],{"name":413,"slug":414,"type":15},{"name":425,"slug":36,"type":15},{"name":438,"slug":439,"type":15},"Performance","performance",{"name":9,"slug":8,"type":15},"2026-06-18T08:25:10.936787",{"slug":443,"name":443,"fn":444,"description":445,"org":446,"tags":447,"stars":26,"repoUrl":27,"updatedAt":456},"authoring-error-tracking-alerts","author PostHog error tracking alerts","Author error tracking alerts that fire when an issue is created, reopened, or starts spiking. Use when the user asks to set up error notifications, route exceptions to Slack\u002Fwebhook\u002FLinear, or evaluate which error events are worth alerting on. Covers trigger-event selection, integration choice, dedup against existing alerts, and shipping with the canonical message body shape.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[448,451,454,455],{"name":449,"slug":450,"type":15},"Alerting","alerting",{"name":452,"slug":453,"type":15},"Debugging","debugging",{"name":401,"slug":402,"type":15},{"name":9,"slug":8,"type":15},"2026-06-18T08:24:40.318583",{"slug":458,"name":458,"fn":459,"description":460,"org":461,"tags":462,"stars":26,"repoUrl":27,"updatedAt":472},"authoring-log-alerts","author log alerts in PostHog","Author useful, low-noise log alerts on services in a PostHog project. Use when the user asks to set up alerts for their logs, suggest alerts they should add, or evaluate whether a service is worth monitoring. Covers service triage, baseline characterisation, threshold drafting, back-testing via simulate, and shipping with a notification destination.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[463,464,467,468,471],{"name":396,"slug":34,"type":15},{"name":465,"slug":466,"type":15},"Monitoring","monitoring",{"name":401,"slug":402,"type":15},{"name":469,"slug":470,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-18T05:10:54.430898",{"slug":474,"name":474,"fn":475,"description":476,"org":477,"tags":478,"stars":26,"repoUrl":27,"updatedAt":487},"building-canvases","create and edit PostHog canvases","Create or edit a PostHog canvas — a sandboxed browser application (data board, document, form, small tool, graphics experiment) stored in PostHog and rendered by the desktop\u002Fweb app. Use when a task asks to build, generate, update, or fix a canvas, or when a canvas id is given as the publish target. Covers resolving or creating the target canvas, choosing an implementation approach (React + Quill vs plain HTML\u002Fbrowser APIs), the read → edit → validate → publish → build loop, and which companion canvas skills to load for the details.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[479,482,483,484],{"name":480,"slug":481,"type":15},"Automation","automation",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":485,"slug":486,"type":15},"Prototyping","prototyping","2026-08-06T06:09:29.946969",{"slug":4,"name":4,"fn":5,"description":6,"org":489,"tags":490,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[491,492,493,494,495],{"name":21,"slug":22,"type":15},{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":18,"slug":19,"type":15},{"name":9,"slug":8,"type":15},{"slug":497,"name":497,"fn":498,"description":499,"org":500,"tags":501,"stars":26,"repoUrl":27,"updatedAt":511},"building-react-quill-canvases","build React and Quill canvases","Author the React + Quill implementation of a PostHog canvas: the single-component contract, the allowed imports, Quill (PostHog's design system) component and composition rules, theme-aware design tokens, loading skeletons, and the in-canvas date picker. Use after building-canvases has routed a canvas request to a React implementation — dashboards, data boards, forms, tools, or any canvas that should look native to PostHog.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[502,503,506,508],{"name":24,"slug":25,"type":15},{"name":504,"slug":505,"type":15},"Frontend","frontend",{"name":507,"slug":42,"type":15},"React",{"name":509,"slug":510,"type":15},"UI Components","ui-components","2026-08-06T06:09:18.633724",{"slug":513,"name":513,"fn":514,"description":515,"org":516,"tags":517,"stars":26,"repoUrl":27,"updatedAt":526},"building-workflows","build and edit PostHog workflows","Build, edit, test, enable, and monitor PostHog workflows over MCP. Author the action\u002Fedge graph so it runs and opens cleanly in the visual editor, then change drafts surgically with patch operations. Use when asked to build, set up, automate, change, fix, or debug a workflow, campaign, broadcast, drip sequence, or event-triggered automation in the workflows product.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[518,519,522,523],{"name":480,"slug":481,"type":15},{"name":520,"slug":521,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},{"name":524,"slug":525,"type":15},"Workflow Automation","workflow-automation","2026-08-06T05:36:26.504811",{"slug":528,"name":528,"fn":529,"description":530,"org":531,"tags":532,"stars":26,"repoUrl":27,"updatedAt":538},"check-posthog-loading","inspect PostHog SDK loading across URLs","Inspect how the PostHog JavaScript SDK is loaded across a list of URLs. Use to confirm consistent installation across pages, find pages missing the snippet, detect mismatched API keys or hosts between pages, and verify the load method (head snippet vs deferred vs array.js).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[533,534,535,536,537],{"name":396,"slug":34,"type":15},{"name":452,"slug":453,"type":15},{"name":504,"slug":505,"type":15},{"name":401,"slug":402,"type":15},{"name":9,"slug":8,"type":15},"2026-05-07T05:56:19.828048",{"slug":540,"name":540,"fn":541,"description":542,"org":543,"tags":544,"stars":26,"repoUrl":27,"updatedAt":553},"consuming-endpoints-from-client-code","integrate PostHog endpoints into client applications","Wire a PostHog endpoint into a client app or SDK. Covers fetching the OpenAPI spec, generating a typed client with openapi-generator or @hey-api\u002Fopenapi-ts, sending the right auth header, shaping the variables payload (HogQL code_name vs insight breakdown property), handling rate-limit and materialised-endpoint error responses. Use when the user says \"how do I call my endpoint\", \"generate a client for this\", or \"what auth header do I use\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[545,548,549,550],{"name":546,"slug":547,"type":15},"API Development","api-development",{"name":504,"slug":505,"type":15},{"name":9,"slug":8,"type":15},{"name":551,"slug":552,"type":15},"SDK","sdk","2026-06-08T08:08:34.929454",243,{"items":556,"total":606},[557,564,570,577,584,591,599],{"slug":390,"name":390,"fn":391,"description":392,"org":558,"tags":559,"stars":26,"repoUrl":27,"updatedAt":404},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[560,561,562,563],{"name":396,"slug":34,"type":15},{"name":398,"slug":399,"type":15},{"name":401,"slug":402,"type":15},{"name":9,"slug":8,"type":15},{"slug":406,"name":406,"fn":407,"description":408,"org":565,"tags":566,"stars":26,"repoUrl":27,"updatedAt":416},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[567,568,569],{"name":396,"slug":34,"type":15},{"name":413,"slug":414,"type":15},{"name":9,"slug":8,"type":15},{"slug":418,"name":418,"fn":419,"description":420,"org":571,"tags":572,"stars":26,"repoUrl":27,"updatedAt":428},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[573,574,575,576],{"name":413,"slug":414,"type":15},{"name":425,"slug":36,"type":15},{"name":401,"slug":402,"type":15},{"name":9,"slug":8,"type":15},{"slug":430,"name":430,"fn":431,"description":432,"org":578,"tags":579,"stars":26,"repoUrl":27,"updatedAt":441},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[580,581,582,583],{"name":413,"slug":414,"type":15},{"name":425,"slug":36,"type":15},{"name":438,"slug":439,"type":15},{"name":9,"slug":8,"type":15},{"slug":443,"name":443,"fn":444,"description":445,"org":585,"tags":586,"stars":26,"repoUrl":27,"updatedAt":456},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[587,588,589,590],{"name":449,"slug":450,"type":15},{"name":452,"slug":453,"type":15},{"name":401,"slug":402,"type":15},{"name":9,"slug":8,"type":15},{"slug":458,"name":458,"fn":459,"description":460,"org":592,"tags":593,"stars":26,"repoUrl":27,"updatedAt":472},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[594,595,596,597,598],{"name":396,"slug":34,"type":15},{"name":465,"slug":466,"type":15},{"name":401,"slug":402,"type":15},{"name":469,"slug":470,"type":15},{"name":9,"slug":8,"type":15},{"slug":474,"name":474,"fn":475,"description":476,"org":600,"tags":601,"stars":26,"repoUrl":27,"updatedAt":487},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[602,603,604,605],{"name":480,"slug":481,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":485,"slug":486,"type":15},74]