[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-figma-swiftui":3,"mdc--mpynd6-key":39,"related-repo-openai-figma-swiftui":554,"related-org-openai-figma-swiftui":674},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"figma-swiftui","translate Figma designs to SwiftUI code","SwiftUI ↔ Figma translation. Use whenever the user mentions Swift, SwiftUI, iOS, iPhone, or iPad — in EITHER direction — translating a Figma design into SwiftUI (design → code), or pushing SwiftUI views \u002F screens \u002F tokens back into a Figma file (code → design). Triggers on phrases like 'implement this Figma design in SwiftUI', 'build this screen in Swift', 'push this SwiftUI view to Figma', 'mirror my Swift code in a Figma file', or whenever a Figma URL appears alongside `.swift` files \u002F an `.xcodeproj`. Routes to a direction-specific reference doc; loads alongside `figma-use` for the code → design path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"SwiftUI","swiftui","tag",{"name":17,"slug":18,"type":15},"iOS","ios",{"name":20,"slug":21,"type":15},"Frontend","frontend",{"name":23,"slug":24,"type":15},"Figma","figma",{"name":26,"slug":27,"type":15},"Design","design",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-25T07:26:12.777286",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Ffigma\u002Fskills\u002Ffigma-swiftui","---\nname: figma-swiftui\ndescription: \"SwiftUI ↔ Figma translation. Use whenever the user mentions Swift, SwiftUI, iOS, iPhone, or iPad — in EITHER direction — translating a Figma design into SwiftUI (design → code), or pushing SwiftUI views \u002F screens \u002F tokens back into a Figma file (code → design). Triggers on phrases like 'implement this Figma design in SwiftUI', 'build this screen in Swift', 'push this SwiftUI view to Figma', 'mirror my Swift code in a Figma file', or whenever a Figma URL appears alongside `.swift` files \u002F an `.xcodeproj`. Routes to a direction-specific reference doc; loads alongside `figma-use` for the code → design path.\"\ndisable-model-invocation: false\n---\n\n# Figma ↔ SwiftUI\n\nTranslation between Figma designs and SwiftUI code, both directions. This file is a router — actual guidance lives in the references below.\n\n## Pick the direction\n\n| Direction | Trigger | Reference |\n|---|---|---|\n| **Design → code** | User wants SwiftUI in their iOS project from a Figma file\u002Fframe | [references\u002Fdesign-to-code.md](references\u002Fdesign-to-code.md) |\n| **Code → design** | User wants to push SwiftUI views \u002F screens \u002F tokens into a Figma file | [references\u002Fcode-to-design.md](references\u002Fcode-to-design.md) |\n\nIf the request is ambiguous — a Figma URL and `.swift` files both present, no verb makes it clear — ask the user which direction before loading a reference.\n\n## Shared context (applies to both directions)\n\nThese points hold regardless of direction; the direction-specific references assume them.\n\n1. **`get_design_context` is the read tool for Figma.** Pass `clientLanguages: \"swift\"` and `clientFrameworks: \"swiftui\"` so the response is framed as Swift. URL → tool args: `figma.com\u002Fdesign\u002F:fileKey\u002F:fileName?node-id=:nodeId` → use `fileKey`, replace `-` with `:` in `nodeId`. For `figma.com\u002Fdesign\u002F:fileKey\u002Fbranch\u002F:branchKey\u002F:fileName`, use `branchKey` as `fileKey`.\n2. **The React+Tailwind in `get_design_context` output is a structural reference, not a literal source.** It approximates the visual. Never transliterate `position: absolute` \u002F pixel frames \u002F `mix-blend-mode` stacks into SwiftUI or into Figma — the screenshot is the source of truth in both directions.\n3. **iOS HIG semantic colors are tokens, not hex.** `var(--backgrounds\u002Fprimary, …)`, `var(--labels\u002Fsecondary, …)`, `var(--separators\u002Fnon-opaque, …)` etc. map to `Color(.systemBackground)`, `Color.secondary`, `Color(.separator)` in SwiftUI, and to variables in a semantic collection in Figma. Keep the mapping; drop the literal RGBA.\n4. **SF Symbols round-trip by name in both directions — never by codepoint.** Design → code: `get_design_context` substitutes Figma's SF Symbol glyph runs back into `\u003CSFSymbol>{Image(systemName: \"...\")}\u003C\u002FSFSymbol>` wrappers in the response. Use those names verbatim. Code → design: call `figma.util.getSfSymbolCharacter(name)` inside `use_figma` to convert a symbol name to the matching character — never look up codepoints by hand.\n5. **Recognize the underlying iOS pattern, not the literal node \u002F view name.** The same patterns recur in both directions: large title + back chevron + trailing action = `NavigationStack` chrome; bottom row of icon+label pairs = `TabView`; repeating same-height rows with leading\u002Ftrailing chrome = `List`. Match those system patterns rather than rebuilding them from primitives.\n6. **For code → design, `use_figma` is the API.** Always load [`figma-use`](..\u002Ffigma-use\u002FSKILL.md) before any `use_figma` call. If the task involves building a full screen, also load [`figma-generate-design`](..\u002Ffigma-generate-design\u002FSKILL.md); if it involves building components or a design system, also load [`figma-generate-library`](..\u002Ffigma-generate-library\u002FSKILL.md).\n\n## References\n\n| Doc | When to load |\n|---|---|\n| [references\u002Fdesign-to-code.md](references\u002Fdesign-to-code.md) | Translating a Figma design \u002F frame into SwiftUI |\n| [references\u002Fcode-to-design.md](references\u002Fcode-to-design.md) | Pushing SwiftUI views \u002F screens \u002F tokens into Figma |\n",{"data":40,"body":42},{"name":4,"description":6,"disable-model-invocation":41},false,{"type":43,"children":44},"root",[45,53,59,66,149,163,169,174,496,502],{"type":46,"tag":47,"props":48,"children":49},"element","h1",{"id":4},[50],{"type":51,"value":52},"text","Figma ↔ SwiftUI",{"type":46,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Translation between Figma designs and SwiftUI code, both directions. This file is a router — actual guidance lives in the references below.",{"type":46,"tag":60,"props":61,"children":63},"h2",{"id":62},"pick-the-direction",[64],{"type":51,"value":65},"Pick the direction",{"type":46,"tag":67,"props":68,"children":69},"table",{},[70,94],{"type":46,"tag":71,"props":72,"children":73},"thead",{},[74],{"type":46,"tag":75,"props":76,"children":77},"tr",{},[78,84,89],{"type":46,"tag":79,"props":80,"children":81},"th",{},[82],{"type":51,"value":83},"Direction",{"type":46,"tag":79,"props":85,"children":86},{},[87],{"type":51,"value":88},"Trigger",{"type":46,"tag":79,"props":90,"children":91},{},[92],{"type":51,"value":93},"Reference",{"type":46,"tag":95,"props":96,"children":97},"tbody",{},[98,125],{"type":46,"tag":75,"props":99,"children":100},{},[101,111,116],{"type":46,"tag":102,"props":103,"children":104},"td",{},[105],{"type":46,"tag":106,"props":107,"children":108},"strong",{},[109],{"type":51,"value":110},"Design → code",{"type":46,"tag":102,"props":112,"children":113},{},[114],{"type":51,"value":115},"User wants SwiftUI in their iOS project from a Figma file\u002Fframe",{"type":46,"tag":102,"props":117,"children":118},{},[119],{"type":46,"tag":120,"props":121,"children":123},"a",{"href":122},"references\u002Fdesign-to-code.md",[124],{"type":51,"value":122},{"type":46,"tag":75,"props":126,"children":127},{},[128,136,141],{"type":46,"tag":102,"props":129,"children":130},{},[131],{"type":46,"tag":106,"props":132,"children":133},{},[134],{"type":51,"value":135},"Code → design",{"type":46,"tag":102,"props":137,"children":138},{},[139],{"type":51,"value":140},"User wants to push SwiftUI views \u002F screens \u002F tokens into a Figma file",{"type":46,"tag":102,"props":142,"children":143},{},[144],{"type":46,"tag":120,"props":145,"children":147},{"href":146},"references\u002Fcode-to-design.md",[148],{"type":51,"value":146},{"type":46,"tag":54,"props":150,"children":151},{},[152,154,161],{"type":51,"value":153},"If the request is ambiguous — a Figma URL and ",{"type":46,"tag":155,"props":156,"children":158},"code",{"className":157},[],[159],{"type":51,"value":160},".swift",{"type":51,"value":162}," files both present, no verb makes it clear — ask the user which direction before loading a reference.",{"type":46,"tag":60,"props":164,"children":166},{"id":165},"shared-context-applies-to-both-directions",[167],{"type":51,"value":168},"Shared context (applies to both directions)",{"type":46,"tag":54,"props":170,"children":171},{},[172],{"type":51,"value":173},"These points hold regardless of direction; the direction-specific references assume them.",{"type":46,"tag":175,"props":176,"children":177},"ol",{},[178,274,307,362,403,437],{"type":46,"tag":179,"props":180,"children":181},"li",{},[182,193,195,201,203,209,211,217,219,225,227,233,235,241,243,249,251,257,259,265,267,272],{"type":46,"tag":106,"props":183,"children":184},{},[185,191],{"type":46,"tag":155,"props":186,"children":188},{"className":187},[],[189],{"type":51,"value":190},"get_design_context",{"type":51,"value":192}," is the read tool for Figma.",{"type":51,"value":194}," Pass ",{"type":46,"tag":155,"props":196,"children":198},{"className":197},[],[199],{"type":51,"value":200},"clientLanguages: \"swift\"",{"type":51,"value":202}," and ",{"type":46,"tag":155,"props":204,"children":206},{"className":205},[],[207],{"type":51,"value":208},"clientFrameworks: \"swiftui\"",{"type":51,"value":210}," so the response is framed as Swift. URL → tool args: ",{"type":46,"tag":155,"props":212,"children":214},{"className":213},[],[215],{"type":51,"value":216},"figma.com\u002Fdesign\u002F:fileKey\u002F:fileName?node-id=:nodeId",{"type":51,"value":218}," → use ",{"type":46,"tag":155,"props":220,"children":222},{"className":221},[],[223],{"type":51,"value":224},"fileKey",{"type":51,"value":226},", replace ",{"type":46,"tag":155,"props":228,"children":230},{"className":229},[],[231],{"type":51,"value":232},"-",{"type":51,"value":234}," with ",{"type":46,"tag":155,"props":236,"children":238},{"className":237},[],[239],{"type":51,"value":240},":",{"type":51,"value":242}," in ",{"type":46,"tag":155,"props":244,"children":246},{"className":245},[],[247],{"type":51,"value":248},"nodeId",{"type":51,"value":250},". For ",{"type":46,"tag":155,"props":252,"children":254},{"className":253},[],[255],{"type":51,"value":256},"figma.com\u002Fdesign\u002F:fileKey\u002Fbranch\u002F:branchKey\u002F:fileName",{"type":51,"value":258},", use ",{"type":46,"tag":155,"props":260,"children":262},{"className":261},[],[263],{"type":51,"value":264},"branchKey",{"type":51,"value":266}," as ",{"type":46,"tag":155,"props":268,"children":270},{"className":269},[],[271],{"type":51,"value":224},{"type":51,"value":273},".",{"type":46,"tag":179,"props":275,"children":276},{},[277,289,291,297,299,305],{"type":46,"tag":106,"props":278,"children":279},{},[280,282,287],{"type":51,"value":281},"The React+Tailwind in ",{"type":46,"tag":155,"props":283,"children":285},{"className":284},[],[286],{"type":51,"value":190},{"type":51,"value":288}," output is a structural reference, not a literal source.",{"type":51,"value":290}," It approximates the visual. Never transliterate ",{"type":46,"tag":155,"props":292,"children":294},{"className":293},[],[295],{"type":51,"value":296},"position: absolute",{"type":51,"value":298}," \u002F pixel frames \u002F ",{"type":46,"tag":155,"props":300,"children":302},{"className":301},[],[303],{"type":51,"value":304},"mix-blend-mode",{"type":51,"value":306}," stacks into SwiftUI or into Figma — the screenshot is the source of truth in both directions.",{"type":46,"tag":179,"props":308,"children":309},{},[310,315,317,323,325,331,332,338,340,346,347,353,354,360],{"type":46,"tag":106,"props":311,"children":312},{},[313],{"type":51,"value":314},"iOS HIG semantic colors are tokens, not hex.",{"type":51,"value":316}," ",{"type":46,"tag":155,"props":318,"children":320},{"className":319},[],[321],{"type":51,"value":322},"var(--backgrounds\u002Fprimary, …)",{"type":51,"value":324},", ",{"type":46,"tag":155,"props":326,"children":328},{"className":327},[],[329],{"type":51,"value":330},"var(--labels\u002Fsecondary, …)",{"type":51,"value":324},{"type":46,"tag":155,"props":333,"children":335},{"className":334},[],[336],{"type":51,"value":337},"var(--separators\u002Fnon-opaque, …)",{"type":51,"value":339}," etc. map to ",{"type":46,"tag":155,"props":341,"children":343},{"className":342},[],[344],{"type":51,"value":345},"Color(.systemBackground)",{"type":51,"value":324},{"type":46,"tag":155,"props":348,"children":350},{"className":349},[],[351],{"type":51,"value":352},"Color.secondary",{"type":51,"value":324},{"type":46,"tag":155,"props":355,"children":357},{"className":356},[],[358],{"type":51,"value":359},"Color(.separator)",{"type":51,"value":361}," in SwiftUI, and to variables in a semantic collection in Figma. Keep the mapping; drop the literal RGBA.",{"type":46,"tag":179,"props":363,"children":364},{},[365,370,372,377,379,385,387,393,395,401],{"type":46,"tag":106,"props":366,"children":367},{},[368],{"type":51,"value":369},"SF Symbols round-trip by name in both directions — never by codepoint.",{"type":51,"value":371}," Design → code: ",{"type":46,"tag":155,"props":373,"children":375},{"className":374},[],[376],{"type":51,"value":190},{"type":51,"value":378}," substitutes Figma's SF Symbol glyph runs back into ",{"type":46,"tag":155,"props":380,"children":382},{"className":381},[],[383],{"type":51,"value":384},"\u003CSFSymbol>{Image(systemName: \"...\")}\u003C\u002FSFSymbol>",{"type":51,"value":386}," wrappers in the response. Use those names verbatim. Code → design: call ",{"type":46,"tag":155,"props":388,"children":390},{"className":389},[],[391],{"type":51,"value":392},"figma.util.getSfSymbolCharacter(name)",{"type":51,"value":394}," inside ",{"type":46,"tag":155,"props":396,"children":398},{"className":397},[],[399],{"type":51,"value":400},"use_figma",{"type":51,"value":402}," to convert a symbol name to the matching character — never look up codepoints by hand.",{"type":46,"tag":179,"props":404,"children":405},{},[406,411,413,419,421,427,429,435],{"type":46,"tag":106,"props":407,"children":408},{},[409],{"type":51,"value":410},"Recognize the underlying iOS pattern, not the literal node \u002F view name.",{"type":51,"value":412}," The same patterns recur in both directions: large title + back chevron + trailing action = ",{"type":46,"tag":155,"props":414,"children":416},{"className":415},[],[417],{"type":51,"value":418},"NavigationStack",{"type":51,"value":420}," chrome; bottom row of icon+label pairs = ",{"type":46,"tag":155,"props":422,"children":424},{"className":423},[],[425],{"type":51,"value":426},"TabView",{"type":51,"value":428},"; repeating same-height rows with leading\u002Ftrailing chrome = ",{"type":46,"tag":155,"props":430,"children":432},{"className":431},[],[433],{"type":51,"value":434},"List",{"type":51,"value":436},". Match those system patterns rather than rebuilding them from primitives.",{"type":46,"tag":179,"props":438,"children":439},{},[440,452,454,464,466,471,473,483,485,495],{"type":46,"tag":106,"props":441,"children":442},{},[443,445,450],{"type":51,"value":444},"For code → design, ",{"type":46,"tag":155,"props":446,"children":448},{"className":447},[],[449],{"type":51,"value":400},{"type":51,"value":451}," is the API.",{"type":51,"value":453}," Always load ",{"type":46,"tag":120,"props":455,"children":457},{"href":456},"..\u002Ffigma-use\u002FSKILL.md",[458],{"type":46,"tag":155,"props":459,"children":461},{"className":460},[],[462],{"type":51,"value":463},"figma-use",{"type":51,"value":465}," before any ",{"type":46,"tag":155,"props":467,"children":469},{"className":468},[],[470],{"type":51,"value":400},{"type":51,"value":472}," call. If the task involves building a full screen, also load ",{"type":46,"tag":120,"props":474,"children":476},{"href":475},"..\u002Ffigma-generate-design\u002FSKILL.md",[477],{"type":46,"tag":155,"props":478,"children":480},{"className":479},[],[481],{"type":51,"value":482},"figma-generate-design",{"type":51,"value":484},"; if it involves building components or a design system, also load ",{"type":46,"tag":120,"props":486,"children":488},{"href":487},"..\u002Ffigma-generate-library\u002FSKILL.md",[489],{"type":46,"tag":155,"props":490,"children":492},{"className":491},[],[493],{"type":51,"value":494},"figma-generate-library",{"type":51,"value":273},{"type":46,"tag":60,"props":497,"children":499},{"id":498},"references",[500],{"type":51,"value":501},"References",{"type":46,"tag":67,"props":503,"children":504},{},[505,521],{"type":46,"tag":71,"props":506,"children":507},{},[508],{"type":46,"tag":75,"props":509,"children":510},{},[511,516],{"type":46,"tag":79,"props":512,"children":513},{},[514],{"type":51,"value":515},"Doc",{"type":46,"tag":79,"props":517,"children":518},{},[519],{"type":51,"value":520},"When to load",{"type":46,"tag":95,"props":522,"children":523},{},[524,539],{"type":46,"tag":75,"props":525,"children":526},{},[527,534],{"type":46,"tag":102,"props":528,"children":529},{},[530],{"type":46,"tag":120,"props":531,"children":532},{"href":122},[533],{"type":51,"value":122},{"type":46,"tag":102,"props":535,"children":536},{},[537],{"type":51,"value":538},"Translating a Figma design \u002F frame into SwiftUI",{"type":46,"tag":75,"props":540,"children":541},{},[542,549],{"type":46,"tag":102,"props":543,"children":544},{},[545],{"type":46,"tag":120,"props":546,"children":547},{"href":146},[548],{"type":51,"value":146},{"type":46,"tag":102,"props":550,"children":551},{},[552],{"type":51,"value":553},"Pushing SwiftUI views \u002F screens \u002F tokens into Figma",{"items":555,"total":673},[556,573,589,601,621,641,661],{"slug":557,"name":557,"fn":558,"description":559,"org":560,"tags":561,"stars":28,"repoUrl":29,"updatedAt":572},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[562,565,568,571],{"name":563,"slug":564,"type":15},"Accessibility","accessibility",{"name":566,"slug":567,"type":15},"Charts","charts",{"name":569,"slug":570,"type":15},"Data Visualization","data-visualization",{"name":26,"slug":27,"type":15},"2026-06-30T19:00:57.102",{"slug":574,"name":574,"fn":575,"description":576,"org":577,"tags":578,"stars":28,"repoUrl":29,"updatedAt":588},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[579,582,585],{"name":580,"slug":581,"type":15},"Agents","agents",{"name":583,"slug":584,"type":15},"Browser Automation","browser-automation",{"name":586,"slug":587,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":590,"name":590,"fn":591,"description":592,"org":593,"tags":594,"stars":28,"repoUrl":29,"updatedAt":600},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[595,596,599],{"name":583,"slug":584,"type":15},{"name":597,"slug":598,"type":15},"Local Development","local-development",{"name":586,"slug":587,"type":15},"2026-04-06T18:41:17.526867",{"slug":602,"name":602,"fn":603,"description":604,"org":605,"tags":606,"stars":28,"repoUrl":29,"updatedAt":620},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[607,608,611,614,617],{"name":580,"slug":581,"type":15},{"name":609,"slug":610,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":612,"slug":613,"type":15},"SDK","sdk",{"name":615,"slug":616,"type":15},"Serverless","serverless",{"name":618,"slug":619,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":622,"name":622,"fn":623,"description":624,"org":625,"tags":626,"stars":28,"repoUrl":29,"updatedAt":640},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[627,628,631,634,637],{"name":20,"slug":21,"type":15},{"name":629,"slug":630,"type":15},"React","react",{"name":632,"slug":633,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":635,"slug":636,"type":15},"UI Components","ui-components",{"name":638,"slug":639,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":642,"name":642,"fn":643,"description":644,"org":645,"tags":646,"stars":28,"repoUrl":29,"updatedAt":660},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[647,650,653,656,659],{"name":648,"slug":649,"type":15},"AI Infrastructure","ai-infrastructure",{"name":651,"slug":652,"type":15},"Cost Optimization","cost-optimization",{"name":654,"slug":655,"type":15},"LLM","llm",{"name":657,"slug":658,"type":15},"Performance","performance",{"name":638,"slug":639,"type":15},"2026-04-06T18:40:44.377464",{"slug":662,"name":662,"fn":663,"description":664,"org":665,"tags":666,"stars":28,"repoUrl":29,"updatedAt":672},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[667,668,671],{"name":651,"slug":652,"type":15},{"name":669,"slug":670,"type":15},"Database","database",{"name":654,"slug":655,"type":15},"2026-04-06T18:41:08.513425",600,{"items":675,"total":870},[676,697,720,737,753,770,789,799,813,827,839,854],{"slug":677,"name":677,"fn":678,"description":679,"org":680,"tags":681,"stars":694,"repoUrl":695,"updatedAt":696},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[682,685,688,691],{"name":683,"slug":684,"type":15},"Documents","documents",{"name":686,"slug":687,"type":15},"Healthcare","healthcare",{"name":689,"slug":690,"type":15},"Insurance","insurance",{"name":692,"slug":693,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":698,"name":698,"fn":699,"description":700,"org":701,"tags":702,"stars":717,"repoUrl":718,"updatedAt":719},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[703,706,708,711,714],{"name":704,"slug":705,"type":15},".NET","dotnet",{"name":707,"slug":698,"type":15},"ASP.NET Core",{"name":709,"slug":710,"type":15},"Blazor","blazor",{"name":712,"slug":713,"type":15},"C#","csharp",{"name":715,"slug":716,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":721,"name":721,"fn":722,"description":723,"org":724,"tags":725,"stars":717,"repoUrl":718,"updatedAt":736},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[726,729,732,735],{"name":727,"slug":728,"type":15},"Apps SDK","apps-sdk",{"name":730,"slug":731,"type":15},"ChatGPT","chatgpt",{"name":733,"slug":734,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":738,"name":738,"fn":739,"description":740,"org":741,"tags":742,"stars":717,"repoUrl":718,"updatedAt":752},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[743,746,749],{"name":744,"slug":745,"type":15},"API Development","api-development",{"name":747,"slug":748,"type":15},"CLI","cli",{"name":750,"slug":751,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":754,"name":754,"fn":755,"description":756,"org":757,"tags":758,"stars":717,"repoUrl":718,"updatedAt":769},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[759,762,765,766],{"name":760,"slug":761,"type":15},"Cloudflare","cloudflare",{"name":763,"slug":764,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":609,"slug":610,"type":15},{"name":767,"slug":768,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":771,"name":771,"fn":772,"description":773,"org":774,"tags":775,"stars":717,"repoUrl":718,"updatedAt":788},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[776,779,782,785],{"name":777,"slug":778,"type":15},"Productivity","productivity",{"name":780,"slug":781,"type":15},"Project Management","project-management",{"name":783,"slug":784,"type":15},"Strategy","strategy",{"name":786,"slug":787,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":24,"name":24,"fn":790,"description":791,"org":792,"tags":793,"stars":717,"repoUrl":718,"updatedAt":798},"translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[794,795,796,797],{"name":26,"slug":27,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":733,"slug":734,"type":15},"2026-04-12T05:06:47.939943",{"slug":800,"name":800,"fn":801,"description":802,"org":803,"tags":804,"stars":717,"repoUrl":718,"updatedAt":812},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[805,806,809,810,811],{"name":26,"slug":27,"type":15},{"name":807,"slug":808,"type":15},"Design System","design-system",{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":635,"slug":636,"type":15},"2026-05-10T05:59:52.971881",{"slug":814,"name":814,"fn":815,"description":816,"org":817,"tags":818,"stars":717,"repoUrl":718,"updatedAt":826},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[819,820,821,824,825],{"name":26,"slug":27,"type":15},{"name":807,"slug":808,"type":15},{"name":822,"slug":823,"type":15},"Documentation","documentation",{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},"2026-05-16T06:07:47.821474",{"slug":828,"name":828,"fn":829,"description":830,"org":831,"tags":832,"stars":717,"repoUrl":718,"updatedAt":838},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[833,834,835,836,837],{"name":26,"slug":27,"type":15},{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":635,"slug":636,"type":15},{"name":715,"slug":716,"type":15},"2026-05-16T06:07:40.583615",{"slug":840,"name":840,"fn":841,"description":842,"org":843,"tags":844,"stars":717,"repoUrl":718,"updatedAt":853},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[845,848,849,852],{"name":846,"slug":847,"type":15},"Animation","animation",{"name":750,"slug":751,"type":15},{"name":850,"slug":851,"type":15},"Creative","creative",{"name":26,"slug":27,"type":15},"2026-05-02T05:31:48.48485",{"slug":855,"name":855,"fn":856,"description":857,"org":858,"tags":859,"stars":717,"repoUrl":718,"updatedAt":869},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[860,861,862,865,868],{"name":850,"slug":851,"type":15},{"name":26,"slug":27,"type":15},{"name":863,"slug":864,"type":15},"Image Generation","image-generation",{"name":866,"slug":867,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]