[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-screenshot":3,"mdc-hbpxlr-key":33,"related-org-openai-screenshot":1853,"related-repo-openai-screenshot":2055},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"screenshot","capture desktop screenshots","Use when the user explicitly asks for a desktop or system screenshot (full screen, specific app or window, or a pixel region), or when tool-specific capture capabilities are unavailable and an OS-level capture is needed.",{"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],{"name":13,"slug":14,"type":15},"CLI","cli","tag",{"name":17,"slug":18,"type":15},"Desktop","desktop",{"name":20,"slug":21,"type":15},"Screenshots","screenshots",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:00.217328",null,1614,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"Skills Catalog for Codex","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002F.curated\u002Fscreenshot","---\nname: \"screenshot\"\ndescription: \"Use when the user explicitly asks for a desktop or system screenshot (full screen, specific app or window, or a pixel region), or when tool-specific capture capabilities are unavailable and an OS-level capture is needed.\"\n---\n\n\n# Screenshot Capture\n\nFollow these save-location rules every time:\n\n1) If the user specifies a path, save there.\n2) If the user asks for a screenshot without a path, save to the OS default screenshot location.\n3) If Codex needs a screenshot for its own inspection, save to the temp directory.\n\n## Tool priority\n\n- Prefer tool-specific screenshot capabilities when available (for example: a Figma MCP\u002Fskill for Figma files, or Playwright\u002Fagent-browser tools for browsers and Electron apps).\n- Use this skill when explicitly asked, for whole-system desktop captures, or when a tool-specific capture cannot get what you need.\n- Otherwise, treat this skill as the default for desktop apps without a better-integrated capture tool.\n\n## macOS permission preflight (reduce repeated prompts)\n\nOn macOS, run the preflight helper once before window\u002Fapp capture. It checks\nScreen Recording permission, explains why it is needed, and requests it in one\nplace.\n\nThe helpers route Swift's module cache to `$TMPDIR\u002Fcodex-swift-module-cache`\nto avoid extra sandbox module-cache prompts.\n\n```bash\nbash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh\n```\n\nTo avoid multiple sandbox approval prompts, combine preflight + capture in one\ncommand when possible:\n\n```bash\nbash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\"\n```\n\nFor Codex inspection runs, keep the output in temp:\n\n```bash\nbash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"\u003CApp>\" --mode temp\n```\n\nUse the bundled scripts to avoid re-deriving OS-specific commands.\n\n## macOS and Linux (Python helper)\n\nRun the helper from the repo root:\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py\n```\n\nCommon patterns:\n\n- Default location (user asked for \"a screenshot\"):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py\n```\n\n- Temp location (Codex visual check):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp\n```\n\n- Explicit location (user provided a path or filename):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --path output\u002Fscreen.png\n```\n\n- App\u002Fwindow capture by app name (macOS only; substring match is OK; captures all matching windows):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\"\n```\n\n- Specific window title within an app (macOS only):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\" --window-name \"Settings\"\n```\n\n- List matching window ids before capturing (macOS only):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --list-windows --app \"Codex\"\n```\n\n- Pixel region (x,y,w,h):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp --region 100,200,800,600\n```\n\n- Focused\u002Factive window (captures only the frontmost window; use `--app` to capture all windows):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp --active-window\n```\n\n- Specific window id (use --list-windows on macOS to discover ids):\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --window-id 12345\n```\n\nThe script prints one path per capture. When multiple windows or displays match, it prints multiple paths (one per line) and adds suffixes like `-w\u003CwindowId>` or `-d\u003Cdisplay>`. View each path sequentially with the image viewer tool, and only manipulate images if needed or requested.\n\n### Workflow examples\n\n- \"Take a look at \u003CApp> and tell me what you see\": capture to temp, then view each printed path in order.\n\n```bash\nbash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"\u003CApp>\" --mode temp\n```\n\n- \"The design from Figma is not matching what is implemented\": use a Figma MCP\u002Fskill to capture the design first, then capture the running app with this skill (typically to temp) and compare the raw screenshots before any manipulation.\n\n### Multi-display behavior\n\n- On macOS, full-screen captures save one file per display when multiple monitors are connected.\n- On Linux and Windows, full-screen captures use the virtual desktop (all monitors in one image); use `--region` to isolate a single display when needed.\n\n### Linux prerequisites and selection logic\n\nThe helper automatically selects the first available tool:\n\n1) `scrot`\n2) `gnome-screenshot`\n3) ImageMagick `import`\n\nIf none are available, ask the user to install one of them and retry.\n\nCoordinate regions require `scrot` or ImageMagick `import`.\n\n`--app`, `--window-name`, and `--list-windows` are macOS-only. On Linux, use\n`--active-window` or provide `--window-id` when available.\n\n## Windows (PowerShell helper)\n\nRun the PowerShell helper:\n\n```powershell\npowershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1\n```\n\nCommon patterns:\n\n- Default location:\n\n```powershell\npowershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1\n```\n\n- Temp location (Codex visual check):\n\n```powershell\npowershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp\n```\n\n- Explicit path:\n\n```powershell\npowershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Path \"C:\\Temp\\screen.png\"\n```\n\n- Pixel region (x,y,w,h):\n\n```powershell\npowershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -Region 100,200,800,600\n```\n\n- Active window (ask the user to focus it first):\n\n```powershell\npowershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -ActiveWindow\n```\n\n- Specific window handle (only when provided):\n\n```powershell\npowershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -WindowHandle 123456\n```\n\n## Direct OS commands (fallbacks)\n\nUse these when you cannot run the helpers.\n\n### macOS\n\n- Full screen to a specific path:\n\n```bash\nscreencapture -x output\u002Fscreen.png\n```\n\n- Pixel region:\n\n```bash\nscreencapture -x -R100,200,800,600 output\u002Fregion.png\n```\n\n- Specific window id:\n\n```bash\nscreencapture -x -l12345 output\u002Fwindow.png\n```\n\n- Interactive selection or window pick:\n\n```bash\nscreencapture -x -i output\u002Finteractive.png\n```\n\n### Linux\n\n- Full screen:\n\n```bash\nscrot output\u002Fscreen.png\n```\n\n```bash\ngnome-screenshot -f output\u002Fscreen.png\n```\n\n```bash\nimport -window root output\u002Fscreen.png\n```\n\n- Pixel region:\n\n```bash\nscrot -a 100,200,800,600 output\u002Fregion.png\n```\n\n```bash\nimport -window root -crop 800x600+100+200 output\u002Fregion.png\n```\n\n- Active window:\n\n```bash\nscrot -u output\u002Fwindow.png\n```\n\n```bash\ngnome-screenshot -w -f output\u002Fwindow.png\n```\n\n## Error handling\n\n- On macOS, run `bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh` first to request Screen Recording in one place.\n- If you see \"screen capture checks are blocked in the sandbox\", \"could not create image from display\", or Swift `ModuleCache` permission errors in a sandboxed run, rerun the command with escalated permissions.\n- If macOS app\u002Fwindow capture returns no matches, run `--list-windows --app \"AppName\"` and retry with `--window-id`, and make sure the app is visible on screen.\n- If Linux region\u002Fwindow capture fails, check tool availability with `command -v scrot`, `command -v gnome-screenshot`, and `command -v import`.\n- If saving to the OS default location fails with permission errors in a sandbox, rerun the command with escalated permissions.\n- Always report the saved file path in the response.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,53,73,80,99,105,110,124,174,179,274,279,376,381,387,392,427,432,440,473,481,523,531,575,583,633,641,709,717,772,780,833,849,896,904,949,970,977,991,1083,1091,1097,1118,1124,1129,1161,1166,1185,1227,1233,1238,1254,1258,1266,1279,1286,1300,1308,1322,1329,1343,1351,1365,1373,1387,1393,1398,1404,1412,1436,1444,1472,1480,1508,1516,1544,1550,1558,1576,1599,1627,1634,1662,1698,1706,1729,1756,1762,1847],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"screenshot-capture",[44],{"type":45,"value":46},"text","Screenshot Capture",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"Follow these save-location rules every time:",{"type":39,"tag":54,"props":55,"children":56},"ol",{},[57,63,68],{"type":39,"tag":58,"props":59,"children":60},"li",{},[61],{"type":45,"value":62},"If the user specifies a path, save there.",{"type":39,"tag":58,"props":64,"children":65},{},[66],{"type":45,"value":67},"If the user asks for a screenshot without a path, save to the OS default screenshot location.",{"type":39,"tag":58,"props":69,"children":70},{},[71],{"type":45,"value":72},"If Codex needs a screenshot for its own inspection, save to the temp directory.",{"type":39,"tag":74,"props":75,"children":77},"h2",{"id":76},"tool-priority",[78],{"type":45,"value":79},"Tool priority",{"type":39,"tag":81,"props":82,"children":83},"ul",{},[84,89,94],{"type":39,"tag":58,"props":85,"children":86},{},[87],{"type":45,"value":88},"Prefer tool-specific screenshot capabilities when available (for example: a Figma MCP\u002Fskill for Figma files, or Playwright\u002Fagent-browser tools for browsers and Electron apps).",{"type":39,"tag":58,"props":90,"children":91},{},[92],{"type":45,"value":93},"Use this skill when explicitly asked, for whole-system desktop captures, or when a tool-specific capture cannot get what you need.",{"type":39,"tag":58,"props":95,"children":96},{},[97],{"type":45,"value":98},"Otherwise, treat this skill as the default for desktop apps without a better-integrated capture tool.",{"type":39,"tag":74,"props":100,"children":102},{"id":101},"macos-permission-preflight-reduce-repeated-prompts",[103],{"type":45,"value":104},"macOS permission preflight (reduce repeated prompts)",{"type":39,"tag":48,"props":106,"children":107},{},[108],{"type":45,"value":109},"On macOS, run the preflight helper once before window\u002Fapp capture. It checks\nScreen Recording permission, explains why it is needed, and requests it in one\nplace.",{"type":39,"tag":48,"props":111,"children":112},{},[113,115,122],{"type":45,"value":114},"The helpers route Swift's module cache to ",{"type":39,"tag":116,"props":117,"children":119},"code",{"className":118},[],[120],{"type":45,"value":121},"$TMPDIR\u002Fcodex-swift-module-cache",{"type":45,"value":123},"\nto avoid extra sandbox module-cache prompts.",{"type":39,"tag":125,"props":126,"children":131},"pre",{"className":127,"code":128,"language":129,"meta":130,"style":130},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh\n","bash","",[132],{"type":39,"tag":116,"props":133,"children":134},{"__ignoreMap":130},[135],{"type":39,"tag":136,"props":137,"children":140},"span",{"class":138,"line":139},"line",1,[141,146,152,158,164,169],{"type":39,"tag":136,"props":142,"children":144},{"style":143},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[145],{"type":45,"value":129},{"type":39,"tag":136,"props":147,"children":149},{"style":148},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[150],{"type":45,"value":151}," \u003C",{"type":39,"tag":136,"props":153,"children":155},{"style":154},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[156],{"type":45,"value":157},"path-to-skil",{"type":39,"tag":136,"props":159,"children":161},{"style":160},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[162],{"type":45,"value":163},"l",{"type":39,"tag":136,"props":165,"children":166},{"style":148},[167],{"type":45,"value":168},">",{"type":39,"tag":136,"props":170,"children":171},{"style":154},[172],{"type":45,"value":173},"\u002Fscripts\u002Fensure_macos_permissions.sh\n",{"type":39,"tag":48,"props":175,"children":176},{},[177],{"type":45,"value":178},"To avoid multiple sandbox approval prompts, combine preflight + capture in one\ncommand when possible:",{"type":39,"tag":125,"props":180,"children":182},{"className":127,"code":181,"language":129,"meta":130,"style":130},"bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\"\n",[183],{"type":39,"tag":116,"props":184,"children":185},{"__ignoreMap":130},[186,224],{"type":39,"tag":136,"props":187,"children":188},{"class":138,"line":139},[189,193,197,201,205,209,214,219],{"type":39,"tag":136,"props":190,"children":191},{"style":143},[192],{"type":45,"value":129},{"type":39,"tag":136,"props":194,"children":195},{"style":148},[196],{"type":45,"value":151},{"type":39,"tag":136,"props":198,"children":199},{"style":154},[200],{"type":45,"value":157},{"type":39,"tag":136,"props":202,"children":203},{"style":160},[204],{"type":45,"value":163},{"type":39,"tag":136,"props":206,"children":207},{"style":148},[208],{"type":45,"value":168},{"type":39,"tag":136,"props":210,"children":211},{"style":154},[212],{"type":45,"value":213},"\u002Fscripts\u002Fensure_macos_permissions.sh",{"type":39,"tag":136,"props":215,"children":216},{"style":148},[217],{"type":45,"value":218}," &&",{"type":39,"tag":136,"props":220,"children":221},{"style":160},[222],{"type":45,"value":223}," \\\n",{"type":39,"tag":136,"props":225,"children":227},{"class":138,"line":226},2,[228,233,237,241,245,249,254,259,264,269],{"type":39,"tag":136,"props":229,"children":230},{"style":143},[231],{"type":45,"value":232},"python3",{"type":39,"tag":136,"props":234,"children":235},{"style":148},[236],{"type":45,"value":151},{"type":39,"tag":136,"props":238,"children":239},{"style":154},[240],{"type":45,"value":157},{"type":39,"tag":136,"props":242,"children":243},{"style":160},[244],{"type":45,"value":163},{"type":39,"tag":136,"props":246,"children":247},{"style":148},[248],{"type":45,"value":168},{"type":39,"tag":136,"props":250,"children":251},{"style":154},[252],{"type":45,"value":253},"\u002Fscripts\u002Ftake_screenshot.py",{"type":39,"tag":136,"props":255,"children":256},{"style":154},[257],{"type":45,"value":258}," --app",{"type":39,"tag":136,"props":260,"children":261},{"style":148},[262],{"type":45,"value":263}," \"",{"type":39,"tag":136,"props":265,"children":266},{"style":154},[267],{"type":45,"value":268},"Codex",{"type":39,"tag":136,"props":270,"children":271},{"style":148},[272],{"type":45,"value":273},"\"\n",{"type":39,"tag":48,"props":275,"children":276},{},[277],{"type":45,"value":278},"For Codex inspection runs, keep the output in temp:",{"type":39,"tag":125,"props":280,"children":282},{"className":127,"code":281,"language":129,"meta":130,"style":130},"bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"\u003CApp>\" --mode temp\n",[283],{"type":39,"tag":116,"props":284,"children":285},{"__ignoreMap":130},[286,321],{"type":39,"tag":136,"props":287,"children":288},{"class":138,"line":139},[289,293,297,301,305,309,313,317],{"type":39,"tag":136,"props":290,"children":291},{"style":143},[292],{"type":45,"value":129},{"type":39,"tag":136,"props":294,"children":295},{"style":148},[296],{"type":45,"value":151},{"type":39,"tag":136,"props":298,"children":299},{"style":154},[300],{"type":45,"value":157},{"type":39,"tag":136,"props":302,"children":303},{"style":160},[304],{"type":45,"value":163},{"type":39,"tag":136,"props":306,"children":307},{"style":148},[308],{"type":45,"value":168},{"type":39,"tag":136,"props":310,"children":311},{"style":154},[312],{"type":45,"value":213},{"type":39,"tag":136,"props":314,"children":315},{"style":148},[316],{"type":45,"value":218},{"type":39,"tag":136,"props":318,"children":319},{"style":160},[320],{"type":45,"value":223},{"type":39,"tag":136,"props":322,"children":323},{"class":138,"line":226},[324,328,332,336,340,344,348,352,356,361,366,371],{"type":39,"tag":136,"props":325,"children":326},{"style":143},[327],{"type":45,"value":232},{"type":39,"tag":136,"props":329,"children":330},{"style":148},[331],{"type":45,"value":151},{"type":39,"tag":136,"props":333,"children":334},{"style":154},[335],{"type":45,"value":157},{"type":39,"tag":136,"props":337,"children":338},{"style":160},[339],{"type":45,"value":163},{"type":39,"tag":136,"props":341,"children":342},{"style":148},[343],{"type":45,"value":168},{"type":39,"tag":136,"props":345,"children":346},{"style":154},[347],{"type":45,"value":253},{"type":39,"tag":136,"props":349,"children":350},{"style":154},[351],{"type":45,"value":258},{"type":39,"tag":136,"props":353,"children":354},{"style":148},[355],{"type":45,"value":263},{"type":39,"tag":136,"props":357,"children":358},{"style":154},[359],{"type":45,"value":360},"\u003CApp>",{"type":39,"tag":136,"props":362,"children":363},{"style":148},[364],{"type":45,"value":365},"\"",{"type":39,"tag":136,"props":367,"children":368},{"style":154},[369],{"type":45,"value":370}," --mode",{"type":39,"tag":136,"props":372,"children":373},{"style":154},[374],{"type":45,"value":375}," temp\n",{"type":39,"tag":48,"props":377,"children":378},{},[379],{"type":45,"value":380},"Use the bundled scripts to avoid re-deriving OS-specific commands.",{"type":39,"tag":74,"props":382,"children":384},{"id":383},"macos-and-linux-python-helper",[385],{"type":45,"value":386},"macOS and Linux (Python helper)",{"type":39,"tag":48,"props":388,"children":389},{},[390],{"type":45,"value":391},"Run the helper from the repo root:",{"type":39,"tag":125,"props":393,"children":395},{"className":127,"code":394,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py\n",[396],{"type":39,"tag":116,"props":397,"children":398},{"__ignoreMap":130},[399],{"type":39,"tag":136,"props":400,"children":401},{"class":138,"line":139},[402,406,410,414,418,422],{"type":39,"tag":136,"props":403,"children":404},{"style":143},[405],{"type":45,"value":232},{"type":39,"tag":136,"props":407,"children":408},{"style":148},[409],{"type":45,"value":151},{"type":39,"tag":136,"props":411,"children":412},{"style":154},[413],{"type":45,"value":157},{"type":39,"tag":136,"props":415,"children":416},{"style":160},[417],{"type":45,"value":163},{"type":39,"tag":136,"props":419,"children":420},{"style":148},[421],{"type":45,"value":168},{"type":39,"tag":136,"props":423,"children":424},{"style":154},[425],{"type":45,"value":426},"\u002Fscripts\u002Ftake_screenshot.py\n",{"type":39,"tag":48,"props":428,"children":429},{},[430],{"type":45,"value":431},"Common patterns:",{"type":39,"tag":81,"props":433,"children":434},{},[435],{"type":39,"tag":58,"props":436,"children":437},{},[438],{"type":45,"value":439},"Default location (user asked for \"a screenshot\"):",{"type":39,"tag":125,"props":441,"children":442},{"className":127,"code":394,"language":129,"meta":130,"style":130},[443],{"type":39,"tag":116,"props":444,"children":445},{"__ignoreMap":130},[446],{"type":39,"tag":136,"props":447,"children":448},{"class":138,"line":139},[449,453,457,461,465,469],{"type":39,"tag":136,"props":450,"children":451},{"style":143},[452],{"type":45,"value":232},{"type":39,"tag":136,"props":454,"children":455},{"style":148},[456],{"type":45,"value":151},{"type":39,"tag":136,"props":458,"children":459},{"style":154},[460],{"type":45,"value":157},{"type":39,"tag":136,"props":462,"children":463},{"style":160},[464],{"type":45,"value":163},{"type":39,"tag":136,"props":466,"children":467},{"style":148},[468],{"type":45,"value":168},{"type":39,"tag":136,"props":470,"children":471},{"style":154},[472],{"type":45,"value":426},{"type":39,"tag":81,"props":474,"children":475},{},[476],{"type":39,"tag":58,"props":477,"children":478},{},[479],{"type":45,"value":480},"Temp location (Codex visual check):",{"type":39,"tag":125,"props":482,"children":484},{"className":127,"code":483,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp\n",[485],{"type":39,"tag":116,"props":486,"children":487},{"__ignoreMap":130},[488],{"type":39,"tag":136,"props":489,"children":490},{"class":138,"line":139},[491,495,499,503,507,511,515,519],{"type":39,"tag":136,"props":492,"children":493},{"style":143},[494],{"type":45,"value":232},{"type":39,"tag":136,"props":496,"children":497},{"style":148},[498],{"type":45,"value":151},{"type":39,"tag":136,"props":500,"children":501},{"style":154},[502],{"type":45,"value":157},{"type":39,"tag":136,"props":504,"children":505},{"style":160},[506],{"type":45,"value":163},{"type":39,"tag":136,"props":508,"children":509},{"style":148},[510],{"type":45,"value":168},{"type":39,"tag":136,"props":512,"children":513},{"style":154},[514],{"type":45,"value":253},{"type":39,"tag":136,"props":516,"children":517},{"style":154},[518],{"type":45,"value":370},{"type":39,"tag":136,"props":520,"children":521},{"style":154},[522],{"type":45,"value":375},{"type":39,"tag":81,"props":524,"children":525},{},[526],{"type":39,"tag":58,"props":527,"children":528},{},[529],{"type":45,"value":530},"Explicit location (user provided a path or filename):",{"type":39,"tag":125,"props":532,"children":534},{"className":127,"code":533,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --path output\u002Fscreen.png\n",[535],{"type":39,"tag":116,"props":536,"children":537},{"__ignoreMap":130},[538],{"type":39,"tag":136,"props":539,"children":540},{"class":138,"line":139},[541,545,549,553,557,561,565,570],{"type":39,"tag":136,"props":542,"children":543},{"style":143},[544],{"type":45,"value":232},{"type":39,"tag":136,"props":546,"children":547},{"style":148},[548],{"type":45,"value":151},{"type":39,"tag":136,"props":550,"children":551},{"style":154},[552],{"type":45,"value":157},{"type":39,"tag":136,"props":554,"children":555},{"style":160},[556],{"type":45,"value":163},{"type":39,"tag":136,"props":558,"children":559},{"style":148},[560],{"type":45,"value":168},{"type":39,"tag":136,"props":562,"children":563},{"style":154},[564],{"type":45,"value":253},{"type":39,"tag":136,"props":566,"children":567},{"style":154},[568],{"type":45,"value":569}," --path",{"type":39,"tag":136,"props":571,"children":572},{"style":154},[573],{"type":45,"value":574}," output\u002Fscreen.png\n",{"type":39,"tag":81,"props":576,"children":577},{},[578],{"type":39,"tag":58,"props":579,"children":580},{},[581],{"type":45,"value":582},"App\u002Fwindow capture by app name (macOS only; substring match is OK; captures all matching windows):",{"type":39,"tag":125,"props":584,"children":586},{"className":127,"code":585,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\"\n",[587],{"type":39,"tag":116,"props":588,"children":589},{"__ignoreMap":130},[590],{"type":39,"tag":136,"props":591,"children":592},{"class":138,"line":139},[593,597,601,605,609,613,617,621,625,629],{"type":39,"tag":136,"props":594,"children":595},{"style":143},[596],{"type":45,"value":232},{"type":39,"tag":136,"props":598,"children":599},{"style":148},[600],{"type":45,"value":151},{"type":39,"tag":136,"props":602,"children":603},{"style":154},[604],{"type":45,"value":157},{"type":39,"tag":136,"props":606,"children":607},{"style":160},[608],{"type":45,"value":163},{"type":39,"tag":136,"props":610,"children":611},{"style":148},[612],{"type":45,"value":168},{"type":39,"tag":136,"props":614,"children":615},{"style":154},[616],{"type":45,"value":253},{"type":39,"tag":136,"props":618,"children":619},{"style":154},[620],{"type":45,"value":258},{"type":39,"tag":136,"props":622,"children":623},{"style":148},[624],{"type":45,"value":263},{"type":39,"tag":136,"props":626,"children":627},{"style":154},[628],{"type":45,"value":268},{"type":39,"tag":136,"props":630,"children":631},{"style":148},[632],{"type":45,"value":273},{"type":39,"tag":81,"props":634,"children":635},{},[636],{"type":39,"tag":58,"props":637,"children":638},{},[639],{"type":45,"value":640},"Specific window title within an app (macOS only):",{"type":39,"tag":125,"props":642,"children":644},{"className":127,"code":643,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\" --window-name \"Settings\"\n",[645],{"type":39,"tag":116,"props":646,"children":647},{"__ignoreMap":130},[648],{"type":39,"tag":136,"props":649,"children":650},{"class":138,"line":139},[651,655,659,663,667,671,675,679,683,687,691,696,700,705],{"type":39,"tag":136,"props":652,"children":653},{"style":143},[654],{"type":45,"value":232},{"type":39,"tag":136,"props":656,"children":657},{"style":148},[658],{"type":45,"value":151},{"type":39,"tag":136,"props":660,"children":661},{"style":154},[662],{"type":45,"value":157},{"type":39,"tag":136,"props":664,"children":665},{"style":160},[666],{"type":45,"value":163},{"type":39,"tag":136,"props":668,"children":669},{"style":148},[670],{"type":45,"value":168},{"type":39,"tag":136,"props":672,"children":673},{"style":154},[674],{"type":45,"value":253},{"type":39,"tag":136,"props":676,"children":677},{"style":154},[678],{"type":45,"value":258},{"type":39,"tag":136,"props":680,"children":681},{"style":148},[682],{"type":45,"value":263},{"type":39,"tag":136,"props":684,"children":685},{"style":154},[686],{"type":45,"value":268},{"type":39,"tag":136,"props":688,"children":689},{"style":148},[690],{"type":45,"value":365},{"type":39,"tag":136,"props":692,"children":693},{"style":154},[694],{"type":45,"value":695}," --window-name",{"type":39,"tag":136,"props":697,"children":698},{"style":148},[699],{"type":45,"value":263},{"type":39,"tag":136,"props":701,"children":702},{"style":154},[703],{"type":45,"value":704},"Settings",{"type":39,"tag":136,"props":706,"children":707},{"style":148},[708],{"type":45,"value":273},{"type":39,"tag":81,"props":710,"children":711},{},[712],{"type":39,"tag":58,"props":713,"children":714},{},[715],{"type":45,"value":716},"List matching window ids before capturing (macOS only):",{"type":39,"tag":125,"props":718,"children":720},{"className":127,"code":719,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --list-windows --app \"Codex\"\n",[721],{"type":39,"tag":116,"props":722,"children":723},{"__ignoreMap":130},[724],{"type":39,"tag":136,"props":725,"children":726},{"class":138,"line":139},[727,731,735,739,743,747,751,756,760,764,768],{"type":39,"tag":136,"props":728,"children":729},{"style":143},[730],{"type":45,"value":232},{"type":39,"tag":136,"props":732,"children":733},{"style":148},[734],{"type":45,"value":151},{"type":39,"tag":136,"props":736,"children":737},{"style":154},[738],{"type":45,"value":157},{"type":39,"tag":136,"props":740,"children":741},{"style":160},[742],{"type":45,"value":163},{"type":39,"tag":136,"props":744,"children":745},{"style":148},[746],{"type":45,"value":168},{"type":39,"tag":136,"props":748,"children":749},{"style":154},[750],{"type":45,"value":253},{"type":39,"tag":136,"props":752,"children":753},{"style":154},[754],{"type":45,"value":755}," --list-windows",{"type":39,"tag":136,"props":757,"children":758},{"style":154},[759],{"type":45,"value":258},{"type":39,"tag":136,"props":761,"children":762},{"style":148},[763],{"type":45,"value":263},{"type":39,"tag":136,"props":765,"children":766},{"style":154},[767],{"type":45,"value":268},{"type":39,"tag":136,"props":769,"children":770},{"style":148},[771],{"type":45,"value":273},{"type":39,"tag":81,"props":773,"children":774},{},[775],{"type":39,"tag":58,"props":776,"children":777},{},[778],{"type":45,"value":779},"Pixel region (x,y,w,h):",{"type":39,"tag":125,"props":781,"children":783},{"className":127,"code":782,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp --region 100,200,800,600\n",[784],{"type":39,"tag":116,"props":785,"children":786},{"__ignoreMap":130},[787],{"type":39,"tag":136,"props":788,"children":789},{"class":138,"line":139},[790,794,798,802,806,810,814,818,823,828],{"type":39,"tag":136,"props":791,"children":792},{"style":143},[793],{"type":45,"value":232},{"type":39,"tag":136,"props":795,"children":796},{"style":148},[797],{"type":45,"value":151},{"type":39,"tag":136,"props":799,"children":800},{"style":154},[801],{"type":45,"value":157},{"type":39,"tag":136,"props":803,"children":804},{"style":160},[805],{"type":45,"value":163},{"type":39,"tag":136,"props":807,"children":808},{"style":148},[809],{"type":45,"value":168},{"type":39,"tag":136,"props":811,"children":812},{"style":154},[813],{"type":45,"value":253},{"type":39,"tag":136,"props":815,"children":816},{"style":154},[817],{"type":45,"value":370},{"type":39,"tag":136,"props":819,"children":820},{"style":154},[821],{"type":45,"value":822}," temp",{"type":39,"tag":136,"props":824,"children":825},{"style":154},[826],{"type":45,"value":827}," --region",{"type":39,"tag":136,"props":829,"children":830},{"style":154},[831],{"type":45,"value":832}," 100,200,800,600\n",{"type":39,"tag":81,"props":834,"children":835},{},[836],{"type":39,"tag":58,"props":837,"children":838},{},[839,841,847],{"type":45,"value":840},"Focused\u002Factive window (captures only the frontmost window; use ",{"type":39,"tag":116,"props":842,"children":844},{"className":843},[],[845],{"type":45,"value":846},"--app",{"type":45,"value":848}," to capture all windows):",{"type":39,"tag":125,"props":850,"children":852},{"className":127,"code":851,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp --active-window\n",[853],{"type":39,"tag":116,"props":854,"children":855},{"__ignoreMap":130},[856],{"type":39,"tag":136,"props":857,"children":858},{"class":138,"line":139},[859,863,867,871,875,879,883,887,891],{"type":39,"tag":136,"props":860,"children":861},{"style":143},[862],{"type":45,"value":232},{"type":39,"tag":136,"props":864,"children":865},{"style":148},[866],{"type":45,"value":151},{"type":39,"tag":136,"props":868,"children":869},{"style":154},[870],{"type":45,"value":157},{"type":39,"tag":136,"props":872,"children":873},{"style":160},[874],{"type":45,"value":163},{"type":39,"tag":136,"props":876,"children":877},{"style":148},[878],{"type":45,"value":168},{"type":39,"tag":136,"props":880,"children":881},{"style":154},[882],{"type":45,"value":253},{"type":39,"tag":136,"props":884,"children":885},{"style":154},[886],{"type":45,"value":370},{"type":39,"tag":136,"props":888,"children":889},{"style":154},[890],{"type":45,"value":822},{"type":39,"tag":136,"props":892,"children":893},{"style":154},[894],{"type":45,"value":895}," --active-window\n",{"type":39,"tag":81,"props":897,"children":898},{},[899],{"type":39,"tag":58,"props":900,"children":901},{},[902],{"type":45,"value":903},"Specific window id (use --list-windows on macOS to discover ids):",{"type":39,"tag":125,"props":905,"children":907},{"className":127,"code":906,"language":129,"meta":130,"style":130},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --window-id 12345\n",[908],{"type":39,"tag":116,"props":909,"children":910},{"__ignoreMap":130},[911],{"type":39,"tag":136,"props":912,"children":913},{"class":138,"line":139},[914,918,922,926,930,934,938,943],{"type":39,"tag":136,"props":915,"children":916},{"style":143},[917],{"type":45,"value":232},{"type":39,"tag":136,"props":919,"children":920},{"style":148},[921],{"type":45,"value":151},{"type":39,"tag":136,"props":923,"children":924},{"style":154},[925],{"type":45,"value":157},{"type":39,"tag":136,"props":927,"children":928},{"style":160},[929],{"type":45,"value":163},{"type":39,"tag":136,"props":931,"children":932},{"style":148},[933],{"type":45,"value":168},{"type":39,"tag":136,"props":935,"children":936},{"style":154},[937],{"type":45,"value":253},{"type":39,"tag":136,"props":939,"children":940},{"style":154},[941],{"type":45,"value":942}," --window-id",{"type":39,"tag":136,"props":944,"children":946},{"style":945},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[947],{"type":45,"value":948}," 12345\n",{"type":39,"tag":48,"props":950,"children":951},{},[952,954,960,962,968],{"type":45,"value":953},"The script prints one path per capture. When multiple windows or displays match, it prints multiple paths (one per line) and adds suffixes like ",{"type":39,"tag":116,"props":955,"children":957},{"className":956},[],[958],{"type":45,"value":959},"-w\u003CwindowId>",{"type":45,"value":961}," or ",{"type":39,"tag":116,"props":963,"children":965},{"className":964},[],[966],{"type":45,"value":967},"-d\u003Cdisplay>",{"type":45,"value":969},". View each path sequentially with the image viewer tool, and only manipulate images if needed or requested.",{"type":39,"tag":971,"props":972,"children":974},"h3",{"id":973},"workflow-examples",[975],{"type":45,"value":976},"Workflow examples",{"type":39,"tag":81,"props":978,"children":979},{},[980],{"type":39,"tag":58,"props":981,"children":982},{},[983,985],{"type":45,"value":984},"\"Take a look at ",{"type":39,"tag":986,"props":987,"children":988},"app",{},[989],{"type":45,"value":990}," and tell me what you see\": capture to temp, then view each printed path in order.",{"type":39,"tag":125,"props":992,"children":993},{"className":127,"code":281,"language":129,"meta":130,"style":130},[994],{"type":39,"tag":116,"props":995,"children":996},{"__ignoreMap":130},[997,1032],{"type":39,"tag":136,"props":998,"children":999},{"class":138,"line":139},[1000,1004,1008,1012,1016,1020,1024,1028],{"type":39,"tag":136,"props":1001,"children":1002},{"style":143},[1003],{"type":45,"value":129},{"type":39,"tag":136,"props":1005,"children":1006},{"style":148},[1007],{"type":45,"value":151},{"type":39,"tag":136,"props":1009,"children":1010},{"style":154},[1011],{"type":45,"value":157},{"type":39,"tag":136,"props":1013,"children":1014},{"style":160},[1015],{"type":45,"value":163},{"type":39,"tag":136,"props":1017,"children":1018},{"style":148},[1019],{"type":45,"value":168},{"type":39,"tag":136,"props":1021,"children":1022},{"style":154},[1023],{"type":45,"value":213},{"type":39,"tag":136,"props":1025,"children":1026},{"style":148},[1027],{"type":45,"value":218},{"type":39,"tag":136,"props":1029,"children":1030},{"style":160},[1031],{"type":45,"value":223},{"type":39,"tag":136,"props":1033,"children":1034},{"class":138,"line":226},[1035,1039,1043,1047,1051,1055,1059,1063,1067,1071,1075,1079],{"type":39,"tag":136,"props":1036,"children":1037},{"style":143},[1038],{"type":45,"value":232},{"type":39,"tag":136,"props":1040,"children":1041},{"style":148},[1042],{"type":45,"value":151},{"type":39,"tag":136,"props":1044,"children":1045},{"style":154},[1046],{"type":45,"value":157},{"type":39,"tag":136,"props":1048,"children":1049},{"style":160},[1050],{"type":45,"value":163},{"type":39,"tag":136,"props":1052,"children":1053},{"style":148},[1054],{"type":45,"value":168},{"type":39,"tag":136,"props":1056,"children":1057},{"style":154},[1058],{"type":45,"value":253},{"type":39,"tag":136,"props":1060,"children":1061},{"style":154},[1062],{"type":45,"value":258},{"type":39,"tag":136,"props":1064,"children":1065},{"style":148},[1066],{"type":45,"value":263},{"type":39,"tag":136,"props":1068,"children":1069},{"style":154},[1070],{"type":45,"value":360},{"type":39,"tag":136,"props":1072,"children":1073},{"style":148},[1074],{"type":45,"value":365},{"type":39,"tag":136,"props":1076,"children":1077},{"style":154},[1078],{"type":45,"value":370},{"type":39,"tag":136,"props":1080,"children":1081},{"style":154},[1082],{"type":45,"value":375},{"type":39,"tag":81,"props":1084,"children":1085},{},[1086],{"type":39,"tag":58,"props":1087,"children":1088},{},[1089],{"type":45,"value":1090},"\"The design from Figma is not matching what is implemented\": use a Figma MCP\u002Fskill to capture the design first, then capture the running app with this skill (typically to temp) and compare the raw screenshots before any manipulation.",{"type":39,"tag":971,"props":1092,"children":1094},{"id":1093},"multi-display-behavior",[1095],{"type":45,"value":1096},"Multi-display behavior",{"type":39,"tag":81,"props":1098,"children":1099},{},[1100,1105],{"type":39,"tag":58,"props":1101,"children":1102},{},[1103],{"type":45,"value":1104},"On macOS, full-screen captures save one file per display when multiple monitors are connected.",{"type":39,"tag":58,"props":1106,"children":1107},{},[1108,1110,1116],{"type":45,"value":1109},"On Linux and Windows, full-screen captures use the virtual desktop (all monitors in one image); use ",{"type":39,"tag":116,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":45,"value":1115},"--region",{"type":45,"value":1117}," to isolate a single display when needed.",{"type":39,"tag":971,"props":1119,"children":1121},{"id":1120},"linux-prerequisites-and-selection-logic",[1122],{"type":45,"value":1123},"Linux prerequisites and selection logic",{"type":39,"tag":48,"props":1125,"children":1126},{},[1127],{"type":45,"value":1128},"The helper automatically selects the first available tool:",{"type":39,"tag":54,"props":1130,"children":1131},{},[1132,1141,1150],{"type":39,"tag":58,"props":1133,"children":1134},{},[1135],{"type":39,"tag":116,"props":1136,"children":1138},{"className":1137},[],[1139],{"type":45,"value":1140},"scrot",{"type":39,"tag":58,"props":1142,"children":1143},{},[1144],{"type":39,"tag":116,"props":1145,"children":1147},{"className":1146},[],[1148],{"type":45,"value":1149},"gnome-screenshot",{"type":39,"tag":58,"props":1151,"children":1152},{},[1153,1155],{"type":45,"value":1154},"ImageMagick ",{"type":39,"tag":116,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":45,"value":1160},"import",{"type":39,"tag":48,"props":1162,"children":1163},{},[1164],{"type":45,"value":1165},"If none are available, ask the user to install one of them and retry.",{"type":39,"tag":48,"props":1167,"children":1168},{},[1169,1171,1176,1178,1183],{"type":45,"value":1170},"Coordinate regions require ",{"type":39,"tag":116,"props":1172,"children":1174},{"className":1173},[],[1175],{"type":45,"value":1140},{"type":45,"value":1177}," or ImageMagick ",{"type":39,"tag":116,"props":1179,"children":1181},{"className":1180},[],[1182],{"type":45,"value":1160},{"type":45,"value":1184},".",{"type":39,"tag":48,"props":1186,"children":1187},{},[1188,1193,1195,1201,1203,1209,1211,1217,1219,1225],{"type":39,"tag":116,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":45,"value":846},{"type":45,"value":1194},", ",{"type":39,"tag":116,"props":1196,"children":1198},{"className":1197},[],[1199],{"type":45,"value":1200},"--window-name",{"type":45,"value":1202},", and ",{"type":39,"tag":116,"props":1204,"children":1206},{"className":1205},[],[1207],{"type":45,"value":1208},"--list-windows",{"type":45,"value":1210}," are macOS-only. On Linux, use\n",{"type":39,"tag":116,"props":1212,"children":1214},{"className":1213},[],[1215],{"type":45,"value":1216},"--active-window",{"type":45,"value":1218}," or provide ",{"type":39,"tag":116,"props":1220,"children":1222},{"className":1221},[],[1223],{"type":45,"value":1224},"--window-id",{"type":45,"value":1226}," when available.",{"type":39,"tag":74,"props":1228,"children":1230},{"id":1229},"windows-powershell-helper",[1231],{"type":45,"value":1232},"Windows (PowerShell helper)",{"type":39,"tag":48,"props":1234,"children":1235},{},[1236],{"type":45,"value":1237},"Run the PowerShell helper:",{"type":39,"tag":125,"props":1239,"children":1243},{"className":1240,"code":1241,"language":1242,"meta":130,"style":130},"language-powershell shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1\n","powershell",[1244],{"type":39,"tag":116,"props":1245,"children":1246},{"__ignoreMap":130},[1247],{"type":39,"tag":136,"props":1248,"children":1249},{"class":138,"line":139},[1250],{"type":39,"tag":136,"props":1251,"children":1252},{},[1253],{"type":45,"value":1241},{"type":39,"tag":48,"props":1255,"children":1256},{},[1257],{"type":45,"value":431},{"type":39,"tag":81,"props":1259,"children":1260},{},[1261],{"type":39,"tag":58,"props":1262,"children":1263},{},[1264],{"type":45,"value":1265},"Default location:",{"type":39,"tag":125,"props":1267,"children":1268},{"className":1240,"code":1241,"language":1242,"meta":130,"style":130},[1269],{"type":39,"tag":116,"props":1270,"children":1271},{"__ignoreMap":130},[1272],{"type":39,"tag":136,"props":1273,"children":1274},{"class":138,"line":139},[1275],{"type":39,"tag":136,"props":1276,"children":1277},{},[1278],{"type":45,"value":1241},{"type":39,"tag":81,"props":1280,"children":1281},{},[1282],{"type":39,"tag":58,"props":1283,"children":1284},{},[1285],{"type":45,"value":480},{"type":39,"tag":125,"props":1287,"children":1289},{"className":1240,"code":1288,"language":1242,"meta":130,"style":130},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp\n",[1290],{"type":39,"tag":116,"props":1291,"children":1292},{"__ignoreMap":130},[1293],{"type":39,"tag":136,"props":1294,"children":1295},{"class":138,"line":139},[1296],{"type":39,"tag":136,"props":1297,"children":1298},{},[1299],{"type":45,"value":1288},{"type":39,"tag":81,"props":1301,"children":1302},{},[1303],{"type":39,"tag":58,"props":1304,"children":1305},{},[1306],{"type":45,"value":1307},"Explicit path:",{"type":39,"tag":125,"props":1309,"children":1311},{"className":1240,"code":1310,"language":1242,"meta":130,"style":130},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Path \"C:\\Temp\\screen.png\"\n",[1312],{"type":39,"tag":116,"props":1313,"children":1314},{"__ignoreMap":130},[1315],{"type":39,"tag":136,"props":1316,"children":1317},{"class":138,"line":139},[1318],{"type":39,"tag":136,"props":1319,"children":1320},{},[1321],{"type":45,"value":1310},{"type":39,"tag":81,"props":1323,"children":1324},{},[1325],{"type":39,"tag":58,"props":1326,"children":1327},{},[1328],{"type":45,"value":779},{"type":39,"tag":125,"props":1330,"children":1332},{"className":1240,"code":1331,"language":1242,"meta":130,"style":130},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -Region 100,200,800,600\n",[1333],{"type":39,"tag":116,"props":1334,"children":1335},{"__ignoreMap":130},[1336],{"type":39,"tag":136,"props":1337,"children":1338},{"class":138,"line":139},[1339],{"type":39,"tag":136,"props":1340,"children":1341},{},[1342],{"type":45,"value":1331},{"type":39,"tag":81,"props":1344,"children":1345},{},[1346],{"type":39,"tag":58,"props":1347,"children":1348},{},[1349],{"type":45,"value":1350},"Active window (ask the user to focus it first):",{"type":39,"tag":125,"props":1352,"children":1354},{"className":1240,"code":1353,"language":1242,"meta":130,"style":130},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -ActiveWindow\n",[1355],{"type":39,"tag":116,"props":1356,"children":1357},{"__ignoreMap":130},[1358],{"type":39,"tag":136,"props":1359,"children":1360},{"class":138,"line":139},[1361],{"type":39,"tag":136,"props":1362,"children":1363},{},[1364],{"type":45,"value":1353},{"type":39,"tag":81,"props":1366,"children":1367},{},[1368],{"type":39,"tag":58,"props":1369,"children":1370},{},[1371],{"type":45,"value":1372},"Specific window handle (only when provided):",{"type":39,"tag":125,"props":1374,"children":1376},{"className":1240,"code":1375,"language":1242,"meta":130,"style":130},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -WindowHandle 123456\n",[1377],{"type":39,"tag":116,"props":1378,"children":1379},{"__ignoreMap":130},[1380],{"type":39,"tag":136,"props":1381,"children":1382},{"class":138,"line":139},[1383],{"type":39,"tag":136,"props":1384,"children":1385},{},[1386],{"type":45,"value":1375},{"type":39,"tag":74,"props":1388,"children":1390},{"id":1389},"direct-os-commands-fallbacks",[1391],{"type":45,"value":1392},"Direct OS commands (fallbacks)",{"type":39,"tag":48,"props":1394,"children":1395},{},[1396],{"type":45,"value":1397},"Use these when you cannot run the helpers.",{"type":39,"tag":971,"props":1399,"children":1401},{"id":1400},"macos",[1402],{"type":45,"value":1403},"macOS",{"type":39,"tag":81,"props":1405,"children":1406},{},[1407],{"type":39,"tag":58,"props":1408,"children":1409},{},[1410],{"type":45,"value":1411},"Full screen to a specific path:",{"type":39,"tag":125,"props":1413,"children":1415},{"className":127,"code":1414,"language":129,"meta":130,"style":130},"screencapture -x output\u002Fscreen.png\n",[1416],{"type":39,"tag":116,"props":1417,"children":1418},{"__ignoreMap":130},[1419],{"type":39,"tag":136,"props":1420,"children":1421},{"class":138,"line":139},[1422,1427,1432],{"type":39,"tag":136,"props":1423,"children":1424},{"style":143},[1425],{"type":45,"value":1426},"screencapture",{"type":39,"tag":136,"props":1428,"children":1429},{"style":154},[1430],{"type":45,"value":1431}," -x",{"type":39,"tag":136,"props":1433,"children":1434},{"style":154},[1435],{"type":45,"value":574},{"type":39,"tag":81,"props":1437,"children":1438},{},[1439],{"type":39,"tag":58,"props":1440,"children":1441},{},[1442],{"type":45,"value":1443},"Pixel region:",{"type":39,"tag":125,"props":1445,"children":1447},{"className":127,"code":1446,"language":129,"meta":130,"style":130},"screencapture -x -R100,200,800,600 output\u002Fregion.png\n",[1448],{"type":39,"tag":116,"props":1449,"children":1450},{"__ignoreMap":130},[1451],{"type":39,"tag":136,"props":1452,"children":1453},{"class":138,"line":139},[1454,1458,1462,1467],{"type":39,"tag":136,"props":1455,"children":1456},{"style":143},[1457],{"type":45,"value":1426},{"type":39,"tag":136,"props":1459,"children":1460},{"style":154},[1461],{"type":45,"value":1431},{"type":39,"tag":136,"props":1463,"children":1464},{"style":154},[1465],{"type":45,"value":1466}," -R100,200,800,600",{"type":39,"tag":136,"props":1468,"children":1469},{"style":154},[1470],{"type":45,"value":1471}," output\u002Fregion.png\n",{"type":39,"tag":81,"props":1473,"children":1474},{},[1475],{"type":39,"tag":58,"props":1476,"children":1477},{},[1478],{"type":45,"value":1479},"Specific window id:",{"type":39,"tag":125,"props":1481,"children":1483},{"className":127,"code":1482,"language":129,"meta":130,"style":130},"screencapture -x -l12345 output\u002Fwindow.png\n",[1484],{"type":39,"tag":116,"props":1485,"children":1486},{"__ignoreMap":130},[1487],{"type":39,"tag":136,"props":1488,"children":1489},{"class":138,"line":139},[1490,1494,1498,1503],{"type":39,"tag":136,"props":1491,"children":1492},{"style":143},[1493],{"type":45,"value":1426},{"type":39,"tag":136,"props":1495,"children":1496},{"style":154},[1497],{"type":45,"value":1431},{"type":39,"tag":136,"props":1499,"children":1500},{"style":154},[1501],{"type":45,"value":1502}," -l12345",{"type":39,"tag":136,"props":1504,"children":1505},{"style":154},[1506],{"type":45,"value":1507}," output\u002Fwindow.png\n",{"type":39,"tag":81,"props":1509,"children":1510},{},[1511],{"type":39,"tag":58,"props":1512,"children":1513},{},[1514],{"type":45,"value":1515},"Interactive selection or window pick:",{"type":39,"tag":125,"props":1517,"children":1519},{"className":127,"code":1518,"language":129,"meta":130,"style":130},"screencapture -x -i output\u002Finteractive.png\n",[1520],{"type":39,"tag":116,"props":1521,"children":1522},{"__ignoreMap":130},[1523],{"type":39,"tag":136,"props":1524,"children":1525},{"class":138,"line":139},[1526,1530,1534,1539],{"type":39,"tag":136,"props":1527,"children":1528},{"style":143},[1529],{"type":45,"value":1426},{"type":39,"tag":136,"props":1531,"children":1532},{"style":154},[1533],{"type":45,"value":1431},{"type":39,"tag":136,"props":1535,"children":1536},{"style":154},[1537],{"type":45,"value":1538}," -i",{"type":39,"tag":136,"props":1540,"children":1541},{"style":154},[1542],{"type":45,"value":1543}," output\u002Finteractive.png\n",{"type":39,"tag":971,"props":1545,"children":1547},{"id":1546},"linux",[1548],{"type":45,"value":1549},"Linux",{"type":39,"tag":81,"props":1551,"children":1552},{},[1553],{"type":39,"tag":58,"props":1554,"children":1555},{},[1556],{"type":45,"value":1557},"Full screen:",{"type":39,"tag":125,"props":1559,"children":1561},{"className":127,"code":1560,"language":129,"meta":130,"style":130},"scrot output\u002Fscreen.png\n",[1562],{"type":39,"tag":116,"props":1563,"children":1564},{"__ignoreMap":130},[1565],{"type":39,"tag":136,"props":1566,"children":1567},{"class":138,"line":139},[1568,1572],{"type":39,"tag":136,"props":1569,"children":1570},{"style":143},[1571],{"type":45,"value":1140},{"type":39,"tag":136,"props":1573,"children":1574},{"style":154},[1575],{"type":45,"value":574},{"type":39,"tag":125,"props":1577,"children":1579},{"className":127,"code":1578,"language":129,"meta":130,"style":130},"gnome-screenshot -f output\u002Fscreen.png\n",[1580],{"type":39,"tag":116,"props":1581,"children":1582},{"__ignoreMap":130},[1583],{"type":39,"tag":136,"props":1584,"children":1585},{"class":138,"line":139},[1586,1590,1595],{"type":39,"tag":136,"props":1587,"children":1588},{"style":143},[1589],{"type":45,"value":1149},{"type":39,"tag":136,"props":1591,"children":1592},{"style":154},[1593],{"type":45,"value":1594}," -f",{"type":39,"tag":136,"props":1596,"children":1597},{"style":154},[1598],{"type":45,"value":574},{"type":39,"tag":125,"props":1600,"children":1602},{"className":127,"code":1601,"language":129,"meta":130,"style":130},"import -window root output\u002Fscreen.png\n",[1603],{"type":39,"tag":116,"props":1604,"children":1605},{"__ignoreMap":130},[1606],{"type":39,"tag":136,"props":1607,"children":1608},{"class":138,"line":139},[1609,1613,1618,1623],{"type":39,"tag":136,"props":1610,"children":1611},{"style":143},[1612],{"type":45,"value":1160},{"type":39,"tag":136,"props":1614,"children":1615},{"style":154},[1616],{"type":45,"value":1617}," -window",{"type":39,"tag":136,"props":1619,"children":1620},{"style":154},[1621],{"type":45,"value":1622}," root",{"type":39,"tag":136,"props":1624,"children":1625},{"style":154},[1626],{"type":45,"value":574},{"type":39,"tag":81,"props":1628,"children":1629},{},[1630],{"type":39,"tag":58,"props":1631,"children":1632},{},[1633],{"type":45,"value":1443},{"type":39,"tag":125,"props":1635,"children":1637},{"className":127,"code":1636,"language":129,"meta":130,"style":130},"scrot -a 100,200,800,600 output\u002Fregion.png\n",[1638],{"type":39,"tag":116,"props":1639,"children":1640},{"__ignoreMap":130},[1641],{"type":39,"tag":136,"props":1642,"children":1643},{"class":138,"line":139},[1644,1648,1653,1658],{"type":39,"tag":136,"props":1645,"children":1646},{"style":143},[1647],{"type":45,"value":1140},{"type":39,"tag":136,"props":1649,"children":1650},{"style":154},[1651],{"type":45,"value":1652}," -a",{"type":39,"tag":136,"props":1654,"children":1655},{"style":154},[1656],{"type":45,"value":1657}," 100,200,800,600",{"type":39,"tag":136,"props":1659,"children":1660},{"style":154},[1661],{"type":45,"value":1471},{"type":39,"tag":125,"props":1663,"children":1665},{"className":127,"code":1664,"language":129,"meta":130,"style":130},"import -window root -crop 800x600+100+200 output\u002Fregion.png\n",[1666],{"type":39,"tag":116,"props":1667,"children":1668},{"__ignoreMap":130},[1669],{"type":39,"tag":136,"props":1670,"children":1671},{"class":138,"line":139},[1672,1676,1680,1684,1689,1694],{"type":39,"tag":136,"props":1673,"children":1674},{"style":143},[1675],{"type":45,"value":1160},{"type":39,"tag":136,"props":1677,"children":1678},{"style":154},[1679],{"type":45,"value":1617},{"type":39,"tag":136,"props":1681,"children":1682},{"style":154},[1683],{"type":45,"value":1622},{"type":39,"tag":136,"props":1685,"children":1686},{"style":154},[1687],{"type":45,"value":1688}," -crop",{"type":39,"tag":136,"props":1690,"children":1691},{"style":154},[1692],{"type":45,"value":1693}," 800x600+100+200",{"type":39,"tag":136,"props":1695,"children":1696},{"style":154},[1697],{"type":45,"value":1471},{"type":39,"tag":81,"props":1699,"children":1700},{},[1701],{"type":39,"tag":58,"props":1702,"children":1703},{},[1704],{"type":45,"value":1705},"Active window:",{"type":39,"tag":125,"props":1707,"children":1709},{"className":127,"code":1708,"language":129,"meta":130,"style":130},"scrot -u output\u002Fwindow.png\n",[1710],{"type":39,"tag":116,"props":1711,"children":1712},{"__ignoreMap":130},[1713],{"type":39,"tag":136,"props":1714,"children":1715},{"class":138,"line":139},[1716,1720,1725],{"type":39,"tag":136,"props":1717,"children":1718},{"style":143},[1719],{"type":45,"value":1140},{"type":39,"tag":136,"props":1721,"children":1722},{"style":154},[1723],{"type":45,"value":1724}," -u",{"type":39,"tag":136,"props":1726,"children":1727},{"style":154},[1728],{"type":45,"value":1507},{"type":39,"tag":125,"props":1730,"children":1732},{"className":127,"code":1731,"language":129,"meta":130,"style":130},"gnome-screenshot -w -f output\u002Fwindow.png\n",[1733],{"type":39,"tag":116,"props":1734,"children":1735},{"__ignoreMap":130},[1736],{"type":39,"tag":136,"props":1737,"children":1738},{"class":138,"line":139},[1739,1743,1748,1752],{"type":39,"tag":136,"props":1740,"children":1741},{"style":143},[1742],{"type":45,"value":1149},{"type":39,"tag":136,"props":1744,"children":1745},{"style":154},[1746],{"type":45,"value":1747}," -w",{"type":39,"tag":136,"props":1749,"children":1750},{"style":154},[1751],{"type":45,"value":1594},{"type":39,"tag":136,"props":1753,"children":1754},{"style":154},[1755],{"type":45,"value":1507},{"type":39,"tag":74,"props":1757,"children":1759},{"id":1758},"error-handling",[1760],{"type":45,"value":1761},"Error handling",{"type":39,"tag":81,"props":1763,"children":1764},{},[1765,1778,1791,1811,1837,1842],{"type":39,"tag":58,"props":1766,"children":1767},{},[1768,1770,1776],{"type":45,"value":1769},"On macOS, run ",{"type":39,"tag":116,"props":1771,"children":1773},{"className":1772},[],[1774],{"type":45,"value":1775},"bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh",{"type":45,"value":1777}," first to request Screen Recording in one place.",{"type":39,"tag":58,"props":1779,"children":1780},{},[1781,1783,1789],{"type":45,"value":1782},"If you see \"screen capture checks are blocked in the sandbox\", \"could not create image from display\", or Swift ",{"type":39,"tag":116,"props":1784,"children":1786},{"className":1785},[],[1787],{"type":45,"value":1788},"ModuleCache",{"type":45,"value":1790}," permission errors in a sandboxed run, rerun the command with escalated permissions.",{"type":39,"tag":58,"props":1792,"children":1793},{},[1794,1796,1802,1804,1809],{"type":45,"value":1795},"If macOS app\u002Fwindow capture returns no matches, run ",{"type":39,"tag":116,"props":1797,"children":1799},{"className":1798},[],[1800],{"type":45,"value":1801},"--list-windows --app \"AppName\"",{"type":45,"value":1803}," and retry with ",{"type":39,"tag":116,"props":1805,"children":1807},{"className":1806},[],[1808],{"type":45,"value":1224},{"type":45,"value":1810},", and make sure the app is visible on screen.",{"type":39,"tag":58,"props":1812,"children":1813},{},[1814,1816,1822,1823,1829,1830,1836],{"type":45,"value":1815},"If Linux region\u002Fwindow capture fails, check tool availability with ",{"type":39,"tag":116,"props":1817,"children":1819},{"className":1818},[],[1820],{"type":45,"value":1821},"command -v scrot",{"type":45,"value":1194},{"type":39,"tag":116,"props":1824,"children":1826},{"className":1825},[],[1827],{"type":45,"value":1828},"command -v gnome-screenshot",{"type":45,"value":1202},{"type":39,"tag":116,"props":1831,"children":1833},{"className":1832},[],[1834],{"type":45,"value":1835},"command -v import",{"type":45,"value":1184},{"type":39,"tag":58,"props":1838,"children":1839},{},[1840],{"type":45,"value":1841},"If saving to the OS default location fails with permission errors in a sandbox, rerun the command with escalated permissions.",{"type":39,"tag":58,"props":1843,"children":1844},{},[1845],{"type":45,"value":1846},"Always report the saved file path in the response.",{"type":39,"tag":1848,"props":1849,"children":1850},"style",{},[1851],{"type":45,"value":1852},"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":1854,"total":2054},[1855,1876,1897,1914,1927,1946,1965,1981,1997,2011,2023,2038],{"slug":1856,"name":1856,"fn":1857,"description":1858,"org":1859,"tags":1860,"stars":1873,"repoUrl":1874,"updatedAt":1875},"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},[1861,1864,1867,1870],{"name":1862,"slug":1863,"type":15},"Documents","documents",{"name":1865,"slug":1866,"type":15},"Healthcare","healthcare",{"name":1868,"slug":1869,"type":15},"Insurance","insurance",{"name":1871,"slug":1872,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1877,"name":1877,"fn":1878,"description":1879,"org":1880,"tags":1881,"stars":22,"repoUrl":23,"updatedAt":1896},"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},[1882,1885,1887,1890,1893],{"name":1883,"slug":1884,"type":15},".NET","dotnet",{"name":1886,"slug":1877,"type":15},"ASP.NET Core",{"name":1888,"slug":1889,"type":15},"Blazor","blazor",{"name":1891,"slug":1892,"type":15},"C#","csharp",{"name":1894,"slug":1895,"type":15},"Web Development","web-development","2026-04-12T05:07:02.819491",{"slug":1898,"name":1898,"fn":1899,"description":1900,"org":1901,"tags":1902,"stars":22,"repoUrl":23,"updatedAt":1913},"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},[1903,1906,1909,1912],{"name":1904,"slug":1905,"type":15},"Apps SDK","apps-sdk",{"name":1907,"slug":1908,"type":15},"ChatGPT","chatgpt",{"name":1910,"slug":1911,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1915,"name":1915,"fn":1916,"description":1917,"org":1918,"tags":1919,"stars":22,"repoUrl":23,"updatedAt":1926},"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},[1920,1923,1924],{"name":1921,"slug":1922,"type":15},"API Development","api-development",{"name":13,"slug":14,"type":15},{"name":268,"slug":1925,"type":15},"codex","2026-04-12T05:07:04.132762",{"slug":1928,"name":1928,"fn":1929,"description":1930,"org":1931,"tags":1932,"stars":22,"repoUrl":23,"updatedAt":1945},"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},[1933,1936,1939,1942],{"name":1934,"slug":1935,"type":15},"Cloudflare","cloudflare",{"name":1937,"slug":1938,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1940,"slug":1941,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1943,"slug":1944,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1947,"name":1947,"fn":1948,"description":1949,"org":1950,"tags":1951,"stars":22,"repoUrl":23,"updatedAt":1964},"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},[1952,1955,1958,1961],{"name":1953,"slug":1954,"type":15},"Productivity","productivity",{"name":1956,"slug":1957,"type":15},"Project Management","project-management",{"name":1959,"slug":1960,"type":15},"Strategy","strategy",{"name":1962,"slug":1963,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1966,"name":1966,"fn":1967,"description":1968,"org":1969,"tags":1970,"stars":22,"repoUrl":23,"updatedAt":1980},"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},[1971,1974,1976,1979],{"name":1972,"slug":1973,"type":15},"Design","design",{"name":1975,"slug":1966,"type":15},"Figma",{"name":1977,"slug":1978,"type":15},"Frontend","frontend",{"name":1910,"slug":1911,"type":15},"2026-04-12T05:06:47.939943",{"slug":1982,"name":1982,"fn":1983,"description":1984,"org":1985,"tags":1986,"stars":22,"repoUrl":23,"updatedAt":1996},"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},[1987,1988,1991,1992,1993],{"name":1972,"slug":1973,"type":15},{"name":1989,"slug":1990,"type":15},"Design System","design-system",{"name":1975,"slug":1966,"type":15},{"name":1977,"slug":1978,"type":15},{"name":1994,"slug":1995,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1998,"name":1998,"fn":1999,"description":2000,"org":2001,"tags":2002,"stars":22,"repoUrl":23,"updatedAt":2010},"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},[2003,2004,2005,2008,2009],{"name":1972,"slug":1973,"type":15},{"name":1989,"slug":1990,"type":15},{"name":2006,"slug":2007,"type":15},"Documentation","documentation",{"name":1975,"slug":1966,"type":15},{"name":1977,"slug":1978,"type":15},"2026-05-16T06:07:47.821474",{"slug":2012,"name":2012,"fn":2013,"description":2014,"org":2015,"tags":2016,"stars":22,"repoUrl":23,"updatedAt":2022},"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},[2017,2018,2019,2020,2021],{"name":1972,"slug":1973,"type":15},{"name":1975,"slug":1966,"type":15},{"name":1977,"slug":1978,"type":15},{"name":1994,"slug":1995,"type":15},{"name":1894,"slug":1895,"type":15},"2026-05-16T06:07:40.583615",{"slug":2024,"name":2024,"fn":2025,"description":2026,"org":2027,"tags":2028,"stars":22,"repoUrl":23,"updatedAt":2037},"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},[2029,2032,2033,2036],{"name":2030,"slug":2031,"type":15},"Animation","animation",{"name":268,"slug":1925,"type":15},{"name":2034,"slug":2035,"type":15},"Creative","creative",{"name":1972,"slug":1973,"type":15},"2026-05-02T05:31:48.48485",{"slug":2039,"name":2039,"fn":2040,"description":2041,"org":2042,"tags":2043,"stars":22,"repoUrl":23,"updatedAt":2053},"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},[2044,2045,2046,2049,2052],{"name":2034,"slug":2035,"type":15},{"name":1972,"slug":1973,"type":15},{"name":2047,"slug":2048,"type":15},"Image Generation","image-generation",{"name":2050,"slug":2051,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":2056,"total":2107},[2057,2065,2072,2078,2085,2092,2099],{"slug":1877,"name":1877,"fn":1878,"description":1879,"org":2058,"tags":2059,"stars":22,"repoUrl":23,"updatedAt":1896},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2060,2061,2062,2063,2064],{"name":1883,"slug":1884,"type":15},{"name":1886,"slug":1877,"type":15},{"name":1888,"slug":1889,"type":15},{"name":1891,"slug":1892,"type":15},{"name":1894,"slug":1895,"type":15},{"slug":1898,"name":1898,"fn":1899,"description":1900,"org":2066,"tags":2067,"stars":22,"repoUrl":23,"updatedAt":1913},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2068,2069,2070,2071],{"name":1904,"slug":1905,"type":15},{"name":1907,"slug":1908,"type":15},{"name":1910,"slug":1911,"type":15},{"name":9,"slug":8,"type":15},{"slug":1915,"name":1915,"fn":1916,"description":1917,"org":2073,"tags":2074,"stars":22,"repoUrl":23,"updatedAt":1926},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2075,2076,2077],{"name":1921,"slug":1922,"type":15},{"name":13,"slug":14,"type":15},{"name":268,"slug":1925,"type":15},{"slug":1928,"name":1928,"fn":1929,"description":1930,"org":2079,"tags":2080,"stars":22,"repoUrl":23,"updatedAt":1945},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2081,2082,2083,2084],{"name":1934,"slug":1935,"type":15},{"name":1937,"slug":1938,"type":15},{"name":1940,"slug":1941,"type":15},{"name":1943,"slug":1944,"type":15},{"slug":1947,"name":1947,"fn":1948,"description":1949,"org":2086,"tags":2087,"stars":22,"repoUrl":23,"updatedAt":1964},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2088,2089,2090,2091],{"name":1953,"slug":1954,"type":15},{"name":1956,"slug":1957,"type":15},{"name":1959,"slug":1960,"type":15},{"name":1962,"slug":1963,"type":15},{"slug":1966,"name":1966,"fn":1967,"description":1968,"org":2093,"tags":2094,"stars":22,"repoUrl":23,"updatedAt":1980},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2095,2096,2097,2098],{"name":1972,"slug":1973,"type":15},{"name":1975,"slug":1966,"type":15},{"name":1977,"slug":1978,"type":15},{"name":1910,"slug":1911,"type":15},{"slug":1982,"name":1982,"fn":1983,"description":1984,"org":2100,"tags":2101,"stars":22,"repoUrl":23,"updatedAt":1996},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2102,2103,2104,2105,2106],{"name":1972,"slug":1973,"type":15},{"name":1989,"slug":1990,"type":15},{"name":1975,"slug":1966,"type":15},{"name":1977,"slug":1978,"type":15},{"name":1994,"slug":1995,"type":15},29]