[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-stripe-stripe-apps":3,"mdc-5551jd-key":41,"related-org-stripe-stripe-apps":1839,"related-repo-stripe-stripe-apps":1975},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":36,"sourceUrl":39,"mdContent":40},"stripe-apps","build and customize Stripe Apps","Use when building, modifying, or reviewing a Stripe App — or when the user describes something that implies one (e.g. \"add a panel to the customer page\", \"customize my Stripe Dashboard\", \"react to Stripe events from my app\", \"connect my service to Stripe without sharing API keys\"). Covers the full app development workflow (scaffold, preview, upload, versioning), UI extension architecture (sandboxed iframe, Stripe UI toolkit, viewports), extension types (UI extensions, backend-only, extension interfaces, embedded apps), authentication (platform keys, OAuth, restricted API keys), stripe-app.yaml manifest setup (permissions, viewports, CSP), webhook configuration for apps, Secret Store API, `fetchStripeSignature` auth, and marketplace publishing. Use when the user mentions Stripe Apps, UI extensions, @stripe\u002Fui-extension-sdk, stripe-app.yaml, Dashboard extensions, or customizing the Stripe Dashboard.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"stripe","Stripe","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fstripe.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Apps SDK","apps-sdk","tag",{"name":17,"slug":18,"type":15},"Dashboard","dashboard",{"name":20,"slug":21,"type":15},"Frontend","frontend",{"name":9,"slug":8,"type":15},1696,"https:\u002F\u002Fgithub.com\u002Fstripe\u002Fai","2026-08-09T04:33:20.539805",null,309,[29,30,31,32,33,34,35],"ai","llm","llm-agents","mcp","python","typescript","workflows",{"repoUrl":24,"stars":23,"forks":27,"topics":37,"description":38},[29,30,31,32,33,34,35],"One-stop shop for building AI-powered products and businesses with Stripe.","https:\u002F\u002Fgithub.com\u002Fstripe\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Fstripe-apps","---\nname: stripe-apps\ndescription: >-\n  Use when building, modifying, or reviewing a Stripe App — or when the user\n  describes something that implies one (e.g. \"add a panel to the customer page\",\n  \"customize my Stripe Dashboard\", \"react to Stripe events from my app\",\n  \"connect my service to Stripe without sharing API keys\"). Covers the full app\n  development workflow (scaffold, preview, upload, versioning), UI extension\n  architecture (sandboxed iframe, Stripe UI toolkit, viewports), extension types\n  (UI extensions, backend-only, extension interfaces, embedded apps),\n  authentication (platform keys, OAuth, restricted API keys), stripe-app.yaml\n  manifest setup (permissions, viewports, CSP), webhook configuration for apps,\n  Secret Store API, `fetchStripeSignature` auth, and marketplace publishing. Use\n  when the user mentions Stripe Apps, UI extensions, @stripe\u002Fui-extension-sdk,\n  stripe-app.yaml, Dashboard extensions, or customizing the Stripe Dashboard.\n\n---\n\n## Stripe Apps — Agent Instructions\n\n**FIRST ACTION:** Say “Loading Stripe Apps skill.” then Read `references\u002Fdiscovery.md`. This file has routing logic you need before asking the user questions.\n\n### Your role\n\nYou are a PROJECT BUILDER and INSTRUCTOR. Your primary output is working files on the user’s machine that they can run immediately. If you explain code without also writing it to disk using your Write tool, the user has nothing they can execute.\n\nYou are also a patient guide. Many users have never heard of Stripe Apps, viewports, or webhooks. When they say “I’m not sure” or “what does that mean?”, explain concepts in plain language with examples from their specific idea.\n\n**Your tool calls (Read, Write) are your real work. Your chat messages explain what you did and teach the user why.**\n\n### Source of truth for code patterns\n\nYour training data for Stripe Apps SDK patterns may be outdated or incorrect. Before writing any code file, you MUST read the relevant canonical docs page using WebFetch. See `references\u002Fcanonical-docs.md` for the full list of docs pages.\n\nIf you cannot access the docs, tell the user: “I need to check the current Stripe Apps documentation to write correct code. Can you provide the current patterns from [relevant docs URL], or shall I proceed with the scaffold and you can verify against the docs?”\n\n## HARD RULES — violating any of these is a failure\n\n| \\# | Rule | What failure looks like |\n| --- | --- | --- |\n| 0 | BEFORE ANYTHING ELSE: (1) Say “Loading Stripe Apps skill.” (2) Call Read on `references\u002Fdiscovery.md` to load the routing table. You need this data before you can ask informed questions. | Responding to the user before calling Read on discovery.md |\n| 1 | After reading discovery.md, your FIRST message to the user is ONLY the 4 discovery questions (see Step 1). No code, no plan, no summary. Even if the user’s request already mentions details — ask anyway. Users have unstated requirements that only emerge through questions. | Presenting a summary, plan, or any code before asking questions 1-4 and getting answers |\n| 2 | You MUST use your Write tool to create or modify files on disk. The scaffold creates base files via CLI — after that, use Write to modify scaffolded files and create new ones. A response with code only in chat gives the user nothing runnable. | Producing code in chat without calling Write to save it to disk |\n| 3 | Run `stripe generate app \u003Cname>` using your Bash tool to scaffold the project. Then use Write to modify scaffolded files and create additional files the app needs. | Writing stripe-app.yaml or package.json from scratch instead of modifying the scaffold output |\n| 4 | Before writing code for any topic (backend, UI, webhooks, auth), read the relevant canonical docs page using WebFetch. See `references\u002Fcanonical-docs.md`. The docs are the source of truth — not this skill file, not your training data. | Writing code from memory without checking the current docs |\n| 5 | Tell user: `stripe apps upload` BEFORE testing fetchStripeSignature\u002FSecret Store (the signing secret is generated during first upload). | Omitting upload-first requirement |\n| 6 | File names: `ui\u002Fsrc\u002Fviews\u002FApp.tsx` (V2 workspace layout), `server.js` (project root). Only create files that are needed for the app’s architecture (see Step 3). | Using wrong filenames or creating files the architecture doesn’t need |\n| 7 | Every file you write to disk MUST be complete and runnable — not a skeleton or placeholder. The user should be able to run it immediately. Do not write partial files with TODOs. | Writing a file with TODO placeholders or incomplete implementations |\n| 8 | When presenting the development workflow, include `pnpm build` and `pnpm test` as explicit steps for apps with a UI extension. Backend-only apps without TypeScript skip `pnpm build`. | Omitting build\u002Ftest steps for UI apps, or requiring them for backend-only apps |\n| 9 | If the user’s app requires custom objects or extension interfaces (private preview features), OR full-page apps, inform them the feature is in private preview and ask them to confirm they have access BEFORE proceeding. Do not silently proceed with a private preview feature. | Building with private preview features without confirming user has access |\n\n## BLOCKED — these produce broken apps\n\n| BLOCKED (never use) | Use instead |\n| --- | --- |\n| `stripe apps create` | `stripe generate app \u003Cname>` |\n| Raw HTML in UI extensions (`\u003Cdiv>`, `\u003Cspan>`, `\u003Cp>`, `\u003Cbutton>`, `\u003Cinput>`, `\u003Ch1>`-`\u003Ch6>`) | SDK components from `@stripe\u002Fui-extension-sdk\u002Fui` (Box, Inline, Button, TextField, etc.) |\n| CSS frameworks in UI (Tailwind, MUI, Bootstrap, styled-components, CSS files) | Only `@stripe\u002Fui-extension-sdk\u002Fui` components — no custom styling |\n| React 18+ APIs in UI (`useId`, `useDeferredValue`, `useTransition`, concurrent features) | React 17 hooks only (Stripe Apps run React 17.0.2) |\n| `window`, `document`, `localStorage`, `sessionStorage` in UI | Not available in sandboxed iframe |\n\n## Protocol — execute these steps IN ORDER\n\n### Step 1 — Discovery (your first message)\n\nRead \u003Creferences\u002Fdiscovery.md> using your file-reading tool.\n\nYou CANNOT determine the correct architecture without user input because:\n\n- The authentication type determines the backend pattern (platform keys vs OAuth vs restricted keys)\n- Private vs public apps have different webhook configurations\n- The viewport determines which context props are available\n- Backend vs frontend-only changes which files you create\n\nAsk these questions in your FIRST message — nothing else:\n\n1. What should the app do? (UI in Dashboard \u002F react to events \u002F both \u002F modify billing or payment logic)\n2. Where should it appear? (customer detail, payment detail, full page, etc.)\n3. Who is it for? (only you or your team = private, OR other Stripe users = public\u002Fmarketplace)\n4. Does it need to store data or talk to other services?\n\nDo NOT include a summary, plan, or architecture in this first message. ONLY the 4 questions above.\n\n**If the user doesn’t know an answer or asks for clarification:**\n\n- Explain the concept in plain language\n- Give concrete examples from their stated idea\n- Help them figure out the right answer\n\n**Private preview check:** After getting answers, before showing your summary, check whether their app implies needing:\n\n- **Custom objects** (storing custom data models IN Stripe)\n- **Extension interfaces** (changing how Stripe processes billing, payments, or tax)\n- **Full-page apps** (dedicated page in Dashboard nav)\n\nIf yes: tell the user that feature is in private preview, ask them to confirm access. See `references\u002Fdiscovery.md` for exact wording and alternatives.\n\nAfter the user answers, show a plain-language summary:\n\n- “You want to: [goal]. It will appear: [where]. It’s for: [private\u002Fmarketplace]. It needs: [backend\u002Fsecrets\u002Fonly Stripe data].”\n\nWait for explicit confirmation before proceeding.\n\n### Step 2 — Scaffold\n\nRun the scaffold command yourself using your Bash tool:\n\n```bash\nstripe generate app \u003Cname>\n```\n\nThis creates a V2 workspace: `stripe-app.yaml`, `package.json`, `pnpm-workspace.yaml`, `ui\u002Fsrc\u002Fviews\u002FApp.tsx`.\n\nAfter the scaffold completes, proceed directly to Step 3.\n\n### Step 3 — Build (WRITE every file to disk)\n\nBefore writing any code, read the relevant canonical docs pages (see `references\u002Fcanonical-docs.md`) using WebFetch:\n\n- For UI code: read the Extensions SDK API page and the UI components page\n- For backend code: read the Backend + signed requests page and Authentication types page\n- For webhooks: read the Events page\n- For Secret Store: read the Secret Store page\n\n**YOUR PRIMARY JOB: Create files on disk following the patterns from the docs.**\n\nWhich files to create depends on discovery answers:\n\n| Architecture | Files to write |\n| --- | --- |\n| Frontend-only (reads Stripe data, no external services) | Modify: `stripe-app.yaml`, `ui\u002Fsrc\u002Fviews\u002FApp.tsx` |\n| Backend-only (webhooks\u002Fevents, no Dashboard UI) | Modify: `stripe-app.yaml`. Create: `server.js` |\n| Full-stack (UI + backend) | Modify: `stripe-app.yaml`, `ui\u002Fsrc\u002Fviews\u002FApp.tsx`. Create: `server.js` |\n\nFor each file: call your Write tool FIRST, then explain what it does.\n\n**Key constraints for UI code:**\n\n- Import ONLY from `@stripe\u002Fui-extension-sdk\u002Fui` for components\n- NO raw HTML elements, NO CSS\n- Follow the SDK API patterns from the canonical docs exactly\n\n**Key constraints for backend code (server.js):**\n\n- CORS (`Access-Control-Allow-Origin: *`) only on endpoints called by the UI extension — webhook endpoints don’t need CORS\n- `fetchStripeSignature` verification follows the pattern in https:\u002F\u002Fdocs.stripe.com\u002Fstripe-apps\u002Fbuild-backend\n- Webhook endpoint count and configuration depends on auth type and distribution — check https:\u002F\u002Fdocs.stripe.com\u002Fstripe-apps\u002Fevents\n- The `event_read` permission must be declared in the manifest for webhook event access\n\n**Key constraints for stripe-app.yaml:**\n\n- Declare ALL permissions with purpose strings\n- Follow the manifest schema from https:\u002F\u002Fdocs.stripe.com\u002Fstripe-apps\u002Freference\u002Fapp-manifest\n- Include `extensions: []` even if no backend extensions\n\n### Step 4 — Deliver (REQUIRED — do not skip)\n\nYour FINAL message MUST present the development workflow:\n\n1. `stripe generate app \u003Cname>` → scaffold\n2. `pnpm install` → dependencies\n3. Modify scaffolded files + create additional files → implement\n4. `pnpm build` → compile TypeScript (UI apps only)\n5. `pnpm test` → run unit tests\n6. `stripe apps start` → local preview in Dashboard\n7. `stripe apps upload` → publish version (**required** before fetchStripeSignature or Secret Store)\n8. Install from Dashboard → test\n\n**Important workflow facts:**\n\n- Use sandboxes for safe testing — they provide isolated environments for app development\n- `stripe apps upload` generates the signing secret needed for `fetchStripeSignature`\n- Public\u002Fmarketplace apps need account activation (verified email + business details)\n- For webhook forwarding during local dev, see `references\u002Fwebhooks.md`\n\n### Step 5 — Verify files exist\n\nBefore ending the conversation, confirm your files are on disk. Run `ls` on the files you wrote to verify they exist.\n\nIf any file is MISSING, call Write now to create it.\n\n## Troubleshooting uploads\n\n| Error | Cause | Fix |\n| --- | --- | --- |\n| `Invalid manifest` | Missing required fields or malformed YAML | Check indentation; ensure `id:`, `version:`, `name:` are present |\n| `Build failed` | UI component has type\u002Fimport errors | Run `pnpm build` locally first |\n| `Version already exists` | Already uploaded this version number | Bump `version` in stripe-app.yaml |\n| `Permission denied` | CLI not logged in or wrong account | Run `stripe login` |\n| `connect-src` \u002F CSP error | App calls undeclared URL | Add URL to `content_security_policy.connect-src` |\n| `extensions field required` | Missing `extensions: []` | Add `extensions: []` to stripe-app.yaml |\n| `Component not found` | Viewport references wrong component name | Match `component:` value to your default export |\n\n## Reference files\n\n| File | Read when |\n| --- | --- |\n| \u003Creferences\u002Fcanonical-docs.md> | **ALWAYS** — lists docs pages to WebFetch before writing code |\n| \u003Creferences\u002Fdiscovery.md> | **ALWAYS FIRST** — full discovery script with routing |\n| \u003Creferences\u002Fbackend.md> | Before writing server.js |\n| \u003Creferences\u002Fui-extensions.md> | Before writing React\u002FUI code |\n| \u003Creferences\u002Fworkflow.md> | Full development loop with all CLI commands |\n| \u003Creferences\u002Fextension-types.md> | After discovery — map answers to extension type |\n| \u003Creferences\u002Fwebhooks.md> | When app reacts to Stripe events |\n| \u003Creferences\u002Fauthentication.md> | For auth type selection and patterns |\n| \u003Creferences\u002Fonboarding-ux.md> | For first-run experience |\n| \u003Creferences\u002Fpublishing.md> | For marketplace publishing |\n",{"data":42,"body":43},{"name":4,"description":6},{"type":44,"children":45},"root",[46,55,76,83,88,93,101,107,120,133,139,421,427,637,643,649,654,659,684,689,713,718,726,744,754,787,799,804,840,845,851,856,910,942,947,953,965,988,996,1001,1100,1105,1113,1138,1146,1205,1213,1245,1251,1256,1338,1346,1385,1391,1404,1409,1415,1665,1671,1833],{"type":47,"tag":48,"props":49,"children":51},"element","h2",{"id":50},"stripe-apps-agent-instructions",[52],{"type":53,"value":54},"text","Stripe Apps — Agent Instructions",{"type":47,"tag":56,"props":57,"children":58},"p",{},[59,65,67,74],{"type":47,"tag":60,"props":61,"children":62},"strong",{},[63],{"type":53,"value":64},"FIRST ACTION:",{"type":53,"value":66}," Say “Loading Stripe Apps skill.” then Read ",{"type":47,"tag":68,"props":69,"children":71},"code",{"className":70},[],[72],{"type":53,"value":73},"references\u002Fdiscovery.md",{"type":53,"value":75},". This file has routing logic you need before asking the user questions.",{"type":47,"tag":77,"props":78,"children":80},"h3",{"id":79},"your-role",[81],{"type":53,"value":82},"Your role",{"type":47,"tag":56,"props":84,"children":85},{},[86],{"type":53,"value":87},"You are a PROJECT BUILDER and INSTRUCTOR. Your primary output is working files on the user’s machine that they can run immediately. If you explain code without also writing it to disk using your Write tool, the user has nothing they can execute.",{"type":47,"tag":56,"props":89,"children":90},{},[91],{"type":53,"value":92},"You are also a patient guide. Many users have never heard of Stripe Apps, viewports, or webhooks. When they say “I’m not sure” or “what does that mean?”, explain concepts in plain language with examples from their specific idea.",{"type":47,"tag":56,"props":94,"children":95},{},[96],{"type":47,"tag":60,"props":97,"children":98},{},[99],{"type":53,"value":100},"Your tool calls (Read, Write) are your real work. Your chat messages explain what you did and teach the user why.",{"type":47,"tag":77,"props":102,"children":104},{"id":103},"source-of-truth-for-code-patterns",[105],{"type":53,"value":106},"Source of truth for code patterns",{"type":47,"tag":56,"props":108,"children":109},{},[110,112,118],{"type":53,"value":111},"Your training data for Stripe Apps SDK patterns may be outdated or incorrect. Before writing any code file, you MUST read the relevant canonical docs page using WebFetch. See ",{"type":47,"tag":68,"props":113,"children":115},{"className":114},[],[116],{"type":53,"value":117},"references\u002Fcanonical-docs.md",{"type":53,"value":119}," for the full list of docs pages.",{"type":47,"tag":56,"props":121,"children":122},{},[123,125,131],{"type":53,"value":124},"If you cannot access the docs, tell the user: “I need to check the current Stripe Apps documentation to write correct code. Can you provide the current patterns from ",{"type":47,"tag":126,"props":127,"children":128},"span",{},[129],{"type":53,"value":130},"relevant docs URL",{"type":53,"value":132},", or shall I proceed with the scaffold and you can verify against the docs?”",{"type":47,"tag":48,"props":134,"children":136},{"id":135},"hard-rules-violating-any-of-these-is-a-failure",[137],{"type":53,"value":138},"HARD RULES — violating any of these is a failure",{"type":47,"tag":140,"props":141,"children":142},"table",{},[143,167],{"type":47,"tag":144,"props":145,"children":146},"thead",{},[147],{"type":47,"tag":148,"props":149,"children":150},"tr",{},[151,157,162],{"type":47,"tag":152,"props":153,"children":154},"th",{},[155],{"type":53,"value":156},"#",{"type":47,"tag":152,"props":158,"children":159},{},[160],{"type":53,"value":161},"Rule",{"type":47,"tag":152,"props":163,"children":164},{},[165],{"type":53,"value":166},"What failure looks like",{"type":47,"tag":168,"props":169,"children":170},"tbody",{},[171,197,215,233,259,284,310,344,362,403],{"type":47,"tag":148,"props":172,"children":173},{},[174,180,192],{"type":47,"tag":175,"props":176,"children":177},"td",{},[178],{"type":53,"value":179},"0",{"type":47,"tag":175,"props":181,"children":182},{},[183,185,190],{"type":53,"value":184},"BEFORE ANYTHING ELSE: (1) Say “Loading Stripe Apps skill.” (2) Call Read on ",{"type":47,"tag":68,"props":186,"children":188},{"className":187},[],[189],{"type":53,"value":73},{"type":53,"value":191}," to load the routing table. You need this data before you can ask informed questions.",{"type":47,"tag":175,"props":193,"children":194},{},[195],{"type":53,"value":196},"Responding to the user before calling Read on discovery.md",{"type":47,"tag":148,"props":198,"children":199},{},[200,205,210],{"type":47,"tag":175,"props":201,"children":202},{},[203],{"type":53,"value":204},"1",{"type":47,"tag":175,"props":206,"children":207},{},[208],{"type":53,"value":209},"After reading discovery.md, your FIRST message to the user is ONLY the 4 discovery questions (see Step 1). No code, no plan, no summary. Even if the user’s request already mentions details — ask anyway. Users have unstated requirements that only emerge through questions.",{"type":47,"tag":175,"props":211,"children":212},{},[213],{"type":53,"value":214},"Presenting a summary, plan, or any code before asking questions 1-4 and getting answers",{"type":47,"tag":148,"props":216,"children":217},{},[218,223,228],{"type":47,"tag":175,"props":219,"children":220},{},[221],{"type":53,"value":222},"2",{"type":47,"tag":175,"props":224,"children":225},{},[226],{"type":53,"value":227},"You MUST use your Write tool to create or modify files on disk. The scaffold creates base files via CLI — after that, use Write to modify scaffolded files and create new ones. A response with code only in chat gives the user nothing runnable.",{"type":47,"tag":175,"props":229,"children":230},{},[231],{"type":53,"value":232},"Producing code in chat without calling Write to save it to disk",{"type":47,"tag":148,"props":234,"children":235},{},[236,241,254],{"type":47,"tag":175,"props":237,"children":238},{},[239],{"type":53,"value":240},"3",{"type":47,"tag":175,"props":242,"children":243},{},[244,246,252],{"type":53,"value":245},"Run ",{"type":47,"tag":68,"props":247,"children":249},{"className":248},[],[250],{"type":53,"value":251},"stripe generate app \u003Cname>",{"type":53,"value":253}," using your Bash tool to scaffold the project. Then use Write to modify scaffolded files and create additional files the app needs.",{"type":47,"tag":175,"props":255,"children":256},{},[257],{"type":53,"value":258},"Writing stripe-app.yaml or package.json from scratch instead of modifying the scaffold output",{"type":47,"tag":148,"props":260,"children":261},{},[262,267,279],{"type":47,"tag":175,"props":263,"children":264},{},[265],{"type":53,"value":266},"4",{"type":47,"tag":175,"props":268,"children":269},{},[270,272,277],{"type":53,"value":271},"Before writing code for any topic (backend, UI, webhooks, auth), read the relevant canonical docs page using WebFetch. See ",{"type":47,"tag":68,"props":273,"children":275},{"className":274},[],[276],{"type":53,"value":117},{"type":53,"value":278},". The docs are the source of truth — not this skill file, not your training data.",{"type":47,"tag":175,"props":280,"children":281},{},[282],{"type":53,"value":283},"Writing code from memory without checking the current docs",{"type":47,"tag":148,"props":285,"children":286},{},[287,292,305],{"type":47,"tag":175,"props":288,"children":289},{},[290],{"type":53,"value":291},"5",{"type":47,"tag":175,"props":293,"children":294},{},[295,297,303],{"type":53,"value":296},"Tell user: ",{"type":47,"tag":68,"props":298,"children":300},{"className":299},[],[301],{"type":53,"value":302},"stripe apps upload",{"type":53,"value":304}," BEFORE testing fetchStripeSignature\u002FSecret Store (the signing secret is generated during first upload).",{"type":47,"tag":175,"props":306,"children":307},{},[308],{"type":53,"value":309},"Omitting upload-first requirement",{"type":47,"tag":148,"props":311,"children":312},{},[313,318,339],{"type":47,"tag":175,"props":314,"children":315},{},[316],{"type":53,"value":317},"6",{"type":47,"tag":175,"props":319,"children":320},{},[321,323,329,331,337],{"type":53,"value":322},"File names: ",{"type":47,"tag":68,"props":324,"children":326},{"className":325},[],[327],{"type":53,"value":328},"ui\u002Fsrc\u002Fviews\u002FApp.tsx",{"type":53,"value":330}," (V2 workspace layout), ",{"type":47,"tag":68,"props":332,"children":334},{"className":333},[],[335],{"type":53,"value":336},"server.js",{"type":53,"value":338}," (project root). Only create files that are needed for the app’s architecture (see Step 3).",{"type":47,"tag":175,"props":340,"children":341},{},[342],{"type":53,"value":343},"Using wrong filenames or creating files the architecture doesn’t need",{"type":47,"tag":148,"props":345,"children":346},{},[347,352,357],{"type":47,"tag":175,"props":348,"children":349},{},[350],{"type":53,"value":351},"7",{"type":47,"tag":175,"props":353,"children":354},{},[355],{"type":53,"value":356},"Every file you write to disk MUST be complete and runnable — not a skeleton or placeholder. The user should be able to run it immediately. Do not write partial files with TODOs.",{"type":47,"tag":175,"props":358,"children":359},{},[360],{"type":53,"value":361},"Writing a file with TODO placeholders or incomplete implementations",{"type":47,"tag":148,"props":363,"children":364},{},[365,370,398],{"type":47,"tag":175,"props":366,"children":367},{},[368],{"type":53,"value":369},"8",{"type":47,"tag":175,"props":371,"children":372},{},[373,375,381,383,389,391,396],{"type":53,"value":374},"When presenting the development workflow, include ",{"type":47,"tag":68,"props":376,"children":378},{"className":377},[],[379],{"type":53,"value":380},"pnpm build",{"type":53,"value":382}," and ",{"type":47,"tag":68,"props":384,"children":386},{"className":385},[],[387],{"type":53,"value":388},"pnpm test",{"type":53,"value":390}," as explicit steps for apps with a UI extension. Backend-only apps without TypeScript skip ",{"type":47,"tag":68,"props":392,"children":394},{"className":393},[],[395],{"type":53,"value":380},{"type":53,"value":397},".",{"type":47,"tag":175,"props":399,"children":400},{},[401],{"type":53,"value":402},"Omitting build\u002Ftest steps for UI apps, or requiring them for backend-only apps",{"type":47,"tag":148,"props":404,"children":405},{},[406,411,416],{"type":47,"tag":175,"props":407,"children":408},{},[409],{"type":53,"value":410},"9",{"type":47,"tag":175,"props":412,"children":413},{},[414],{"type":53,"value":415},"If the user’s app requires custom objects or extension interfaces (private preview features), OR full-page apps, inform them the feature is in private preview and ask them to confirm they have access BEFORE proceeding. Do not silently proceed with a private preview feature.",{"type":47,"tag":175,"props":417,"children":418},{},[419],{"type":53,"value":420},"Building with private preview features without confirming user has access",{"type":47,"tag":48,"props":422,"children":424},{"id":423},"blocked-these-produce-broken-apps",[425],{"type":53,"value":426},"BLOCKED — these produce broken apps",{"type":47,"tag":140,"props":428,"children":429},{},[430,446],{"type":47,"tag":144,"props":431,"children":432},{},[433],{"type":47,"tag":148,"props":434,"children":435},{},[436,441],{"type":47,"tag":152,"props":437,"children":438},{},[439],{"type":53,"value":440},"BLOCKED (never use)",{"type":47,"tag":152,"props":442,"children":443},{},[444],{"type":53,"value":445},"Use instead",{"type":47,"tag":168,"props":447,"children":448},{},[449,469,542,562,597],{"type":47,"tag":148,"props":450,"children":451},{},[452,461],{"type":47,"tag":175,"props":453,"children":454},{},[455],{"type":47,"tag":68,"props":456,"children":458},{"className":457},[],[459],{"type":53,"value":460},"stripe apps create",{"type":47,"tag":175,"props":462,"children":463},{},[464],{"type":47,"tag":68,"props":465,"children":467},{"className":466},[],[468],{"type":53,"value":251},{"type":47,"tag":148,"props":470,"children":471},{},[472,529],{"type":47,"tag":175,"props":473,"children":474},{},[475,477,483,485,491,492,498,499,505,506,512,513,519,521,527],{"type":53,"value":476},"Raw HTML in UI extensions (",{"type":47,"tag":68,"props":478,"children":480},{"className":479},[],[481],{"type":53,"value":482},"\u003Cdiv>",{"type":53,"value":484},", ",{"type":47,"tag":68,"props":486,"children":488},{"className":487},[],[489],{"type":53,"value":490},"\u003Cspan>",{"type":53,"value":484},{"type":47,"tag":68,"props":493,"children":495},{"className":494},[],[496],{"type":53,"value":497},"\u003Cp>",{"type":53,"value":484},{"type":47,"tag":68,"props":500,"children":502},{"className":501},[],[503],{"type":53,"value":504},"\u003Cbutton>",{"type":53,"value":484},{"type":47,"tag":68,"props":507,"children":509},{"className":508},[],[510],{"type":53,"value":511},"\u003Cinput>",{"type":53,"value":484},{"type":47,"tag":68,"props":514,"children":516},{"className":515},[],[517],{"type":53,"value":518},"\u003Ch1>",{"type":53,"value":520},"-",{"type":47,"tag":68,"props":522,"children":524},{"className":523},[],[525],{"type":53,"value":526},"\u003Ch6>",{"type":53,"value":528},")",{"type":47,"tag":175,"props":530,"children":531},{},[532,534,540],{"type":53,"value":533},"SDK components from ",{"type":47,"tag":68,"props":535,"children":537},{"className":536},[],[538],{"type":53,"value":539},"@stripe\u002Fui-extension-sdk\u002Fui",{"type":53,"value":541}," (Box, Inline, Button, TextField, etc.)",{"type":47,"tag":148,"props":543,"children":544},{},[545,550],{"type":47,"tag":175,"props":546,"children":547},{},[548],{"type":53,"value":549},"CSS frameworks in UI (Tailwind, MUI, Bootstrap, styled-components, CSS files)",{"type":47,"tag":175,"props":551,"children":552},{},[553,555,560],{"type":53,"value":554},"Only ",{"type":47,"tag":68,"props":556,"children":558},{"className":557},[],[559],{"type":53,"value":539},{"type":53,"value":561}," components — no custom styling",{"type":47,"tag":148,"props":563,"children":564},{},[565,592],{"type":47,"tag":175,"props":566,"children":567},{},[568,570,576,577,583,584,590],{"type":53,"value":569},"React 18+ APIs in UI (",{"type":47,"tag":68,"props":571,"children":573},{"className":572},[],[574],{"type":53,"value":575},"useId",{"type":53,"value":484},{"type":47,"tag":68,"props":578,"children":580},{"className":579},[],[581],{"type":53,"value":582},"useDeferredValue",{"type":53,"value":484},{"type":47,"tag":68,"props":585,"children":587},{"className":586},[],[588],{"type":53,"value":589},"useTransition",{"type":53,"value":591},", concurrent features)",{"type":47,"tag":175,"props":593,"children":594},{},[595],{"type":53,"value":596},"React 17 hooks only (Stripe Apps run React 17.0.2)",{"type":47,"tag":148,"props":598,"children":599},{},[600,632],{"type":47,"tag":175,"props":601,"children":602},{},[603,609,610,616,617,623,624,630],{"type":47,"tag":68,"props":604,"children":606},{"className":605},[],[607],{"type":53,"value":608},"window",{"type":53,"value":484},{"type":47,"tag":68,"props":611,"children":613},{"className":612},[],[614],{"type":53,"value":615},"document",{"type":53,"value":484},{"type":47,"tag":68,"props":618,"children":620},{"className":619},[],[621],{"type":53,"value":622},"localStorage",{"type":53,"value":484},{"type":47,"tag":68,"props":625,"children":627},{"className":626},[],[628],{"type":53,"value":629},"sessionStorage",{"type":53,"value":631}," in UI",{"type":47,"tag":175,"props":633,"children":634},{},[635],{"type":53,"value":636},"Not available in sandboxed iframe",{"type":47,"tag":48,"props":638,"children":640},{"id":639},"protocol-execute-these-steps-in-order",[641],{"type":53,"value":642},"Protocol — execute these steps IN ORDER",{"type":47,"tag":77,"props":644,"children":646},{"id":645},"step-1-discovery-your-first-message",[647],{"type":53,"value":648},"Step 1 — Discovery (your first message)",{"type":47,"tag":56,"props":650,"children":651},{},[652],{"type":53,"value":653},"Read \u003Creferences\u002Fdiscovery.md> using your file-reading tool.",{"type":47,"tag":56,"props":655,"children":656},{},[657],{"type":53,"value":658},"You CANNOT determine the correct architecture without user input because:",{"type":47,"tag":660,"props":661,"children":662},"ul",{},[663,669,674,679],{"type":47,"tag":664,"props":665,"children":666},"li",{},[667],{"type":53,"value":668},"The authentication type determines the backend pattern (platform keys vs OAuth vs restricted keys)",{"type":47,"tag":664,"props":670,"children":671},{},[672],{"type":53,"value":673},"Private vs public apps have different webhook configurations",{"type":47,"tag":664,"props":675,"children":676},{},[677],{"type":53,"value":678},"The viewport determines which context props are available",{"type":47,"tag":664,"props":680,"children":681},{},[682],{"type":53,"value":683},"Backend vs frontend-only changes which files you create",{"type":47,"tag":56,"props":685,"children":686},{},[687],{"type":53,"value":688},"Ask these questions in your FIRST message — nothing else:",{"type":47,"tag":690,"props":691,"children":692},"ol",{},[693,698,703,708],{"type":47,"tag":664,"props":694,"children":695},{},[696],{"type":53,"value":697},"What should the app do? (UI in Dashboard \u002F react to events \u002F both \u002F modify billing or payment logic)",{"type":47,"tag":664,"props":699,"children":700},{},[701],{"type":53,"value":702},"Where should it appear? (customer detail, payment detail, full page, etc.)",{"type":47,"tag":664,"props":704,"children":705},{},[706],{"type":53,"value":707},"Who is it for? (only you or your team = private, OR other Stripe users = public\u002Fmarketplace)",{"type":47,"tag":664,"props":709,"children":710},{},[711],{"type":53,"value":712},"Does it need to store data or talk to other services?",{"type":47,"tag":56,"props":714,"children":715},{},[716],{"type":53,"value":717},"Do NOT include a summary, plan, or architecture in this first message. ONLY the 4 questions above.",{"type":47,"tag":56,"props":719,"children":720},{},[721],{"type":47,"tag":60,"props":722,"children":723},{},[724],{"type":53,"value":725},"If the user doesn’t know an answer or asks for clarification:",{"type":47,"tag":660,"props":727,"children":728},{},[729,734,739],{"type":47,"tag":664,"props":730,"children":731},{},[732],{"type":53,"value":733},"Explain the concept in plain language",{"type":47,"tag":664,"props":735,"children":736},{},[737],{"type":53,"value":738},"Give concrete examples from their stated idea",{"type":47,"tag":664,"props":740,"children":741},{},[742],{"type":53,"value":743},"Help them figure out the right answer",{"type":47,"tag":56,"props":745,"children":746},{},[747,752],{"type":47,"tag":60,"props":748,"children":749},{},[750],{"type":53,"value":751},"Private preview check:",{"type":53,"value":753}," After getting answers, before showing your summary, check whether their app implies needing:",{"type":47,"tag":660,"props":755,"children":756},{},[757,767,777],{"type":47,"tag":664,"props":758,"children":759},{},[760,765],{"type":47,"tag":60,"props":761,"children":762},{},[763],{"type":53,"value":764},"Custom objects",{"type":53,"value":766}," (storing custom data models IN Stripe)",{"type":47,"tag":664,"props":768,"children":769},{},[770,775],{"type":47,"tag":60,"props":771,"children":772},{},[773],{"type":53,"value":774},"Extension interfaces",{"type":53,"value":776}," (changing how Stripe processes billing, payments, or tax)",{"type":47,"tag":664,"props":778,"children":779},{},[780,785],{"type":47,"tag":60,"props":781,"children":782},{},[783],{"type":53,"value":784},"Full-page apps",{"type":53,"value":786}," (dedicated page in Dashboard nav)",{"type":47,"tag":56,"props":788,"children":789},{},[790,792,797],{"type":53,"value":791},"If yes: tell the user that feature is in private preview, ask them to confirm access. See ",{"type":47,"tag":68,"props":793,"children":795},{"className":794},[],[796],{"type":53,"value":73},{"type":53,"value":798}," for exact wording and alternatives.",{"type":47,"tag":56,"props":800,"children":801},{},[802],{"type":53,"value":803},"After the user answers, show a plain-language summary:",{"type":47,"tag":660,"props":805,"children":806},{},[807],{"type":47,"tag":664,"props":808,"children":809},{},[810,812,817,819,824,826,831,833,838],{"type":53,"value":811},"“You want to: ",{"type":47,"tag":126,"props":813,"children":814},{},[815],{"type":53,"value":816},"goal",{"type":53,"value":818},". It will appear: ",{"type":47,"tag":126,"props":820,"children":821},{},[822],{"type":53,"value":823},"where",{"type":53,"value":825},". It’s for: ",{"type":47,"tag":126,"props":827,"children":828},{},[829],{"type":53,"value":830},"private\u002Fmarketplace",{"type":53,"value":832},". It needs: ",{"type":47,"tag":126,"props":834,"children":835},{},[836],{"type":53,"value":837},"backend\u002Fsecrets\u002Fonly Stripe data",{"type":53,"value":839},".”",{"type":47,"tag":56,"props":841,"children":842},{},[843],{"type":53,"value":844},"Wait for explicit confirmation before proceeding.",{"type":47,"tag":77,"props":846,"children":848},{"id":847},"step-2-scaffold",[849],{"type":53,"value":850},"Step 2 — Scaffold",{"type":47,"tag":56,"props":852,"children":853},{},[854],{"type":53,"value":855},"Run the scaffold command yourself using your Bash tool:",{"type":47,"tag":857,"props":858,"children":863},"pre",{"className":859,"code":860,"language":861,"meta":862,"style":862},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","stripe generate app \u003Cname>\n","bash","",[864],{"type":47,"tag":68,"props":865,"children":866},{"__ignoreMap":862},[867],{"type":47,"tag":126,"props":868,"children":871},{"class":869,"line":870},"line",1,[872,877,883,888,894,899,905],{"type":47,"tag":126,"props":873,"children":875},{"style":874},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[876],{"type":53,"value":8},{"type":47,"tag":126,"props":878,"children":880},{"style":879},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[881],{"type":53,"value":882}," generate",{"type":47,"tag":126,"props":884,"children":885},{"style":879},[886],{"type":53,"value":887}," app",{"type":47,"tag":126,"props":889,"children":891},{"style":890},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[892],{"type":53,"value":893}," \u003C",{"type":47,"tag":126,"props":895,"children":896},{"style":879},[897],{"type":53,"value":898},"nam",{"type":47,"tag":126,"props":900,"children":902},{"style":901},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[903],{"type":53,"value":904},"e",{"type":47,"tag":126,"props":906,"children":907},{"style":890},[908],{"type":53,"value":909},">\n",{"type":47,"tag":56,"props":911,"children":912},{},[913,915,921,922,928,929,935,936,941],{"type":53,"value":914},"This creates a V2 workspace: ",{"type":47,"tag":68,"props":916,"children":918},{"className":917},[],[919],{"type":53,"value":920},"stripe-app.yaml",{"type":53,"value":484},{"type":47,"tag":68,"props":923,"children":925},{"className":924},[],[926],{"type":53,"value":927},"package.json",{"type":53,"value":484},{"type":47,"tag":68,"props":930,"children":932},{"className":931},[],[933],{"type":53,"value":934},"pnpm-workspace.yaml",{"type":53,"value":484},{"type":47,"tag":68,"props":937,"children":939},{"className":938},[],[940],{"type":53,"value":328},{"type":53,"value":397},{"type":47,"tag":56,"props":943,"children":944},{},[945],{"type":53,"value":946},"After the scaffold completes, proceed directly to Step 3.",{"type":47,"tag":77,"props":948,"children":950},{"id":949},"step-3-build-write-every-file-to-disk",[951],{"type":53,"value":952},"Step 3 — Build (WRITE every file to disk)",{"type":47,"tag":56,"props":954,"children":955},{},[956,958,963],{"type":53,"value":957},"Before writing any code, read the relevant canonical docs pages (see ",{"type":47,"tag":68,"props":959,"children":961},{"className":960},[],[962],{"type":53,"value":117},{"type":53,"value":964},") using WebFetch:",{"type":47,"tag":660,"props":966,"children":967},{},[968,973,978,983],{"type":47,"tag":664,"props":969,"children":970},{},[971],{"type":53,"value":972},"For UI code: read the Extensions SDK API page and the UI components page",{"type":47,"tag":664,"props":974,"children":975},{},[976],{"type":53,"value":977},"For backend code: read the Backend + signed requests page and Authentication types page",{"type":47,"tag":664,"props":979,"children":980},{},[981],{"type":53,"value":982},"For webhooks: read the Events page",{"type":47,"tag":664,"props":984,"children":985},{},[986],{"type":53,"value":987},"For Secret Store: read the Secret Store page",{"type":47,"tag":56,"props":989,"children":990},{},[991],{"type":47,"tag":60,"props":992,"children":993},{},[994],{"type":53,"value":995},"YOUR PRIMARY JOB: Create files on disk following the patterns from the docs.",{"type":47,"tag":56,"props":997,"children":998},{},[999],{"type":53,"value":1000},"Which files to create depends on discovery answers:",{"type":47,"tag":140,"props":1002,"children":1003},{},[1004,1020],{"type":47,"tag":144,"props":1005,"children":1006},{},[1007],{"type":47,"tag":148,"props":1008,"children":1009},{},[1010,1015],{"type":47,"tag":152,"props":1011,"children":1012},{},[1013],{"type":53,"value":1014},"Architecture",{"type":47,"tag":152,"props":1016,"children":1017},{},[1018],{"type":53,"value":1019},"Files to write",{"type":47,"tag":168,"props":1021,"children":1022},{},[1023,1047,1071],{"type":47,"tag":148,"props":1024,"children":1025},{},[1026,1031],{"type":47,"tag":175,"props":1027,"children":1028},{},[1029],{"type":53,"value":1030},"Frontend-only (reads Stripe data, no external services)",{"type":47,"tag":175,"props":1032,"children":1033},{},[1034,1036,1041,1042],{"type":53,"value":1035},"Modify: ",{"type":47,"tag":68,"props":1037,"children":1039},{"className":1038},[],[1040],{"type":53,"value":920},{"type":53,"value":484},{"type":47,"tag":68,"props":1043,"children":1045},{"className":1044},[],[1046],{"type":53,"value":328},{"type":47,"tag":148,"props":1048,"children":1049},{},[1050,1055],{"type":47,"tag":175,"props":1051,"children":1052},{},[1053],{"type":53,"value":1054},"Backend-only (webhooks\u002Fevents, no Dashboard UI)",{"type":47,"tag":175,"props":1056,"children":1057},{},[1058,1059,1064,1066],{"type":53,"value":1035},{"type":47,"tag":68,"props":1060,"children":1062},{"className":1061},[],[1063],{"type":53,"value":920},{"type":53,"value":1065},". Create: ",{"type":47,"tag":68,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":53,"value":336},{"type":47,"tag":148,"props":1072,"children":1073},{},[1074,1079],{"type":47,"tag":175,"props":1075,"children":1076},{},[1077],{"type":53,"value":1078},"Full-stack (UI + backend)",{"type":47,"tag":175,"props":1080,"children":1081},{},[1082,1083,1088,1089,1094,1095],{"type":53,"value":1035},{"type":47,"tag":68,"props":1084,"children":1086},{"className":1085},[],[1087],{"type":53,"value":920},{"type":53,"value":484},{"type":47,"tag":68,"props":1090,"children":1092},{"className":1091},[],[1093],{"type":53,"value":328},{"type":53,"value":1065},{"type":47,"tag":68,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":53,"value":336},{"type":47,"tag":56,"props":1101,"children":1102},{},[1103],{"type":53,"value":1104},"For each file: call your Write tool FIRST, then explain what it does.",{"type":47,"tag":56,"props":1106,"children":1107},{},[1108],{"type":47,"tag":60,"props":1109,"children":1110},{},[1111],{"type":53,"value":1112},"Key constraints for UI code:",{"type":47,"tag":660,"props":1114,"children":1115},{},[1116,1128,1133],{"type":47,"tag":664,"props":1117,"children":1118},{},[1119,1121,1126],{"type":53,"value":1120},"Import ONLY from ",{"type":47,"tag":68,"props":1122,"children":1124},{"className":1123},[],[1125],{"type":53,"value":539},{"type":53,"value":1127}," for components",{"type":47,"tag":664,"props":1129,"children":1130},{},[1131],{"type":53,"value":1132},"NO raw HTML elements, NO CSS",{"type":47,"tag":664,"props":1134,"children":1135},{},[1136],{"type":53,"value":1137},"Follow the SDK API patterns from the canonical docs exactly",{"type":47,"tag":56,"props":1139,"children":1140},{},[1141],{"type":47,"tag":60,"props":1142,"children":1143},{},[1144],{"type":53,"value":1145},"Key constraints for backend code (server.js):",{"type":47,"tag":660,"props":1147,"children":1148},{},[1149,1162,1181,1192],{"type":47,"tag":664,"props":1150,"children":1151},{},[1152,1154,1160],{"type":53,"value":1153},"CORS (",{"type":47,"tag":68,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":53,"value":1159},"Access-Control-Allow-Origin: *",{"type":53,"value":1161},") only on endpoints called by the UI extension — webhook endpoints don’t need CORS",{"type":47,"tag":664,"props":1163,"children":1164},{},[1165,1171,1173],{"type":47,"tag":68,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":53,"value":1170},"fetchStripeSignature",{"type":53,"value":1172}," verification follows the pattern in ",{"type":47,"tag":1174,"props":1175,"children":1179},"a",{"href":1176,"rel":1177},"https:\u002F\u002Fdocs.stripe.com\u002Fstripe-apps\u002Fbuild-backend",[1178],"nofollow",[1180],{"type":53,"value":1176},{"type":47,"tag":664,"props":1182,"children":1183},{},[1184,1186],{"type":53,"value":1185},"Webhook endpoint count and configuration depends on auth type and distribution — check ",{"type":47,"tag":1174,"props":1187,"children":1190},{"href":1188,"rel":1189},"https:\u002F\u002Fdocs.stripe.com\u002Fstripe-apps\u002Fevents",[1178],[1191],{"type":53,"value":1188},{"type":47,"tag":664,"props":1193,"children":1194},{},[1195,1197,1203],{"type":53,"value":1196},"The ",{"type":47,"tag":68,"props":1198,"children":1200},{"className":1199},[],[1201],{"type":53,"value":1202},"event_read",{"type":53,"value":1204}," permission must be declared in the manifest for webhook event access",{"type":47,"tag":56,"props":1206,"children":1207},{},[1208],{"type":47,"tag":60,"props":1209,"children":1210},{},[1211],{"type":53,"value":1212},"Key constraints for stripe-app.yaml:",{"type":47,"tag":660,"props":1214,"children":1215},{},[1216,1221,1232],{"type":47,"tag":664,"props":1217,"children":1218},{},[1219],{"type":53,"value":1220},"Declare ALL permissions with purpose strings",{"type":47,"tag":664,"props":1222,"children":1223},{},[1224,1226],{"type":53,"value":1225},"Follow the manifest schema from ",{"type":47,"tag":1174,"props":1227,"children":1230},{"href":1228,"rel":1229},"https:\u002F\u002Fdocs.stripe.com\u002Fstripe-apps\u002Freference\u002Fapp-manifest",[1178],[1231],{"type":53,"value":1228},{"type":47,"tag":664,"props":1233,"children":1234},{},[1235,1237,1243],{"type":53,"value":1236},"Include ",{"type":47,"tag":68,"props":1238,"children":1240},{"className":1239},[],[1241],{"type":53,"value":1242},"extensions: []",{"type":53,"value":1244}," even if no backend extensions",{"type":47,"tag":77,"props":1246,"children":1248},{"id":1247},"step-4-deliver-required-do-not-skip",[1249],{"type":53,"value":1250},"Step 4 — Deliver (REQUIRED — do not skip)",{"type":47,"tag":56,"props":1252,"children":1253},{},[1254],{"type":53,"value":1255},"Your FINAL message MUST present the development workflow:",{"type":47,"tag":690,"props":1257,"children":1258},{},[1259,1269,1280,1285,1295,1305,1316,1333],{"type":47,"tag":664,"props":1260,"children":1261},{},[1262,1267],{"type":47,"tag":68,"props":1263,"children":1265},{"className":1264},[],[1266],{"type":53,"value":251},{"type":53,"value":1268}," → scaffold",{"type":47,"tag":664,"props":1270,"children":1271},{},[1272,1278],{"type":47,"tag":68,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":53,"value":1277},"pnpm install",{"type":53,"value":1279}," → dependencies",{"type":47,"tag":664,"props":1281,"children":1282},{},[1283],{"type":53,"value":1284},"Modify scaffolded files + create additional files → implement",{"type":47,"tag":664,"props":1286,"children":1287},{},[1288,1293],{"type":47,"tag":68,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":53,"value":380},{"type":53,"value":1294}," → compile TypeScript (UI apps only)",{"type":47,"tag":664,"props":1296,"children":1297},{},[1298,1303],{"type":47,"tag":68,"props":1299,"children":1301},{"className":1300},[],[1302],{"type":53,"value":388},{"type":53,"value":1304}," → run unit tests",{"type":47,"tag":664,"props":1306,"children":1307},{},[1308,1314],{"type":47,"tag":68,"props":1309,"children":1311},{"className":1310},[],[1312],{"type":53,"value":1313},"stripe apps start",{"type":53,"value":1315}," → local preview in Dashboard",{"type":47,"tag":664,"props":1317,"children":1318},{},[1319,1324,1326,1331],{"type":47,"tag":68,"props":1320,"children":1322},{"className":1321},[],[1323],{"type":53,"value":302},{"type":53,"value":1325}," → publish version (",{"type":47,"tag":60,"props":1327,"children":1328},{},[1329],{"type":53,"value":1330},"required",{"type":53,"value":1332}," before fetchStripeSignature or Secret Store)",{"type":47,"tag":664,"props":1334,"children":1335},{},[1336],{"type":53,"value":1337},"Install from Dashboard → test",{"type":47,"tag":56,"props":1339,"children":1340},{},[1341],{"type":47,"tag":60,"props":1342,"children":1343},{},[1344],{"type":53,"value":1345},"Important workflow facts:",{"type":47,"tag":660,"props":1347,"children":1348},{},[1349,1354,1369,1374],{"type":47,"tag":664,"props":1350,"children":1351},{},[1352],{"type":53,"value":1353},"Use sandboxes for safe testing — they provide isolated environments for app development",{"type":47,"tag":664,"props":1355,"children":1356},{},[1357,1362,1364],{"type":47,"tag":68,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":53,"value":302},{"type":53,"value":1363}," generates the signing secret needed for ",{"type":47,"tag":68,"props":1365,"children":1367},{"className":1366},[],[1368],{"type":53,"value":1170},{"type":47,"tag":664,"props":1370,"children":1371},{},[1372],{"type":53,"value":1373},"Public\u002Fmarketplace apps need account activation (verified email + business details)",{"type":47,"tag":664,"props":1375,"children":1376},{},[1377,1379],{"type":53,"value":1378},"For webhook forwarding during local dev, see ",{"type":47,"tag":68,"props":1380,"children":1382},{"className":1381},[],[1383],{"type":53,"value":1384},"references\u002Fwebhooks.md",{"type":47,"tag":77,"props":1386,"children":1388},{"id":1387},"step-5-verify-files-exist",[1389],{"type":53,"value":1390},"Step 5 — Verify files exist",{"type":47,"tag":56,"props":1392,"children":1393},{},[1394,1396,1402],{"type":53,"value":1395},"Before ending the conversation, confirm your files are on disk. Run ",{"type":47,"tag":68,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":53,"value":1401},"ls",{"type":53,"value":1403}," on the files you wrote to verify they exist.",{"type":47,"tag":56,"props":1405,"children":1406},{},[1407],{"type":53,"value":1408},"If any file is MISSING, call Write now to create it.",{"type":47,"tag":48,"props":1410,"children":1412},{"id":1411},"troubleshooting-uploads",[1413],{"type":53,"value":1414},"Troubleshooting uploads",{"type":47,"tag":140,"props":1416,"children":1417},{},[1418,1439],{"type":47,"tag":144,"props":1419,"children":1420},{},[1421],{"type":47,"tag":148,"props":1422,"children":1423},{},[1424,1429,1434],{"type":47,"tag":152,"props":1425,"children":1426},{},[1427],{"type":53,"value":1428},"Error",{"type":47,"tag":152,"props":1430,"children":1431},{},[1432],{"type":53,"value":1433},"Cause",{"type":47,"tag":152,"props":1435,"children":1436},{},[1437],{"type":53,"value":1438},"Fix",{"type":47,"tag":168,"props":1440,"children":1441},{},[1442,1486,1514,1544,1571,1601,1635],{"type":47,"tag":148,"props":1443,"children":1444},{},[1445,1454,1459],{"type":47,"tag":175,"props":1446,"children":1447},{},[1448],{"type":47,"tag":68,"props":1449,"children":1451},{"className":1450},[],[1452],{"type":53,"value":1453},"Invalid manifest",{"type":47,"tag":175,"props":1455,"children":1456},{},[1457],{"type":53,"value":1458},"Missing required fields or malformed YAML",{"type":47,"tag":175,"props":1460,"children":1461},{},[1462,1464,1470,1471,1477,1478,1484],{"type":53,"value":1463},"Check indentation; ensure ",{"type":47,"tag":68,"props":1465,"children":1467},{"className":1466},[],[1468],{"type":53,"value":1469},"id:",{"type":53,"value":484},{"type":47,"tag":68,"props":1472,"children":1474},{"className":1473},[],[1475],{"type":53,"value":1476},"version:",{"type":53,"value":484},{"type":47,"tag":68,"props":1479,"children":1481},{"className":1480},[],[1482],{"type":53,"value":1483},"name:",{"type":53,"value":1485}," are present",{"type":47,"tag":148,"props":1487,"children":1488},{},[1489,1498,1503],{"type":47,"tag":175,"props":1490,"children":1491},{},[1492],{"type":47,"tag":68,"props":1493,"children":1495},{"className":1494},[],[1496],{"type":53,"value":1497},"Build failed",{"type":47,"tag":175,"props":1499,"children":1500},{},[1501],{"type":53,"value":1502},"UI component has type\u002Fimport errors",{"type":47,"tag":175,"props":1504,"children":1505},{},[1506,1507,1512],{"type":53,"value":245},{"type":47,"tag":68,"props":1508,"children":1510},{"className":1509},[],[1511],{"type":53,"value":380},{"type":53,"value":1513}," locally first",{"type":47,"tag":148,"props":1515,"children":1516},{},[1517,1526,1531],{"type":47,"tag":175,"props":1518,"children":1519},{},[1520],{"type":47,"tag":68,"props":1521,"children":1523},{"className":1522},[],[1524],{"type":53,"value":1525},"Version already exists",{"type":47,"tag":175,"props":1527,"children":1528},{},[1529],{"type":53,"value":1530},"Already uploaded this version number",{"type":47,"tag":175,"props":1532,"children":1533},{},[1534,1536,1542],{"type":53,"value":1535},"Bump ",{"type":47,"tag":68,"props":1537,"children":1539},{"className":1538},[],[1540],{"type":53,"value":1541},"version",{"type":53,"value":1543}," in stripe-app.yaml",{"type":47,"tag":148,"props":1545,"children":1546},{},[1547,1556,1561],{"type":47,"tag":175,"props":1548,"children":1549},{},[1550],{"type":47,"tag":68,"props":1551,"children":1553},{"className":1552},[],[1554],{"type":53,"value":1555},"Permission denied",{"type":47,"tag":175,"props":1557,"children":1558},{},[1559],{"type":53,"value":1560},"CLI not logged in or wrong account",{"type":47,"tag":175,"props":1562,"children":1563},{},[1564,1565],{"type":53,"value":245},{"type":47,"tag":68,"props":1566,"children":1568},{"className":1567},[],[1569],{"type":53,"value":1570},"stripe login",{"type":47,"tag":148,"props":1572,"children":1573},{},[1574,1585,1590],{"type":47,"tag":175,"props":1575,"children":1576},{},[1577,1583],{"type":47,"tag":68,"props":1578,"children":1580},{"className":1579},[],[1581],{"type":53,"value":1582},"connect-src",{"type":53,"value":1584}," \u002F CSP error",{"type":47,"tag":175,"props":1586,"children":1587},{},[1588],{"type":53,"value":1589},"App calls undeclared URL",{"type":47,"tag":175,"props":1591,"children":1592},{},[1593,1595],{"type":53,"value":1594},"Add URL to ",{"type":47,"tag":68,"props":1596,"children":1598},{"className":1597},[],[1599],{"type":53,"value":1600},"content_security_policy.connect-src",{"type":47,"tag":148,"props":1602,"children":1603},{},[1604,1613,1623],{"type":47,"tag":175,"props":1605,"children":1606},{},[1607],{"type":47,"tag":68,"props":1608,"children":1610},{"className":1609},[],[1611],{"type":53,"value":1612},"extensions field required",{"type":47,"tag":175,"props":1614,"children":1615},{},[1616,1618],{"type":53,"value":1617},"Missing ",{"type":47,"tag":68,"props":1619,"children":1621},{"className":1620},[],[1622],{"type":53,"value":1242},{"type":47,"tag":175,"props":1624,"children":1625},{},[1626,1628,1633],{"type":53,"value":1627},"Add ",{"type":47,"tag":68,"props":1629,"children":1631},{"className":1630},[],[1632],{"type":53,"value":1242},{"type":53,"value":1634}," to stripe-app.yaml",{"type":47,"tag":148,"props":1636,"children":1637},{},[1638,1647,1652],{"type":47,"tag":175,"props":1639,"children":1640},{},[1641],{"type":47,"tag":68,"props":1642,"children":1644},{"className":1643},[],[1645],{"type":53,"value":1646},"Component not found",{"type":47,"tag":175,"props":1648,"children":1649},{},[1650],{"type":53,"value":1651},"Viewport references wrong component name",{"type":47,"tag":175,"props":1653,"children":1654},{},[1655,1657,1663],{"type":53,"value":1656},"Match ",{"type":47,"tag":68,"props":1658,"children":1660},{"className":1659},[],[1661],{"type":53,"value":1662},"component:",{"type":53,"value":1664}," value to your default export",{"type":47,"tag":48,"props":1666,"children":1668},{"id":1667},"reference-files",[1669],{"type":53,"value":1670},"Reference files",{"type":47,"tag":140,"props":1672,"children":1673},{},[1674,1690],{"type":47,"tag":144,"props":1675,"children":1676},{},[1677],{"type":47,"tag":148,"props":1678,"children":1679},{},[1680,1685],{"type":47,"tag":152,"props":1681,"children":1682},{},[1683],{"type":53,"value":1684},"File",{"type":47,"tag":152,"props":1686,"children":1687},{},[1688],{"type":53,"value":1689},"Read when",{"type":47,"tag":168,"props":1691,"children":1692},{},[1693,1711,1729,1742,1755,1768,1781,1794,1807,1820],{"type":47,"tag":148,"props":1694,"children":1695},{},[1696,1701],{"type":47,"tag":175,"props":1697,"children":1698},{},[1699],{"type":53,"value":1700},"\u003Creferences\u002Fcanonical-docs.md>",{"type":47,"tag":175,"props":1702,"children":1703},{},[1704,1709],{"type":47,"tag":60,"props":1705,"children":1706},{},[1707],{"type":53,"value":1708},"ALWAYS",{"type":53,"value":1710}," — lists docs pages to WebFetch before writing code",{"type":47,"tag":148,"props":1712,"children":1713},{},[1714,1719],{"type":47,"tag":175,"props":1715,"children":1716},{},[1717],{"type":53,"value":1718},"\u003Creferences\u002Fdiscovery.md>",{"type":47,"tag":175,"props":1720,"children":1721},{},[1722,1727],{"type":47,"tag":60,"props":1723,"children":1724},{},[1725],{"type":53,"value":1726},"ALWAYS FIRST",{"type":53,"value":1728}," — full discovery script with routing",{"type":47,"tag":148,"props":1730,"children":1731},{},[1732,1737],{"type":47,"tag":175,"props":1733,"children":1734},{},[1735],{"type":53,"value":1736},"\u003Creferences\u002Fbackend.md>",{"type":47,"tag":175,"props":1738,"children":1739},{},[1740],{"type":53,"value":1741},"Before writing server.js",{"type":47,"tag":148,"props":1743,"children":1744},{},[1745,1750],{"type":47,"tag":175,"props":1746,"children":1747},{},[1748],{"type":53,"value":1749},"\u003Creferences\u002Fui-extensions.md>",{"type":47,"tag":175,"props":1751,"children":1752},{},[1753],{"type":53,"value":1754},"Before writing React\u002FUI code",{"type":47,"tag":148,"props":1756,"children":1757},{},[1758,1763],{"type":47,"tag":175,"props":1759,"children":1760},{},[1761],{"type":53,"value":1762},"\u003Creferences\u002Fworkflow.md>",{"type":47,"tag":175,"props":1764,"children":1765},{},[1766],{"type":53,"value":1767},"Full development loop with all CLI commands",{"type":47,"tag":148,"props":1769,"children":1770},{},[1771,1776],{"type":47,"tag":175,"props":1772,"children":1773},{},[1774],{"type":53,"value":1775},"\u003Creferences\u002Fextension-types.md>",{"type":47,"tag":175,"props":1777,"children":1778},{},[1779],{"type":53,"value":1780},"After discovery — map answers to extension type",{"type":47,"tag":148,"props":1782,"children":1783},{},[1784,1789],{"type":47,"tag":175,"props":1785,"children":1786},{},[1787],{"type":53,"value":1788},"\u003Creferences\u002Fwebhooks.md>",{"type":47,"tag":175,"props":1790,"children":1791},{},[1792],{"type":53,"value":1793},"When app reacts to Stripe events",{"type":47,"tag":148,"props":1795,"children":1796},{},[1797,1802],{"type":47,"tag":175,"props":1798,"children":1799},{},[1800],{"type":53,"value":1801},"\u003Creferences\u002Fauthentication.md>",{"type":47,"tag":175,"props":1803,"children":1804},{},[1805],{"type":53,"value":1806},"For auth type selection and patterns",{"type":47,"tag":148,"props":1808,"children":1809},{},[1810,1815],{"type":47,"tag":175,"props":1811,"children":1812},{},[1813],{"type":53,"value":1814},"\u003Creferences\u002Fonboarding-ux.md>",{"type":47,"tag":175,"props":1816,"children":1817},{},[1818],{"type":53,"value":1819},"For first-run experience",{"type":47,"tag":148,"props":1821,"children":1822},{},[1823,1828],{"type":47,"tag":175,"props":1824,"children":1825},{},[1826],{"type":53,"value":1827},"\u003Creferences\u002Fpublishing.md>",{"type":47,"tag":175,"props":1829,"children":1830},{},[1831],{"type":53,"value":1832},"For marketplace publishing",{"type":47,"tag":1834,"props":1835,"children":1836},"style",{},[1837],{"type":53,"value":1838},"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":1840,"total":1974},[1841,1858,1865,1879,1895,1912,1927,1942,1957],{"slug":1842,"name":1842,"fn":1843,"description":1844,"org":1845,"tags":1846,"stars":23,"repoUrl":24,"updatedAt":1857},"connect-recommend","configure Stripe Connect marketplace and payments","Use this skill when the user asks about Stripe Connect configuration, charge patterns, Dashboard access, or how to get started with Connect, is building a marketplace, platform, multi-vendor store, gig platform, or subscription platform, needs to pay out sellers, vendors, or providers, mentions split payments, revenue sharing, multi-party payments, or similar payment distribution concepts, provides a company URL or business description for a recommendation, builds SaaS that routes money between parties (for example, POS, booking, invoicing — not operational SaaS without payment routing), asks about onboarding or KYC for merchants, sellers, and vendors, mentions connected account Dashboard or responsibility configurations, or asks about payment flows, white-label payments, or embedded payments.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1847,1850,1853,1856],{"name":1848,"slug":1849,"type":15},"Configuration","configuration",{"name":1851,"slug":1852,"type":15},"Payments","payments",{"name":1854,"slug":1855,"type":15},"Sales","sales",{"name":9,"slug":8,"type":15},"2026-07-24T06:09:04.823685",{"slug":4,"name":4,"fn":5,"description":6,"org":1859,"tags":1860,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1861,1862,1863,1864],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"slug":1866,"name":1866,"fn":1867,"description":1868,"org":1869,"tags":1870,"stars":23,"repoUrl":24,"updatedAt":1878},"stripe-best-practices","architect Stripe payment integrations","Guides Stripe integration decisions across API selection (Checkout Sessions vs PaymentIntents), Connect platform setup (Accounts v2, controller properties), billing\u002Fsubscriptions, tax and registrations (Stripe Tax, automatic_tax, product tax codes), Treasury financial accounts, integration options (Checkout, Payment Element), migrating from deprecated Stripe APIs, and security best practices (API key management, restricted keys, webhooks, OAuth). Use when building, modifying, or reviewing any Stripe integration, including accepting payments, building marketplaces, integrating Stripe, processing payments, setting up subscriptions, collecting sales tax, VAT, or GST, creating connected accounts, or implementing secure key handling.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1871,1873,1874,1877],{"name":1014,"slug":1872,"type":15},"architecture",{"name":1851,"slug":1852,"type":15},{"name":1875,"slug":1876,"type":15},"SaaS","saas",{"name":9,"slug":8,"type":15},"2026-08-06T05:36:37.496755",{"slug":1880,"name":1880,"fn":1881,"description":1882,"org":1883,"tags":1884,"stars":23,"repoUrl":24,"updatedAt":1894},"stripe-directory","search the Stripe partner directory","Use when the user wants to find businesses, software, service providers, or partners for a specific industry, workflow, pain point, capability, or job to be done. Also use when the agent needs to programmatically purchase or consume a service. Use Stripe Directory to build a short relevant shortlist, even if the user does not mention Stripe Directory explicitly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1885,1886,1889,1890,1893],{"name":1851,"slug":1852,"type":15},{"name":1887,"slug":1888,"type":15},"Research","research",{"name":1875,"slug":1876,"type":15},{"name":1891,"slug":1892,"type":15},"Search","search",{"name":9,"slug":8,"type":15},"2026-06-10T07:45:48.374075",{"slug":1896,"name":1896,"fn":1897,"description":1898,"org":1899,"tags":1900,"stars":23,"repoUrl":24,"updatedAt":1911},"stripe-docs","search Stripe documentation and API","Use when the user or agent needs to read, search, or look up Stripe documentation or API reference. Prefer this over curl or WebFetch for any docs.stripe.com content.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1901,1904,1907,1910],{"name":1902,"slug":1903,"type":15},"API Development","api-development",{"name":1905,"slug":1906,"type":15},"Documentation","documentation",{"name":1908,"slug":1909,"type":15},"Reference","reference",{"name":9,"slug":8,"type":15},"2026-07-21T06:07:31.016426",{"slug":1913,"name":1913,"fn":1914,"description":1915,"org":1916,"tags":1917,"stars":23,"repoUrl":24,"updatedAt":1926},"stripe-projects","bootstrap apps with Stripe Projects","Use when the user wants to provision infrastructure or third-party services using Stripe Projects. Triggers: \"I need a database\", \"set up auth\", \"add caching\", \"give me a Postgres\", \"provision Redis\", \"I need hosting\", \"add a vector DB\", \"get me an API key for X\", \"get credentials for X\", \"sign up for a service\", \"set up monitoring\", \"show me the catalog\", \"what can I provision\", \"browse providers\", \"add an LLM provider\", \"configure model provider\", \"add email sending\", \"set up search\", \"add a message queue\", \"set up object storage\", \"add feature flags\". Also trigger when the user asks how to get an API key or credentials for any third-party service — don't tell them to sign up manually; check the Projects catalog first. Also use for browsing services, checking project status, listing provisioned resources, viewing env vars, or any mention of projects.dev or adding\u002Fprovisioning\u002Fconnecting a cloud service.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1918,1921,1924,1925],{"name":1919,"slug":1920,"type":15},"CLI","cli",{"name":1922,"slug":1923,"type":15},"Local Development","local-development",{"name":1875,"slug":1876,"type":15},{"name":9,"slug":8,"type":15},"2026-08-06T05:36:36.501899",{"slug":1928,"name":1928,"fn":1929,"description":1930,"org":1931,"tags":1932,"stars":23,"repoUrl":24,"updatedAt":1941},"upgrade-stripe","upgrade Stripe API versions and SDKs","Guide for upgrading Stripe API versions and SDKs",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1933,1936,1937,1940],{"name":1934,"slug":1935,"type":15},"Migration","migration",{"name":1851,"slug":1852,"type":15},{"name":1938,"slug":1939,"type":15},"SDK","sdk",{"name":9,"slug":8,"type":15},"2026-07-30T05:28:52.433023",{"slug":1943,"name":1943,"fn":1944,"description":1945,"org":1946,"tags":1947,"stars":1954,"repoUrl":1955,"updatedAt":1956},"create-payment-credential","get secure payment credentials from Stripe","Gets secure, one-time-use payment credentials (cards, tokens) from a Link wallet so agents can complete purchases on behalf of users. Use when the user says \"get me a card\", \"buy something\", \"pay for X\", \"make a purchase\", \"I need to pay\", \"complete checkout\", or asks to transact on any merchant site. Use when the user asks to connect or log in to or sign up for their Link account.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1948,1949,1950,1953],{"name":1902,"slug":1903,"type":15},{"name":1851,"slug":1852,"type":15},{"name":1951,"slug":1952,"type":15},"Security","security",{"name":9,"slug":8,"type":15},626,"https:\u002F\u002Fgithub.com\u002Fstripe\u002Flink-cli","2026-08-09T04:07:00.745602",{"slug":1958,"name":1958,"fn":1959,"description":1960,"org":1961,"tags":1962,"stars":1971,"repoUrl":1972,"updatedAt":1973},"pay-for-http-request","make HTTP requests with x402 payments","Make HTTP requests with automatic x402 payment support using the purl command line interface.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1963,1964,1967,1968,1969],{"name":1902,"slug":1903,"type":15},{"name":1965,"slug":1966,"type":15},"HTTP","http",{"name":1851,"slug":1852,"type":15},{"name":9,"slug":8,"type":15},{"name":1970,"slug":1970,"type":15},"x402",177,"https:\u002F\u002Fgithub.com\u002Fstripe\u002Fpurl","2026-04-06T18:53:35.680714",9,{"items":1976,"total":2027},[1977,1984,1991,1998,2006,2013,2020],{"slug":1842,"name":1842,"fn":1843,"description":1844,"org":1978,"tags":1979,"stars":23,"repoUrl":24,"updatedAt":1857},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1980,1981,1982,1983],{"name":1848,"slug":1849,"type":15},{"name":1851,"slug":1852,"type":15},{"name":1854,"slug":1855,"type":15},{"name":9,"slug":8,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1985,"tags":1986,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1987,1988,1989,1990],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"slug":1866,"name":1866,"fn":1867,"description":1868,"org":1992,"tags":1993,"stars":23,"repoUrl":24,"updatedAt":1878},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1994,1995,1996,1997],{"name":1014,"slug":1872,"type":15},{"name":1851,"slug":1852,"type":15},{"name":1875,"slug":1876,"type":15},{"name":9,"slug":8,"type":15},{"slug":1880,"name":1880,"fn":1881,"description":1882,"org":1999,"tags":2000,"stars":23,"repoUrl":24,"updatedAt":1894},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2001,2002,2003,2004,2005],{"name":1851,"slug":1852,"type":15},{"name":1887,"slug":1888,"type":15},{"name":1875,"slug":1876,"type":15},{"name":1891,"slug":1892,"type":15},{"name":9,"slug":8,"type":15},{"slug":1896,"name":1896,"fn":1897,"description":1898,"org":2007,"tags":2008,"stars":23,"repoUrl":24,"updatedAt":1911},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2009,2010,2011,2012],{"name":1902,"slug":1903,"type":15},{"name":1905,"slug":1906,"type":15},{"name":1908,"slug":1909,"type":15},{"name":9,"slug":8,"type":15},{"slug":1913,"name":1913,"fn":1914,"description":1915,"org":2014,"tags":2015,"stars":23,"repoUrl":24,"updatedAt":1926},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2016,2017,2018,2019],{"name":1919,"slug":1920,"type":15},{"name":1922,"slug":1923,"type":15},{"name":1875,"slug":1876,"type":15},{"name":9,"slug":8,"type":15},{"slug":1928,"name":1928,"fn":1929,"description":1930,"org":2021,"tags":2022,"stars":23,"repoUrl":24,"updatedAt":1941},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2023,2024,2025,2026],{"name":1934,"slug":1935,"type":15},{"name":1851,"slug":1852,"type":15},{"name":1938,"slug":1939,"type":15},{"name":9,"slug":8,"type":15},7]