[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-build-run-debug":3,"mdc--v3sbrt-key":36,"related-org-openai-build-run-debug":1095,"related-repo-openai-build-run-debug":1302},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"build-run-debug","build and debug local macOS apps","Build, run, and debug macOS apps with shell-first Xcode and Swift workflows. Use when launching apps or diagnosing build, startup, or runtime failures.",{"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],{"name":13,"slug":14,"type":15},"macOS","macos","tag",{"name":17,"slug":18,"type":15},"Local Development","local-development",{"name":20,"slug":21,"type":15},"Desktop","desktop",{"name":23,"slug":24,"type":15},"Debugging","debugging",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-08T20:37:36.794107",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fbuild-macos-apps\u002Fskills\u002Fbuild-run-debug","---\nname: build-run-debug\ndescription: Build, run, and debug macOS apps with shell-first Xcode and Swift workflows. Use when launching apps or diagnosing build, startup, or runtime failures.\n---\n\n# Build \u002F Run \u002F Debug\n\n## Quick Start\n\nUse this skill to set up one project-local `script\u002Fbuild_and_run.sh` entrypoint,\nwire `.codex\u002Fenvironments\u002Fenvironment.toml` so the Codex app shows a Run button,\nthen use that script as the default build\u002Frun path.\n\nPrefer shell-first workflows:\n\n- `.\u002Fscript\u002Fbuild_and_run.sh` as the single kill + build + run entrypoint once it exists\n- `xcodebuild` for Xcode workspaces or projects\n- `swift build` plus raw executable launch inside that script for true SwiftPM command-line tools\n- `swift build` plus project-local `.app` bundle staging and `\u002Fusr\u002Fbin\u002Fopen -n` launch for SwiftPM AppKit\u002FSwiftUI GUI apps\n- optional script flags for `lldb`, `log stream`, telemetry verification, or post-launch process checks\n\nDo not assume simulators, touch interaction, or mobile-specific tooling.\n\nIf an Xcode-aware MCP surface is already available and the user explicitly wants\nit, use it only where it fits. Keep that usage narrow and honest: prefer it for\nXcode-oriented discovery, logging, or debugging support, and do not force\nsimulator-specific workflows onto pure macOS tasks.\n\n## Workflow\n\n1. Discover the project shape.\n   - Check whether the workspace is already inside a git repo with `git rev-parse --is-inside-work-tree`.\n   - If no git repo is present, run `git init` at the project\u002Fworkspace root before building so Codex app git-backed features are available. Never run `git init` inside a nested subdirectory when the current workspace already belongs to a parent repo.\n   - Look for `.xcworkspace`, `.xcodeproj`, and `Package.swift`.\n   - If more than one candidate exists, explain the default choice and the ambiguity.\n\n2. Resolve the runnable target and process name.\n   - For Xcode, list schemes and prefer the app-producing scheme unless the user names another one.\n   - For SwiftPM, identify executable products when possible.\n   - Split SwiftPM launch handling by product type:\n     - use raw executable launch only for true command-line tools,\n     - use a generated project-local `.app` bundle for AppKit\u002FSwiftUI GUI apps.\n   - Determine the app\u002Fprocess name to kill before relaunching.\n\n3. Create or update `script\u002Fbuild_and_run.sh`.\n   - Make the script project-specific and executable.\n   - It should always:\n     1. stop the existing running app\u002Fprocess if present,\n     2. build the macOS target,\n     3. launch the freshly built app or executable.\n   - Add optional flags for debugging\u002Flog inspection:\n     - `--debug` to launch under `lldb` or attach the debugger\n     - `--logs` to stream process logs after launch\n     - `--telemetry` to stream unified logs filtered to the app subsystem\u002Fcategory\n     - `--verify` to launch the app and confirm the process exists with `pgrep -x \u003CAppName>`\n   - Keep the default no-flag path simple: kill, build, run.\n   - Prefer writing one script that owns this workflow instead of repeatedly asking the agent to manually run `swift build`, locate the artifact, then invoke an ad hoc run command.\n   - For SwiftPM GUI apps, make the script build the product, create `dist\u002F\u003CAppName>.app`, copy the binary to `Contents\u002FMacOS\u002F\u003CAppName>`, generate a minimal `Contents\u002FInfo.plist` with `CFBundlePackageType=APPL`, `CFBundleExecutable`, `CFBundleIdentifier`, `CFBundleName`, `LSMinimumSystemVersion`, and `NSPrincipalClass=NSApplication`, then launch with `\u002Fusr\u002Fbin\u002Fopen -n \u003Cbundle>`.\n   - For SwiftPM GUI `--logs` and `--telemetry`, launch the bundle with `\u002Fusr\u002Fbin\u002Fopen -n` first, then stream unified logs with `\u002Fusr\u002Fbin\u002Flog stream --info ...`.\n   - Do not recommend direct SwiftPM executable launch for AppKit\u002FSwiftUI GUI apps.\n   - Use `references\u002Frun-button-bootstrap.md` as the canonical source for the\n     script shape and exact environment file format. Do not fork a second\n     authoritative snippet in another skill or command.\n   - Keep the run script outside app source. It belongs in `script\u002Fbuild_and_run.sh`, not in `App\u002F`, `Views\u002F`, `Models\u002F`, `Stores\u002F`, `Services\u002F`, or `Support\u002F`.\n\n4. Write `.codex\u002Fenvironments\u002Fenvironment.toml` at the project root once the script exists.\n   - Use this exact placement: `.codex\u002Fenvironments\u002Fenvironment.toml`.\n   - Use the exact action shape in `references\u002Frun-button-bootstrap.md`.\n   - This file is what gives the user a Codex app Run button wired to the script.\n   - If the project already has this file, update the `Run` action command to point at `.\u002Fscript\u002Fbuild_and_run.sh` instead of creating a duplicate action.\n   - Keep this Codex environment config separate from Swift app source files.\n\n5. Build and run through the script.\n   - Default to `.\u002Fscript\u002Fbuild_and_run.sh`.\n   - Use `.\u002Fscript\u002Fbuild_and_run.sh --debug`, `--logs`, `--telemetry`, or `--verify` when the user asks for debugger\u002Flog\u002Ftelemetry\u002Fprocess verification support.\n\n6. Summarize failures correctly.\n   - Classify the blocker as compiler, linker, signing, build settings, missing SDK\u002Ftoolchain, script bug, or runtime launch.\n   - Quote the smallest useful error snippet and explain what it means.\n\n7. Debug the right way.\n   - Use the script's `--logs` or `--telemetry` mode for config, entitlement, sandbox, and action-event verification.\n   - For SwiftPM GUI apps, if the app bundle launches but its window still does not come forward, check whether the entrypoint needs `NSApp.setActivationPolicy(.regular)` and `NSApp.activate(ignoringOtherApps: true)`.\n   - Use the script's `--debug` mode or direct `lldb` if symbolized crash debugging is needed.\n   - If the user needs to instrument and verify specific window, sidebar, menu, or menu bar actions, switch to `telemetry`.\n   - Keep evidence tight and user-facing.\n\n8. Use Xcode-aware MCP tooling only when it helps.\n   - If the user explicitly asks for XcodeBuildMCP and it is already available, prefer it over ad hoc setup.\n   - Use the MCP for Xcode-aware discovery or debug\u002Flogging workflows when the available tool surface clearly matches the task.\n   - Fall back to shell commands immediately when the MCP does not provide a clean macOS path.\n\n## Preferred Commands\n\n- Project discovery:\n  - `find . -name '*.xcworkspace' -o -name '*.xcodeproj' -o -name 'Package.swift'`\n- Scheme discovery:\n  - `xcodebuild -list -workspace \u003Cworkspace>`\n  - `xcodebuild -list -project \u003Cproject>`\n- Build\u002Frun:\n  - `.\u002Fscript\u002Fbuild_and_run.sh`\n  - `.\u002Fscript\u002Fbuild_and_run.sh --debug`\n  - `.\u002Fscript\u002Fbuild_and_run.sh --logs`\n  - `.\u002Fscript\u002Fbuild_and_run.sh --telemetry`\n  - `.\u002Fscript\u002Fbuild_and_run.sh --verify`\n\n## References\n\n- `references\u002Frun-button-bootstrap.md`: canonical `build_and_run.sh` and `.codex\u002Fenvironments\u002Fenvironment.toml` contract.\n\n## Guardrails\n\n- Prefer the narrowest command that proves or disproves the current theory.\n- Do not leave the user with a one-off manual command chain once a stable `build_and_run.sh` script can own the workflow.\n- Do not write `.codex\u002Fenvironments\u002Fenvironment.toml` before the run script exists, and do not point the Run action at a stale script path.\n- Do not launch a SwiftUI\u002FAppKit SwiftPM GUI app as a raw executable unless the user explicitly wants to diagnose that failure mode: it can produce no Dock icon, no foreground activation, and missing bundle identifier warnings. Keep raw executable launch only for true command-line tools.\n- Do not claim UI state you cannot inspect directly.\n- Do not describe mobile or simulator workflows as if they apply to macOS.\n- If build output is huge, summarize the first real blocker and point to follow-up commands.\n\n## Output Expectations\n\nProvide:\n- the detected project type\n- the script path and Codex environment action you configured, if applicable\n- the command you ran\n- whether build and launch succeeded\n- the top blocker if they failed\n- the smallest sensible next action\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,56,79,84,169,174,179,185,857,863,960,966,993,999,1051,1057,1062],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Build \u002F Run \u002F Debug",{"type":42,"tag":50,"props":51,"children":53},"h2",{"id":52},"quick-start",[54],{"type":47,"value":55},"Quick Start",{"type":42,"tag":57,"props":58,"children":59},"p",{},[60,62,69,71,77],{"type":47,"value":61},"Use this skill to set up one project-local ",{"type":42,"tag":63,"props":64,"children":66},"code",{"className":65},[],[67],{"type":47,"value":68},"script\u002Fbuild_and_run.sh",{"type":47,"value":70}," entrypoint,\nwire ",{"type":42,"tag":63,"props":72,"children":74},{"className":73},[],[75],{"type":47,"value":76},".codex\u002Fenvironments\u002Fenvironment.toml",{"type":47,"value":78}," so the Codex app shows a Run button,\nthen use that script as the default build\u002Frun path.",{"type":42,"tag":57,"props":80,"children":81},{},[82],{"type":47,"value":83},"Prefer shell-first workflows:",{"type":42,"tag":85,"props":86,"children":87},"ul",{},[88,100,111,122,148],{"type":42,"tag":89,"props":90,"children":91},"li",{},[92,98],{"type":42,"tag":63,"props":93,"children":95},{"className":94},[],[96],{"type":47,"value":97},".\u002Fscript\u002Fbuild_and_run.sh",{"type":47,"value":99}," as the single kill + build + run entrypoint once it exists",{"type":42,"tag":89,"props":101,"children":102},{},[103,109],{"type":42,"tag":63,"props":104,"children":106},{"className":105},[],[107],{"type":47,"value":108},"xcodebuild",{"type":47,"value":110}," for Xcode workspaces or projects",{"type":42,"tag":89,"props":112,"children":113},{},[114,120],{"type":42,"tag":63,"props":115,"children":117},{"className":116},[],[118],{"type":47,"value":119},"swift build",{"type":47,"value":121}," plus raw executable launch inside that script for true SwiftPM command-line tools",{"type":42,"tag":89,"props":123,"children":124},{},[125,130,132,138,140,146],{"type":42,"tag":63,"props":126,"children":128},{"className":127},[],[129],{"type":47,"value":119},{"type":47,"value":131}," plus project-local ",{"type":42,"tag":63,"props":133,"children":135},{"className":134},[],[136],{"type":47,"value":137},".app",{"type":47,"value":139}," bundle staging and ",{"type":42,"tag":63,"props":141,"children":143},{"className":142},[],[144],{"type":47,"value":145},"\u002Fusr\u002Fbin\u002Fopen -n",{"type":47,"value":147}," launch for SwiftPM AppKit\u002FSwiftUI GUI apps",{"type":42,"tag":89,"props":149,"children":150},{},[151,153,159,161,167],{"type":47,"value":152},"optional script flags for ",{"type":42,"tag":63,"props":154,"children":156},{"className":155},[],[157],{"type":47,"value":158},"lldb",{"type":47,"value":160},", ",{"type":42,"tag":63,"props":162,"children":164},{"className":163},[],[165],{"type":47,"value":166},"log stream",{"type":47,"value":168},", telemetry verification, or post-launch process checks",{"type":42,"tag":57,"props":170,"children":171},{},[172],{"type":47,"value":173},"Do not assume simulators, touch interaction, or mobile-specific tooling.",{"type":42,"tag":57,"props":175,"children":176},{},[177],{"type":47,"value":178},"If an Xcode-aware MCP surface is already available and the user explicitly wants\nit, use it only where it fits. Keep that usage narrow and honest: prefer it for\nXcode-oriented discovery, logging, or debugging support, and do not force\nsimulator-specific workflows onto pure macOS tasks.",{"type":42,"tag":50,"props":180,"children":182},{"id":181},"workflow",[183],{"type":47,"value":184},"Workflow",{"type":42,"tag":186,"props":187,"children":188},"ol",{},[189,262,310,619,686,735,753,834],{"type":42,"tag":89,"props":190,"children":191},{},[192,194],{"type":47,"value":193},"Discover the project shape.",{"type":42,"tag":85,"props":195,"children":196},{},[197,210,230,257],{"type":42,"tag":89,"props":198,"children":199},{},[200,202,208],{"type":47,"value":201},"Check whether the workspace is already inside a git repo with ",{"type":42,"tag":63,"props":203,"children":205},{"className":204},[],[206],{"type":47,"value":207},"git rev-parse --is-inside-work-tree",{"type":47,"value":209},".",{"type":42,"tag":89,"props":211,"children":212},{},[213,215,221,223,228],{"type":47,"value":214},"If no git repo is present, run ",{"type":42,"tag":63,"props":216,"children":218},{"className":217},[],[219],{"type":47,"value":220},"git init",{"type":47,"value":222}," at the project\u002Fworkspace root before building so Codex app git-backed features are available. Never run ",{"type":42,"tag":63,"props":224,"children":226},{"className":225},[],[227],{"type":47,"value":220},{"type":47,"value":229}," inside a nested subdirectory when the current workspace already belongs to a parent repo.",{"type":42,"tag":89,"props":231,"children":232},{},[233,235,241,242,248,250,256],{"type":47,"value":234},"Look for ",{"type":42,"tag":63,"props":236,"children":238},{"className":237},[],[239],{"type":47,"value":240},".xcworkspace",{"type":47,"value":160},{"type":42,"tag":63,"props":243,"children":245},{"className":244},[],[246],{"type":47,"value":247},".xcodeproj",{"type":47,"value":249},", and ",{"type":42,"tag":63,"props":251,"children":253},{"className":252},[],[254],{"type":47,"value":255},"Package.swift",{"type":47,"value":209},{"type":42,"tag":89,"props":258,"children":259},{},[260],{"type":47,"value":261},"If more than one candidate exists, explain the default choice and the ambiguity.",{"type":42,"tag":89,"props":263,"children":264},{},[265,267],{"type":47,"value":266},"Resolve the runnable target and process name.",{"type":42,"tag":85,"props":268,"children":269},{},[270,275,280,305],{"type":42,"tag":89,"props":271,"children":272},{},[273],{"type":47,"value":274},"For Xcode, list schemes and prefer the app-producing scheme unless the user names another one.",{"type":42,"tag":89,"props":276,"children":277},{},[278],{"type":47,"value":279},"For SwiftPM, identify executable products when possible.",{"type":42,"tag":89,"props":281,"children":282},{},[283,285],{"type":47,"value":284},"Split SwiftPM launch handling by product type:\n",{"type":42,"tag":85,"props":286,"children":287},{},[288,293],{"type":42,"tag":89,"props":289,"children":290},{},[291],{"type":47,"value":292},"use raw executable launch only for true command-line tools,",{"type":42,"tag":89,"props":294,"children":295},{},[296,298,303],{"type":47,"value":297},"use a generated project-local ",{"type":42,"tag":63,"props":299,"children":301},{"className":300},[],[302],{"type":47,"value":137},{"type":47,"value":304}," bundle for AppKit\u002FSwiftUI GUI apps.",{"type":42,"tag":89,"props":306,"children":307},{},[308],{"type":47,"value":309},"Determine the app\u002Fprocess name to kill before relaunching.",{"type":42,"tag":89,"props":311,"children":312},{},[313,315,320,321],{"type":47,"value":314},"Create or update ",{"type":42,"tag":63,"props":316,"children":318},{"className":317},[],[319],{"type":47,"value":68},{"type":47,"value":209},{"type":42,"tag":85,"props":322,"children":323},{},[324,329,352,417,422,434,513,546,551,564],{"type":42,"tag":89,"props":325,"children":326},{},[327],{"type":47,"value":328},"Make the script project-specific and executable.",{"type":42,"tag":89,"props":330,"children":331},{},[332,334],{"type":47,"value":333},"It should always:\n",{"type":42,"tag":186,"props":335,"children":336},{},[337,342,347],{"type":42,"tag":89,"props":338,"children":339},{},[340],{"type":47,"value":341},"stop the existing running app\u002Fprocess if present,",{"type":42,"tag":89,"props":343,"children":344},{},[345],{"type":47,"value":346},"build the macOS target,",{"type":42,"tag":89,"props":348,"children":349},{},[350],{"type":47,"value":351},"launch the freshly built app or executable.",{"type":42,"tag":89,"props":353,"children":354},{},[355,357],{"type":47,"value":356},"Add optional flags for debugging\u002Flog inspection:\n",{"type":42,"tag":85,"props":358,"children":359},{},[360,378,389,400],{"type":42,"tag":89,"props":361,"children":362},{},[363,369,371,376],{"type":42,"tag":63,"props":364,"children":366},{"className":365},[],[367],{"type":47,"value":368},"--debug",{"type":47,"value":370}," to launch under ",{"type":42,"tag":63,"props":372,"children":374},{"className":373},[],[375],{"type":47,"value":158},{"type":47,"value":377}," or attach the debugger",{"type":42,"tag":89,"props":379,"children":380},{},[381,387],{"type":42,"tag":63,"props":382,"children":384},{"className":383},[],[385],{"type":47,"value":386},"--logs",{"type":47,"value":388}," to stream process logs after launch",{"type":42,"tag":89,"props":390,"children":391},{},[392,398],{"type":42,"tag":63,"props":393,"children":395},{"className":394},[],[396],{"type":47,"value":397},"--telemetry",{"type":47,"value":399}," to stream unified logs filtered to the app subsystem\u002Fcategory",{"type":42,"tag":89,"props":401,"children":402},{},[403,409,411],{"type":42,"tag":63,"props":404,"children":406},{"className":405},[],[407],{"type":47,"value":408},"--verify",{"type":47,"value":410}," to launch the app and confirm the process exists with ",{"type":42,"tag":63,"props":412,"children":414},{"className":413},[],[415],{"type":47,"value":416},"pgrep -x \u003CAppName>",{"type":42,"tag":89,"props":418,"children":419},{},[420],{"type":47,"value":421},"Keep the default no-flag path simple: kill, build, run.",{"type":42,"tag":89,"props":423,"children":424},{},[425,427,432],{"type":47,"value":426},"Prefer writing one script that owns this workflow instead of repeatedly asking the agent to manually run ",{"type":42,"tag":63,"props":428,"children":430},{"className":429},[],[431],{"type":47,"value":119},{"type":47,"value":433},", locate the artifact, then invoke an ad hoc run command.",{"type":42,"tag":89,"props":435,"children":436},{},[437,439,445,447,453,455,461,463,469,470,476,477,483,484,490,491,497,498,504,506,512],{"type":47,"value":438},"For SwiftPM GUI apps, make the script build the product, create ",{"type":42,"tag":63,"props":440,"children":442},{"className":441},[],[443],{"type":47,"value":444},"dist\u002F\u003CAppName>.app",{"type":47,"value":446},", copy the binary to ",{"type":42,"tag":63,"props":448,"children":450},{"className":449},[],[451],{"type":47,"value":452},"Contents\u002FMacOS\u002F\u003CAppName>",{"type":47,"value":454},", generate a minimal ",{"type":42,"tag":63,"props":456,"children":458},{"className":457},[],[459],{"type":47,"value":460},"Contents\u002FInfo.plist",{"type":47,"value":462}," with ",{"type":42,"tag":63,"props":464,"children":466},{"className":465},[],[467],{"type":47,"value":468},"CFBundlePackageType=APPL",{"type":47,"value":160},{"type":42,"tag":63,"props":471,"children":473},{"className":472},[],[474],{"type":47,"value":475},"CFBundleExecutable",{"type":47,"value":160},{"type":42,"tag":63,"props":478,"children":480},{"className":479},[],[481],{"type":47,"value":482},"CFBundleIdentifier",{"type":47,"value":160},{"type":42,"tag":63,"props":485,"children":487},{"className":486},[],[488],{"type":47,"value":489},"CFBundleName",{"type":47,"value":160},{"type":42,"tag":63,"props":492,"children":494},{"className":493},[],[495],{"type":47,"value":496},"LSMinimumSystemVersion",{"type":47,"value":249},{"type":42,"tag":63,"props":499,"children":501},{"className":500},[],[502],{"type":47,"value":503},"NSPrincipalClass=NSApplication",{"type":47,"value":505},", then launch with ",{"type":42,"tag":63,"props":507,"children":509},{"className":508},[],[510],{"type":47,"value":511},"\u002Fusr\u002Fbin\u002Fopen -n \u003Cbundle>",{"type":47,"value":209},{"type":42,"tag":89,"props":514,"children":515},{},[516,518,523,525,530,532,537,539,545],{"type":47,"value":517},"For SwiftPM GUI ",{"type":42,"tag":63,"props":519,"children":521},{"className":520},[],[522],{"type":47,"value":386},{"type":47,"value":524}," and ",{"type":42,"tag":63,"props":526,"children":528},{"className":527},[],[529],{"type":47,"value":397},{"type":47,"value":531},", launch the bundle with ",{"type":42,"tag":63,"props":533,"children":535},{"className":534},[],[536],{"type":47,"value":145},{"type":47,"value":538}," first, then stream unified logs with ",{"type":42,"tag":63,"props":540,"children":542},{"className":541},[],[543],{"type":47,"value":544},"\u002Fusr\u002Fbin\u002Flog stream --info ...",{"type":47,"value":209},{"type":42,"tag":89,"props":547,"children":548},{},[549],{"type":47,"value":550},"Do not recommend direct SwiftPM executable launch for AppKit\u002FSwiftUI GUI apps.",{"type":42,"tag":89,"props":552,"children":553},{},[554,556,562],{"type":47,"value":555},"Use ",{"type":42,"tag":63,"props":557,"children":559},{"className":558},[],[560],{"type":47,"value":561},"references\u002Frun-button-bootstrap.md",{"type":47,"value":563}," as the canonical source for the\nscript shape and exact environment file format. Do not fork a second\nauthoritative snippet in another skill or command.",{"type":42,"tag":89,"props":565,"children":566},{},[567,569,574,576,582,583,589,590,596,597,603,604,610,612,618],{"type":47,"value":568},"Keep the run script outside app source. It belongs in ",{"type":42,"tag":63,"props":570,"children":572},{"className":571},[],[573],{"type":47,"value":68},{"type":47,"value":575},", not in ",{"type":42,"tag":63,"props":577,"children":579},{"className":578},[],[580],{"type":47,"value":581},"App\u002F",{"type":47,"value":160},{"type":42,"tag":63,"props":584,"children":586},{"className":585},[],[587],{"type":47,"value":588},"Views\u002F",{"type":47,"value":160},{"type":42,"tag":63,"props":591,"children":593},{"className":592},[],[594],{"type":47,"value":595},"Models\u002F",{"type":47,"value":160},{"type":42,"tag":63,"props":598,"children":600},{"className":599},[],[601],{"type":47,"value":602},"Stores\u002F",{"type":47,"value":160},{"type":42,"tag":63,"props":605,"children":607},{"className":606},[],[608],{"type":47,"value":609},"Services\u002F",{"type":47,"value":611},", or ",{"type":42,"tag":63,"props":613,"children":615},{"className":614},[],[616],{"type":47,"value":617},"Support\u002F",{"type":47,"value":209},{"type":42,"tag":89,"props":620,"children":621},{},[622,624,629,631],{"type":47,"value":623},"Write ",{"type":42,"tag":63,"props":625,"children":627},{"className":626},[],[628],{"type":47,"value":76},{"type":47,"value":630}," at the project root once the script exists.",{"type":42,"tag":85,"props":632,"children":633},{},[634,645,656,661,681],{"type":42,"tag":89,"props":635,"children":636},{},[637,639,644],{"type":47,"value":638},"Use this exact placement: ",{"type":42,"tag":63,"props":640,"children":642},{"className":641},[],[643],{"type":47,"value":76},{"type":47,"value":209},{"type":42,"tag":89,"props":646,"children":647},{},[648,650,655],{"type":47,"value":649},"Use the exact action shape in ",{"type":42,"tag":63,"props":651,"children":653},{"className":652},[],[654],{"type":47,"value":561},{"type":47,"value":209},{"type":42,"tag":89,"props":657,"children":658},{},[659],{"type":47,"value":660},"This file is what gives the user a Codex app Run button wired to the script.",{"type":42,"tag":89,"props":662,"children":663},{},[664,666,672,674,679],{"type":47,"value":665},"If the project already has this file, update the ",{"type":42,"tag":63,"props":667,"children":669},{"className":668},[],[670],{"type":47,"value":671},"Run",{"type":47,"value":673}," action command to point at ",{"type":42,"tag":63,"props":675,"children":677},{"className":676},[],[678],{"type":47,"value":97},{"type":47,"value":680}," instead of creating a duplicate action.",{"type":42,"tag":89,"props":682,"children":683},{},[684],{"type":47,"value":685},"Keep this Codex environment config separate from Swift app source files.",{"type":42,"tag":89,"props":687,"children":688},{},[689,691],{"type":47,"value":690},"Build and run through the script.",{"type":42,"tag":85,"props":692,"children":693},{},[694,705],{"type":42,"tag":89,"props":695,"children":696},{},[697,699,704],{"type":47,"value":698},"Default to ",{"type":42,"tag":63,"props":700,"children":702},{"className":701},[],[703],{"type":47,"value":97},{"type":47,"value":209},{"type":42,"tag":89,"props":706,"children":707},{},[708,709,715,716,721,722,727,728,733],{"type":47,"value":555},{"type":42,"tag":63,"props":710,"children":712},{"className":711},[],[713],{"type":47,"value":714},".\u002Fscript\u002Fbuild_and_run.sh --debug",{"type":47,"value":160},{"type":42,"tag":63,"props":717,"children":719},{"className":718},[],[720],{"type":47,"value":386},{"type":47,"value":160},{"type":42,"tag":63,"props":723,"children":725},{"className":724},[],[726],{"type":47,"value":397},{"type":47,"value":611},{"type":42,"tag":63,"props":729,"children":731},{"className":730},[],[732],{"type":47,"value":408},{"type":47,"value":734}," when the user asks for debugger\u002Flog\u002Ftelemetry\u002Fprocess verification support.",{"type":42,"tag":89,"props":736,"children":737},{},[738,740],{"type":47,"value":739},"Summarize failures correctly.",{"type":42,"tag":85,"props":741,"children":742},{},[743,748],{"type":42,"tag":89,"props":744,"children":745},{},[746],{"type":47,"value":747},"Classify the blocker as compiler, linker, signing, build settings, missing SDK\u002Ftoolchain, script bug, or runtime launch.",{"type":42,"tag":89,"props":749,"children":750},{},[751],{"type":47,"value":752},"Quote the smallest useful error snippet and explain what it means.",{"type":42,"tag":89,"props":754,"children":755},{},[756,758],{"type":47,"value":757},"Debug the right way.",{"type":42,"tag":85,"props":759,"children":760},{},[761,780,799,817,829],{"type":42,"tag":89,"props":762,"children":763},{},[764,766,771,773,778],{"type":47,"value":765},"Use the script's ",{"type":42,"tag":63,"props":767,"children":769},{"className":768},[],[770],{"type":47,"value":386},{"type":47,"value":772}," or ",{"type":42,"tag":63,"props":774,"children":776},{"className":775},[],[777],{"type":47,"value":397},{"type":47,"value":779}," mode for config, entitlement, sandbox, and action-event verification.",{"type":42,"tag":89,"props":781,"children":782},{},[783,785,791,792,798],{"type":47,"value":784},"For SwiftPM GUI apps, if the app bundle launches but its window still does not come forward, check whether the entrypoint needs ",{"type":42,"tag":63,"props":786,"children":788},{"className":787},[],[789],{"type":47,"value":790},"NSApp.setActivationPolicy(.regular)",{"type":47,"value":524},{"type":42,"tag":63,"props":793,"children":795},{"className":794},[],[796],{"type":47,"value":797},"NSApp.activate(ignoringOtherApps: true)",{"type":47,"value":209},{"type":42,"tag":89,"props":800,"children":801},{},[802,803,808,810,815],{"type":47,"value":765},{"type":42,"tag":63,"props":804,"children":806},{"className":805},[],[807],{"type":47,"value":368},{"type":47,"value":809}," mode or direct ",{"type":42,"tag":63,"props":811,"children":813},{"className":812},[],[814],{"type":47,"value":158},{"type":47,"value":816}," if symbolized crash debugging is needed.",{"type":42,"tag":89,"props":818,"children":819},{},[820,822,828],{"type":47,"value":821},"If the user needs to instrument and verify specific window, sidebar, menu, or menu bar actions, switch to ",{"type":42,"tag":63,"props":823,"children":825},{"className":824},[],[826],{"type":47,"value":827},"telemetry",{"type":47,"value":209},{"type":42,"tag":89,"props":830,"children":831},{},[832],{"type":47,"value":833},"Keep evidence tight and user-facing.",{"type":42,"tag":89,"props":835,"children":836},{},[837,839],{"type":47,"value":838},"Use Xcode-aware MCP tooling only when it helps.",{"type":42,"tag":85,"props":840,"children":841},{},[842,847,852],{"type":42,"tag":89,"props":843,"children":844},{},[845],{"type":47,"value":846},"If the user explicitly asks for XcodeBuildMCP and it is already available, prefer it over ad hoc setup.",{"type":42,"tag":89,"props":848,"children":849},{},[850],{"type":47,"value":851},"Use the MCP for Xcode-aware discovery or debug\u002Flogging workflows when the available tool surface clearly matches the task.",{"type":42,"tag":89,"props":853,"children":854},{},[855],{"type":47,"value":856},"Fall back to shell commands immediately when the MCP does not provide a clean macOS path.",{"type":42,"tag":50,"props":858,"children":860},{"id":859},"preferred-commands",[861],{"type":47,"value":862},"Preferred Commands",{"type":42,"tag":85,"props":864,"children":865},{},[866,883,909],{"type":42,"tag":89,"props":867,"children":868},{},[869,871],{"type":47,"value":870},"Project discovery:\n",{"type":42,"tag":85,"props":872,"children":873},{},[874],{"type":42,"tag":89,"props":875,"children":876},{},[877],{"type":42,"tag":63,"props":878,"children":880},{"className":879},[],[881],{"type":47,"value":882},"find . -name '*.xcworkspace' -o -name '*.xcodeproj' -o -name 'Package.swift'",{"type":42,"tag":89,"props":884,"children":885},{},[886,888],{"type":47,"value":887},"Scheme discovery:\n",{"type":42,"tag":85,"props":889,"children":890},{},[891,900],{"type":42,"tag":89,"props":892,"children":893},{},[894],{"type":42,"tag":63,"props":895,"children":897},{"className":896},[],[898],{"type":47,"value":899},"xcodebuild -list -workspace \u003Cworkspace>",{"type":42,"tag":89,"props":901,"children":902},{},[903],{"type":42,"tag":63,"props":904,"children":906},{"className":905},[],[907],{"type":47,"value":908},"xcodebuild -list -project \u003Cproject>",{"type":42,"tag":89,"props":910,"children":911},{},[912,914],{"type":47,"value":913},"Build\u002Frun:\n",{"type":42,"tag":85,"props":915,"children":916},{},[917,925,933,942,951],{"type":42,"tag":89,"props":918,"children":919},{},[920],{"type":42,"tag":63,"props":921,"children":923},{"className":922},[],[924],{"type":47,"value":97},{"type":42,"tag":89,"props":926,"children":927},{},[928],{"type":42,"tag":63,"props":929,"children":931},{"className":930},[],[932],{"type":47,"value":714},{"type":42,"tag":89,"props":934,"children":935},{},[936],{"type":42,"tag":63,"props":937,"children":939},{"className":938},[],[940],{"type":47,"value":941},".\u002Fscript\u002Fbuild_and_run.sh --logs",{"type":42,"tag":89,"props":943,"children":944},{},[945],{"type":42,"tag":63,"props":946,"children":948},{"className":947},[],[949],{"type":47,"value":950},".\u002Fscript\u002Fbuild_and_run.sh --telemetry",{"type":42,"tag":89,"props":952,"children":953},{},[954],{"type":42,"tag":63,"props":955,"children":957},{"className":956},[],[958],{"type":47,"value":959},".\u002Fscript\u002Fbuild_and_run.sh --verify",{"type":42,"tag":50,"props":961,"children":963},{"id":962},"references",[964],{"type":47,"value":965},"References",{"type":42,"tag":85,"props":967,"children":968},{},[969],{"type":42,"tag":89,"props":970,"children":971},{},[972,977,979,985,986,991],{"type":42,"tag":63,"props":973,"children":975},{"className":974},[],[976],{"type":47,"value":561},{"type":47,"value":978},": canonical ",{"type":42,"tag":63,"props":980,"children":982},{"className":981},[],[983],{"type":47,"value":984},"build_and_run.sh",{"type":47,"value":524},{"type":42,"tag":63,"props":987,"children":989},{"className":988},[],[990],{"type":47,"value":76},{"type":47,"value":992}," contract.",{"type":42,"tag":50,"props":994,"children":996},{"id":995},"guardrails",[997],{"type":47,"value":998},"Guardrails",{"type":42,"tag":85,"props":1000,"children":1001},{},[1002,1007,1019,1031,1036,1041,1046],{"type":42,"tag":89,"props":1003,"children":1004},{},[1005],{"type":47,"value":1006},"Prefer the narrowest command that proves or disproves the current theory.",{"type":42,"tag":89,"props":1008,"children":1009},{},[1010,1012,1017],{"type":47,"value":1011},"Do not leave the user with a one-off manual command chain once a stable ",{"type":42,"tag":63,"props":1013,"children":1015},{"className":1014},[],[1016],{"type":47,"value":984},{"type":47,"value":1018}," script can own the workflow.",{"type":42,"tag":89,"props":1020,"children":1021},{},[1022,1024,1029],{"type":47,"value":1023},"Do not write ",{"type":42,"tag":63,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":47,"value":76},{"type":47,"value":1030}," before the run script exists, and do not point the Run action at a stale script path.",{"type":42,"tag":89,"props":1032,"children":1033},{},[1034],{"type":47,"value":1035},"Do not launch a SwiftUI\u002FAppKit SwiftPM GUI app as a raw executable unless the user explicitly wants to diagnose that failure mode: it can produce no Dock icon, no foreground activation, and missing bundle identifier warnings. Keep raw executable launch only for true command-line tools.",{"type":42,"tag":89,"props":1037,"children":1038},{},[1039],{"type":47,"value":1040},"Do not claim UI state you cannot inspect directly.",{"type":42,"tag":89,"props":1042,"children":1043},{},[1044],{"type":47,"value":1045},"Do not describe mobile or simulator workflows as if they apply to macOS.",{"type":42,"tag":89,"props":1047,"children":1048},{},[1049],{"type":47,"value":1050},"If build output is huge, summarize the first real blocker and point to follow-up commands.",{"type":42,"tag":50,"props":1052,"children":1054},{"id":1053},"output-expectations",[1055],{"type":47,"value":1056},"Output Expectations",{"type":42,"tag":57,"props":1058,"children":1059},{},[1060],{"type":47,"value":1061},"Provide:",{"type":42,"tag":85,"props":1063,"children":1064},{},[1065,1070,1075,1080,1085,1090],{"type":42,"tag":89,"props":1066,"children":1067},{},[1068],{"type":47,"value":1069},"the detected project type",{"type":42,"tag":89,"props":1071,"children":1072},{},[1073],{"type":47,"value":1074},"the script path and Codex environment action you configured, if applicable",{"type":42,"tag":89,"props":1076,"children":1077},{},[1078],{"type":47,"value":1079},"the command you ran",{"type":42,"tag":89,"props":1081,"children":1082},{},[1083],{"type":47,"value":1084},"whether build and launch succeeded",{"type":42,"tag":89,"props":1086,"children":1087},{},[1088],{"type":47,"value":1089},"the top blocker if they failed",{"type":42,"tag":89,"props":1091,"children":1092},{},[1093],{"type":47,"value":1094},"the smallest sensible next action",{"items":1096,"total":1301},[1097,1118,1141,1158,1174,1193,1212,1228,1244,1258,1270,1285],{"slug":1098,"name":1098,"fn":1099,"description":1100,"org":1101,"tags":1102,"stars":1115,"repoUrl":1116,"updatedAt":1117},"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},[1103,1106,1109,1112],{"name":1104,"slug":1105,"type":15},"Documents","documents",{"name":1107,"slug":1108,"type":15},"Healthcare","healthcare",{"name":1110,"slug":1111,"type":15},"Insurance","insurance",{"name":1113,"slug":1114,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1119,"name":1119,"fn":1120,"description":1121,"org":1122,"tags":1123,"stars":1138,"repoUrl":1139,"updatedAt":1140},"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},[1124,1127,1129,1132,1135],{"name":1125,"slug":1126,"type":15},".NET","dotnet",{"name":1128,"slug":1119,"type":15},"ASP.NET Core",{"name":1130,"slug":1131,"type":15},"Blazor","blazor",{"name":1133,"slug":1134,"type":15},"C#","csharp",{"name":1136,"slug":1137,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1142,"name":1142,"fn":1143,"description":1144,"org":1145,"tags":1146,"stars":1138,"repoUrl":1139,"updatedAt":1157},"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},[1147,1150,1153,1156],{"name":1148,"slug":1149,"type":15},"Apps SDK","apps-sdk",{"name":1151,"slug":1152,"type":15},"ChatGPT","chatgpt",{"name":1154,"slug":1155,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1159,"name":1159,"fn":1160,"description":1161,"org":1162,"tags":1163,"stars":1138,"repoUrl":1139,"updatedAt":1173},"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},[1164,1167,1170],{"name":1165,"slug":1166,"type":15},"API Development","api-development",{"name":1168,"slug":1169,"type":15},"CLI","cli",{"name":1171,"slug":1172,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1175,"name":1175,"fn":1176,"description":1177,"org":1178,"tags":1179,"stars":1138,"repoUrl":1139,"updatedAt":1192},"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},[1180,1183,1186,1189],{"name":1181,"slug":1182,"type":15},"Cloudflare","cloudflare",{"name":1184,"slug":1185,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1187,"slug":1188,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1190,"slug":1191,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1197,"tags":1198,"stars":1138,"repoUrl":1139,"updatedAt":1211},"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},[1199,1202,1205,1208],{"name":1200,"slug":1201,"type":15},"Productivity","productivity",{"name":1203,"slug":1204,"type":15},"Project Management","project-management",{"name":1206,"slug":1207,"type":15},"Strategy","strategy",{"name":1209,"slug":1210,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1213,"name":1213,"fn":1214,"description":1215,"org":1216,"tags":1217,"stars":1138,"repoUrl":1139,"updatedAt":1227},"figma","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},[1218,1221,1223,1226],{"name":1219,"slug":1220,"type":15},"Design","design",{"name":1222,"slug":1213,"type":15},"Figma",{"name":1224,"slug":1225,"type":15},"Frontend","frontend",{"name":1154,"slug":1155,"type":15},"2026-04-12T05:06:47.939943",{"slug":1229,"name":1229,"fn":1230,"description":1231,"org":1232,"tags":1233,"stars":1138,"repoUrl":1139,"updatedAt":1243},"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},[1234,1235,1238,1239,1240],{"name":1219,"slug":1220,"type":15},{"name":1236,"slug":1237,"type":15},"Design System","design-system",{"name":1222,"slug":1213,"type":15},{"name":1224,"slug":1225,"type":15},{"name":1241,"slug":1242,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1245,"name":1245,"fn":1246,"description":1247,"org":1248,"tags":1249,"stars":1138,"repoUrl":1139,"updatedAt":1257},"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},[1250,1251,1252,1255,1256],{"name":1219,"slug":1220,"type":15},{"name":1236,"slug":1237,"type":15},{"name":1253,"slug":1254,"type":15},"Documentation","documentation",{"name":1222,"slug":1213,"type":15},{"name":1224,"slug":1225,"type":15},"2026-05-16T06:07:47.821474",{"slug":1259,"name":1259,"fn":1260,"description":1261,"org":1262,"tags":1263,"stars":1138,"repoUrl":1139,"updatedAt":1269},"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},[1264,1265,1266,1267,1268],{"name":1219,"slug":1220,"type":15},{"name":1222,"slug":1213,"type":15},{"name":1224,"slug":1225,"type":15},{"name":1241,"slug":1242,"type":15},{"name":1136,"slug":1137,"type":15},"2026-05-16T06:07:40.583615",{"slug":1271,"name":1271,"fn":1272,"description":1273,"org":1274,"tags":1275,"stars":1138,"repoUrl":1139,"updatedAt":1284},"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},[1276,1279,1280,1283],{"name":1277,"slug":1278,"type":15},"Animation","animation",{"name":1171,"slug":1172,"type":15},{"name":1281,"slug":1282,"type":15},"Creative","creative",{"name":1219,"slug":1220,"type":15},"2026-05-02T05:31:48.48485",{"slug":1286,"name":1286,"fn":1287,"description":1288,"org":1289,"tags":1290,"stars":1138,"repoUrl":1139,"updatedAt":1300},"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},[1291,1292,1293,1296,1299],{"name":1281,"slug":1282,"type":15},{"name":1219,"slug":1220,"type":15},{"name":1294,"slug":1295,"type":15},"Image Generation","image-generation",{"name":1297,"slug":1298,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1303,"total":1415},[1304,1321,1337,1347,1365,1383,1403],{"slug":1305,"name":1305,"fn":1306,"description":1307,"org":1308,"tags":1309,"stars":25,"repoUrl":26,"updatedAt":1320},"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},[1310,1313,1316,1319],{"name":1311,"slug":1312,"type":15},"Accessibility","accessibility",{"name":1314,"slug":1315,"type":15},"Charts","charts",{"name":1317,"slug":1318,"type":15},"Data Visualization","data-visualization",{"name":1219,"slug":1220,"type":15},"2026-06-30T19:00:57.102",{"slug":1322,"name":1322,"fn":1323,"description":1324,"org":1325,"tags":1326,"stars":25,"repoUrl":26,"updatedAt":1336},"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},[1327,1330,1333],{"name":1328,"slug":1329,"type":15},"Agents","agents",{"name":1331,"slug":1332,"type":15},"Browser Automation","browser-automation",{"name":1334,"slug":1335,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1338,"name":1338,"fn":1339,"description":1340,"org":1341,"tags":1342,"stars":25,"repoUrl":26,"updatedAt":1346},"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},[1343,1344,1345],{"name":1331,"slug":1332,"type":15},{"name":17,"slug":18,"type":15},{"name":1334,"slug":1335,"type":15},"2026-04-06T18:41:17.526867",{"slug":1348,"name":1348,"fn":1349,"description":1350,"org":1351,"tags":1352,"stars":25,"repoUrl":26,"updatedAt":1364},"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},[1353,1354,1355,1358,1361],{"name":1328,"slug":1329,"type":15},{"name":1187,"slug":1188,"type":15},{"name":1356,"slug":1357,"type":15},"SDK","sdk",{"name":1359,"slug":1360,"type":15},"Serverless","serverless",{"name":1362,"slug":1363,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1366,"name":1366,"fn":1367,"description":1368,"org":1369,"tags":1370,"stars":25,"repoUrl":26,"updatedAt":1382},"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},[1371,1372,1375,1378,1379],{"name":1224,"slug":1225,"type":15},{"name":1373,"slug":1374,"type":15},"React","react",{"name":1376,"slug":1377,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1241,"slug":1242,"type":15},{"name":1380,"slug":1381,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1384,"name":1384,"fn":1385,"description":1386,"org":1387,"tags":1388,"stars":25,"repoUrl":26,"updatedAt":1402},"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},[1389,1392,1395,1398,1401],{"name":1390,"slug":1391,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1393,"slug":1394,"type":15},"Cost Optimization","cost-optimization",{"name":1396,"slug":1397,"type":15},"LLM","llm",{"name":1399,"slug":1400,"type":15},"Performance","performance",{"name":1380,"slug":1381,"type":15},"2026-04-06T18:40:44.377464",{"slug":1404,"name":1404,"fn":1405,"description":1406,"org":1407,"tags":1408,"stars":25,"repoUrl":26,"updatedAt":1414},"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},[1409,1410,1413],{"name":1393,"slug":1394,"type":15},{"name":1411,"slug":1412,"type":15},"Database","database",{"name":1396,"slug":1397,"type":15},"2026-04-06T18:41:08.513425",600]