[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-jetbrains-screenshot":3,"mdc-xqq2vv-key":36,"related-repo-jetbrains-screenshot":1858,"related-org-jetbrains-screenshot":1982},{"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},"screenshot","capture desktop or system 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":9},"jetbrains","JetBrains","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fjetbrains.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Windows","windows","tag",{"name":17,"slug":18,"type":15},"macOS","macos",{"name":20,"slug":21,"type":15},"Desktop","desktop",{"name":23,"slug":24,"type":15},"Screenshots","screenshots",252,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills","2026-07-17T06:04:33.890949",null,17,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Curated agent skills collection verified by JetBrains","https:\u002F\u002Fgithub.com\u002FJetBrains\u002Fskills\u002Ftree\u002FHEAD\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.\"\nmetadata:\n  short-description: \"Capture screenshots\"\n  author: OpenAI\n  source: https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.curated\u002Fscreenshot\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":37,"body":42},{"name":4,"description":6,"metadata":38},{"short-description":39,"author":40,"source":41},"Capture screenshots","OpenAI","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills\u002Ftree\u002Fmain\u002Fskills\u002F.curated\u002Fscreenshot",{"type":43,"children":44},"root",[45,54,60,80,87,106,112,117,131,181,186,281,286,383,388,394,399,434,439,447,480,488,530,538,582,590,640,648,716,724,779,787,840,856,903,911,956,977,984,998,1090,1098,1104,1125,1131,1136,1168,1173,1192,1234,1240,1245,1261,1265,1273,1286,1293,1307,1315,1329,1336,1350,1358,1372,1380,1394,1400,1405,1409,1417,1441,1449,1477,1485,1513,1521,1549,1555,1563,1581,1604,1632,1639,1667,1703,1711,1734,1761,1767,1852],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"screenshot-capture",[51],{"type":52,"value":53},"text","Screenshot Capture",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"Follow these save-location rules every time:",{"type":46,"tag":61,"props":62,"children":63},"ol",{},[64,70,75],{"type":46,"tag":65,"props":66,"children":67},"li",{},[68],{"type":52,"value":69},"If the user specifies a path, save there.",{"type":46,"tag":65,"props":71,"children":72},{},[73],{"type":52,"value":74},"If the user asks for a screenshot without a path, save to the OS default screenshot location.",{"type":46,"tag":65,"props":76,"children":77},{},[78],{"type":52,"value":79},"If Codex needs a screenshot for its own inspection, save to the temp directory.",{"type":46,"tag":81,"props":82,"children":84},"h2",{"id":83},"tool-priority",[85],{"type":52,"value":86},"Tool priority",{"type":46,"tag":88,"props":89,"children":90},"ul",{},[91,96,101],{"type":46,"tag":65,"props":92,"children":93},{},[94],{"type":52,"value":95},"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":46,"tag":65,"props":97,"children":98},{},[99],{"type":52,"value":100},"Use this skill when explicitly asked, for whole-system desktop captures, or when a tool-specific capture cannot get what you need.",{"type":46,"tag":65,"props":102,"children":103},{},[104],{"type":52,"value":105},"Otherwise, treat this skill as the default for desktop apps without a better-integrated capture tool.",{"type":46,"tag":81,"props":107,"children":109},{"id":108},"macos-permission-preflight-reduce-repeated-prompts",[110],{"type":52,"value":111},"macOS permission preflight (reduce repeated prompts)",{"type":46,"tag":55,"props":113,"children":114},{},[115],{"type":52,"value":116},"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":46,"tag":55,"props":118,"children":119},{},[120,122,129],{"type":52,"value":121},"The helpers route Swift's module cache to ",{"type":46,"tag":123,"props":124,"children":126},"code",{"className":125},[],[127],{"type":52,"value":128},"$TMPDIR\u002Fcodex-swift-module-cache",{"type":52,"value":130},"\nto avoid extra sandbox module-cache prompts.",{"type":46,"tag":132,"props":133,"children":138},"pre",{"className":134,"code":135,"language":136,"meta":137,"style":137},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh\n","bash","",[139],{"type":46,"tag":123,"props":140,"children":141},{"__ignoreMap":137},[142],{"type":46,"tag":143,"props":144,"children":147},"span",{"class":145,"line":146},"line",1,[148,153,159,165,171,176],{"type":46,"tag":143,"props":149,"children":151},{"style":150},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[152],{"type":52,"value":136},{"type":46,"tag":143,"props":154,"children":156},{"style":155},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[157],{"type":52,"value":158}," \u003C",{"type":46,"tag":143,"props":160,"children":162},{"style":161},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[163],{"type":52,"value":164},"path-to-skil",{"type":46,"tag":143,"props":166,"children":168},{"style":167},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[169],{"type":52,"value":170},"l",{"type":46,"tag":143,"props":172,"children":173},{"style":155},[174],{"type":52,"value":175},">",{"type":46,"tag":143,"props":177,"children":178},{"style":161},[179],{"type":52,"value":180},"\u002Fscripts\u002Fensure_macos_permissions.sh\n",{"type":46,"tag":55,"props":182,"children":183},{},[184],{"type":52,"value":185},"To avoid multiple sandbox approval prompts, combine preflight + capture in one\ncommand when possible:",{"type":46,"tag":132,"props":187,"children":189},{"className":134,"code":188,"language":136,"meta":137,"style":137},"bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\"\n",[190],{"type":46,"tag":123,"props":191,"children":192},{"__ignoreMap":137},[193,231],{"type":46,"tag":143,"props":194,"children":195},{"class":145,"line":146},[196,200,204,208,212,216,221,226],{"type":46,"tag":143,"props":197,"children":198},{"style":150},[199],{"type":52,"value":136},{"type":46,"tag":143,"props":201,"children":202},{"style":155},[203],{"type":52,"value":158},{"type":46,"tag":143,"props":205,"children":206},{"style":161},[207],{"type":52,"value":164},{"type":46,"tag":143,"props":209,"children":210},{"style":167},[211],{"type":52,"value":170},{"type":46,"tag":143,"props":213,"children":214},{"style":155},[215],{"type":52,"value":175},{"type":46,"tag":143,"props":217,"children":218},{"style":161},[219],{"type":52,"value":220},"\u002Fscripts\u002Fensure_macos_permissions.sh",{"type":46,"tag":143,"props":222,"children":223},{"style":155},[224],{"type":52,"value":225}," &&",{"type":46,"tag":143,"props":227,"children":228},{"style":167},[229],{"type":52,"value":230}," \\\n",{"type":46,"tag":143,"props":232,"children":234},{"class":145,"line":233},2,[235,240,244,248,252,256,261,266,271,276],{"type":46,"tag":143,"props":236,"children":237},{"style":150},[238],{"type":52,"value":239},"python3",{"type":46,"tag":143,"props":241,"children":242},{"style":155},[243],{"type":52,"value":158},{"type":46,"tag":143,"props":245,"children":246},{"style":161},[247],{"type":52,"value":164},{"type":46,"tag":143,"props":249,"children":250},{"style":167},[251],{"type":52,"value":170},{"type":46,"tag":143,"props":253,"children":254},{"style":155},[255],{"type":52,"value":175},{"type":46,"tag":143,"props":257,"children":258},{"style":161},[259],{"type":52,"value":260},"\u002Fscripts\u002Ftake_screenshot.py",{"type":46,"tag":143,"props":262,"children":263},{"style":161},[264],{"type":52,"value":265}," --app",{"type":46,"tag":143,"props":267,"children":268},{"style":155},[269],{"type":52,"value":270}," \"",{"type":46,"tag":143,"props":272,"children":273},{"style":161},[274],{"type":52,"value":275},"Codex",{"type":46,"tag":143,"props":277,"children":278},{"style":155},[279],{"type":52,"value":280},"\"\n",{"type":46,"tag":55,"props":282,"children":283},{},[284],{"type":52,"value":285},"For Codex inspection runs, keep the output in temp:",{"type":46,"tag":132,"props":287,"children":289},{"className":134,"code":288,"language":136,"meta":137,"style":137},"bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"\u003CApp>\" --mode temp\n",[290],{"type":46,"tag":123,"props":291,"children":292},{"__ignoreMap":137},[293,328],{"type":46,"tag":143,"props":294,"children":295},{"class":145,"line":146},[296,300,304,308,312,316,320,324],{"type":46,"tag":143,"props":297,"children":298},{"style":150},[299],{"type":52,"value":136},{"type":46,"tag":143,"props":301,"children":302},{"style":155},[303],{"type":52,"value":158},{"type":46,"tag":143,"props":305,"children":306},{"style":161},[307],{"type":52,"value":164},{"type":46,"tag":143,"props":309,"children":310},{"style":167},[311],{"type":52,"value":170},{"type":46,"tag":143,"props":313,"children":314},{"style":155},[315],{"type":52,"value":175},{"type":46,"tag":143,"props":317,"children":318},{"style":161},[319],{"type":52,"value":220},{"type":46,"tag":143,"props":321,"children":322},{"style":155},[323],{"type":52,"value":225},{"type":46,"tag":143,"props":325,"children":326},{"style":167},[327],{"type":52,"value":230},{"type":46,"tag":143,"props":329,"children":330},{"class":145,"line":233},[331,335,339,343,347,351,355,359,363,368,373,378],{"type":46,"tag":143,"props":332,"children":333},{"style":150},[334],{"type":52,"value":239},{"type":46,"tag":143,"props":336,"children":337},{"style":155},[338],{"type":52,"value":158},{"type":46,"tag":143,"props":340,"children":341},{"style":161},[342],{"type":52,"value":164},{"type":46,"tag":143,"props":344,"children":345},{"style":167},[346],{"type":52,"value":170},{"type":46,"tag":143,"props":348,"children":349},{"style":155},[350],{"type":52,"value":175},{"type":46,"tag":143,"props":352,"children":353},{"style":161},[354],{"type":52,"value":260},{"type":46,"tag":143,"props":356,"children":357},{"style":161},[358],{"type":52,"value":265},{"type":46,"tag":143,"props":360,"children":361},{"style":155},[362],{"type":52,"value":270},{"type":46,"tag":143,"props":364,"children":365},{"style":161},[366],{"type":52,"value":367},"\u003CApp>",{"type":46,"tag":143,"props":369,"children":370},{"style":155},[371],{"type":52,"value":372},"\"",{"type":46,"tag":143,"props":374,"children":375},{"style":161},[376],{"type":52,"value":377}," --mode",{"type":46,"tag":143,"props":379,"children":380},{"style":161},[381],{"type":52,"value":382}," temp\n",{"type":46,"tag":55,"props":384,"children":385},{},[386],{"type":52,"value":387},"Use the bundled scripts to avoid re-deriving OS-specific commands.",{"type":46,"tag":81,"props":389,"children":391},{"id":390},"macos-and-linux-python-helper",[392],{"type":52,"value":393},"macOS and Linux (Python helper)",{"type":46,"tag":55,"props":395,"children":396},{},[397],{"type":52,"value":398},"Run the helper from the repo root:",{"type":46,"tag":132,"props":400,"children":402},{"className":134,"code":401,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py\n",[403],{"type":46,"tag":123,"props":404,"children":405},{"__ignoreMap":137},[406],{"type":46,"tag":143,"props":407,"children":408},{"class":145,"line":146},[409,413,417,421,425,429],{"type":46,"tag":143,"props":410,"children":411},{"style":150},[412],{"type":52,"value":239},{"type":46,"tag":143,"props":414,"children":415},{"style":155},[416],{"type":52,"value":158},{"type":46,"tag":143,"props":418,"children":419},{"style":161},[420],{"type":52,"value":164},{"type":46,"tag":143,"props":422,"children":423},{"style":167},[424],{"type":52,"value":170},{"type":46,"tag":143,"props":426,"children":427},{"style":155},[428],{"type":52,"value":175},{"type":46,"tag":143,"props":430,"children":431},{"style":161},[432],{"type":52,"value":433},"\u002Fscripts\u002Ftake_screenshot.py\n",{"type":46,"tag":55,"props":435,"children":436},{},[437],{"type":52,"value":438},"Common patterns:",{"type":46,"tag":88,"props":440,"children":441},{},[442],{"type":46,"tag":65,"props":443,"children":444},{},[445],{"type":52,"value":446},"Default location (user asked for \"a screenshot\"):",{"type":46,"tag":132,"props":448,"children":449},{"className":134,"code":401,"language":136,"meta":137,"style":137},[450],{"type":46,"tag":123,"props":451,"children":452},{"__ignoreMap":137},[453],{"type":46,"tag":143,"props":454,"children":455},{"class":145,"line":146},[456,460,464,468,472,476],{"type":46,"tag":143,"props":457,"children":458},{"style":150},[459],{"type":52,"value":239},{"type":46,"tag":143,"props":461,"children":462},{"style":155},[463],{"type":52,"value":158},{"type":46,"tag":143,"props":465,"children":466},{"style":161},[467],{"type":52,"value":164},{"type":46,"tag":143,"props":469,"children":470},{"style":167},[471],{"type":52,"value":170},{"type":46,"tag":143,"props":473,"children":474},{"style":155},[475],{"type":52,"value":175},{"type":46,"tag":143,"props":477,"children":478},{"style":161},[479],{"type":52,"value":433},{"type":46,"tag":88,"props":481,"children":482},{},[483],{"type":46,"tag":65,"props":484,"children":485},{},[486],{"type":52,"value":487},"Temp location (Codex visual check):",{"type":46,"tag":132,"props":489,"children":491},{"className":134,"code":490,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp\n",[492],{"type":46,"tag":123,"props":493,"children":494},{"__ignoreMap":137},[495],{"type":46,"tag":143,"props":496,"children":497},{"class":145,"line":146},[498,502,506,510,514,518,522,526],{"type":46,"tag":143,"props":499,"children":500},{"style":150},[501],{"type":52,"value":239},{"type":46,"tag":143,"props":503,"children":504},{"style":155},[505],{"type":52,"value":158},{"type":46,"tag":143,"props":507,"children":508},{"style":161},[509],{"type":52,"value":164},{"type":46,"tag":143,"props":511,"children":512},{"style":167},[513],{"type":52,"value":170},{"type":46,"tag":143,"props":515,"children":516},{"style":155},[517],{"type":52,"value":175},{"type":46,"tag":143,"props":519,"children":520},{"style":161},[521],{"type":52,"value":260},{"type":46,"tag":143,"props":523,"children":524},{"style":161},[525],{"type":52,"value":377},{"type":46,"tag":143,"props":527,"children":528},{"style":161},[529],{"type":52,"value":382},{"type":46,"tag":88,"props":531,"children":532},{},[533],{"type":46,"tag":65,"props":534,"children":535},{},[536],{"type":52,"value":537},"Explicit location (user provided a path or filename):",{"type":46,"tag":132,"props":539,"children":541},{"className":134,"code":540,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --path output\u002Fscreen.png\n",[542],{"type":46,"tag":123,"props":543,"children":544},{"__ignoreMap":137},[545],{"type":46,"tag":143,"props":546,"children":547},{"class":145,"line":146},[548,552,556,560,564,568,572,577],{"type":46,"tag":143,"props":549,"children":550},{"style":150},[551],{"type":52,"value":239},{"type":46,"tag":143,"props":553,"children":554},{"style":155},[555],{"type":52,"value":158},{"type":46,"tag":143,"props":557,"children":558},{"style":161},[559],{"type":52,"value":164},{"type":46,"tag":143,"props":561,"children":562},{"style":167},[563],{"type":52,"value":170},{"type":46,"tag":143,"props":565,"children":566},{"style":155},[567],{"type":52,"value":175},{"type":46,"tag":143,"props":569,"children":570},{"style":161},[571],{"type":52,"value":260},{"type":46,"tag":143,"props":573,"children":574},{"style":161},[575],{"type":52,"value":576}," --path",{"type":46,"tag":143,"props":578,"children":579},{"style":161},[580],{"type":52,"value":581}," output\u002Fscreen.png\n",{"type":46,"tag":88,"props":583,"children":584},{},[585],{"type":46,"tag":65,"props":586,"children":587},{},[588],{"type":52,"value":589},"App\u002Fwindow capture by app name (macOS only; substring match is OK; captures all matching windows):",{"type":46,"tag":132,"props":591,"children":593},{"className":134,"code":592,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\"\n",[594],{"type":46,"tag":123,"props":595,"children":596},{"__ignoreMap":137},[597],{"type":46,"tag":143,"props":598,"children":599},{"class":145,"line":146},[600,604,608,612,616,620,624,628,632,636],{"type":46,"tag":143,"props":601,"children":602},{"style":150},[603],{"type":52,"value":239},{"type":46,"tag":143,"props":605,"children":606},{"style":155},[607],{"type":52,"value":158},{"type":46,"tag":143,"props":609,"children":610},{"style":161},[611],{"type":52,"value":164},{"type":46,"tag":143,"props":613,"children":614},{"style":167},[615],{"type":52,"value":170},{"type":46,"tag":143,"props":617,"children":618},{"style":155},[619],{"type":52,"value":175},{"type":46,"tag":143,"props":621,"children":622},{"style":161},[623],{"type":52,"value":260},{"type":46,"tag":143,"props":625,"children":626},{"style":161},[627],{"type":52,"value":265},{"type":46,"tag":143,"props":629,"children":630},{"style":155},[631],{"type":52,"value":270},{"type":46,"tag":143,"props":633,"children":634},{"style":161},[635],{"type":52,"value":275},{"type":46,"tag":143,"props":637,"children":638},{"style":155},[639],{"type":52,"value":280},{"type":46,"tag":88,"props":641,"children":642},{},[643],{"type":46,"tag":65,"props":644,"children":645},{},[646],{"type":52,"value":647},"Specific window title within an app (macOS only):",{"type":46,"tag":132,"props":649,"children":651},{"className":134,"code":650,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --app \"Codex\" --window-name \"Settings\"\n",[652],{"type":46,"tag":123,"props":653,"children":654},{"__ignoreMap":137},[655],{"type":46,"tag":143,"props":656,"children":657},{"class":145,"line":146},[658,662,666,670,674,678,682,686,690,694,698,703,707,712],{"type":46,"tag":143,"props":659,"children":660},{"style":150},[661],{"type":52,"value":239},{"type":46,"tag":143,"props":663,"children":664},{"style":155},[665],{"type":52,"value":158},{"type":46,"tag":143,"props":667,"children":668},{"style":161},[669],{"type":52,"value":164},{"type":46,"tag":143,"props":671,"children":672},{"style":167},[673],{"type":52,"value":170},{"type":46,"tag":143,"props":675,"children":676},{"style":155},[677],{"type":52,"value":175},{"type":46,"tag":143,"props":679,"children":680},{"style":161},[681],{"type":52,"value":260},{"type":46,"tag":143,"props":683,"children":684},{"style":161},[685],{"type":52,"value":265},{"type":46,"tag":143,"props":687,"children":688},{"style":155},[689],{"type":52,"value":270},{"type":46,"tag":143,"props":691,"children":692},{"style":161},[693],{"type":52,"value":275},{"type":46,"tag":143,"props":695,"children":696},{"style":155},[697],{"type":52,"value":372},{"type":46,"tag":143,"props":699,"children":700},{"style":161},[701],{"type":52,"value":702}," --window-name",{"type":46,"tag":143,"props":704,"children":705},{"style":155},[706],{"type":52,"value":270},{"type":46,"tag":143,"props":708,"children":709},{"style":161},[710],{"type":52,"value":711},"Settings",{"type":46,"tag":143,"props":713,"children":714},{"style":155},[715],{"type":52,"value":280},{"type":46,"tag":88,"props":717,"children":718},{},[719],{"type":46,"tag":65,"props":720,"children":721},{},[722],{"type":52,"value":723},"List matching window ids before capturing (macOS only):",{"type":46,"tag":132,"props":725,"children":727},{"className":134,"code":726,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --list-windows --app \"Codex\"\n",[728],{"type":46,"tag":123,"props":729,"children":730},{"__ignoreMap":137},[731],{"type":46,"tag":143,"props":732,"children":733},{"class":145,"line":146},[734,738,742,746,750,754,758,763,767,771,775],{"type":46,"tag":143,"props":735,"children":736},{"style":150},[737],{"type":52,"value":239},{"type":46,"tag":143,"props":739,"children":740},{"style":155},[741],{"type":52,"value":158},{"type":46,"tag":143,"props":743,"children":744},{"style":161},[745],{"type":52,"value":164},{"type":46,"tag":143,"props":747,"children":748},{"style":167},[749],{"type":52,"value":170},{"type":46,"tag":143,"props":751,"children":752},{"style":155},[753],{"type":52,"value":175},{"type":46,"tag":143,"props":755,"children":756},{"style":161},[757],{"type":52,"value":260},{"type":46,"tag":143,"props":759,"children":760},{"style":161},[761],{"type":52,"value":762}," --list-windows",{"type":46,"tag":143,"props":764,"children":765},{"style":161},[766],{"type":52,"value":265},{"type":46,"tag":143,"props":768,"children":769},{"style":155},[770],{"type":52,"value":270},{"type":46,"tag":143,"props":772,"children":773},{"style":161},[774],{"type":52,"value":275},{"type":46,"tag":143,"props":776,"children":777},{"style":155},[778],{"type":52,"value":280},{"type":46,"tag":88,"props":780,"children":781},{},[782],{"type":46,"tag":65,"props":783,"children":784},{},[785],{"type":52,"value":786},"Pixel region (x,y,w,h):",{"type":46,"tag":132,"props":788,"children":790},{"className":134,"code":789,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp --region 100,200,800,600\n",[791],{"type":46,"tag":123,"props":792,"children":793},{"__ignoreMap":137},[794],{"type":46,"tag":143,"props":795,"children":796},{"class":145,"line":146},[797,801,805,809,813,817,821,825,830,835],{"type":46,"tag":143,"props":798,"children":799},{"style":150},[800],{"type":52,"value":239},{"type":46,"tag":143,"props":802,"children":803},{"style":155},[804],{"type":52,"value":158},{"type":46,"tag":143,"props":806,"children":807},{"style":161},[808],{"type":52,"value":164},{"type":46,"tag":143,"props":810,"children":811},{"style":167},[812],{"type":52,"value":170},{"type":46,"tag":143,"props":814,"children":815},{"style":155},[816],{"type":52,"value":175},{"type":46,"tag":143,"props":818,"children":819},{"style":161},[820],{"type":52,"value":260},{"type":46,"tag":143,"props":822,"children":823},{"style":161},[824],{"type":52,"value":377},{"type":46,"tag":143,"props":826,"children":827},{"style":161},[828],{"type":52,"value":829}," temp",{"type":46,"tag":143,"props":831,"children":832},{"style":161},[833],{"type":52,"value":834}," --region",{"type":46,"tag":143,"props":836,"children":837},{"style":161},[838],{"type":52,"value":839}," 100,200,800,600\n",{"type":46,"tag":88,"props":841,"children":842},{},[843],{"type":46,"tag":65,"props":844,"children":845},{},[846,848,854],{"type":52,"value":847},"Focused\u002Factive window (captures only the frontmost window; use ",{"type":46,"tag":123,"props":849,"children":851},{"className":850},[],[852],{"type":52,"value":853},"--app",{"type":52,"value":855}," to capture all windows):",{"type":46,"tag":132,"props":857,"children":859},{"className":134,"code":858,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --mode temp --active-window\n",[860],{"type":46,"tag":123,"props":861,"children":862},{"__ignoreMap":137},[863],{"type":46,"tag":143,"props":864,"children":865},{"class":145,"line":146},[866,870,874,878,882,886,890,894,898],{"type":46,"tag":143,"props":867,"children":868},{"style":150},[869],{"type":52,"value":239},{"type":46,"tag":143,"props":871,"children":872},{"style":155},[873],{"type":52,"value":158},{"type":46,"tag":143,"props":875,"children":876},{"style":161},[877],{"type":52,"value":164},{"type":46,"tag":143,"props":879,"children":880},{"style":167},[881],{"type":52,"value":170},{"type":46,"tag":143,"props":883,"children":884},{"style":155},[885],{"type":52,"value":175},{"type":46,"tag":143,"props":887,"children":888},{"style":161},[889],{"type":52,"value":260},{"type":46,"tag":143,"props":891,"children":892},{"style":161},[893],{"type":52,"value":377},{"type":46,"tag":143,"props":895,"children":896},{"style":161},[897],{"type":52,"value":829},{"type":46,"tag":143,"props":899,"children":900},{"style":161},[901],{"type":52,"value":902}," --active-window\n",{"type":46,"tag":88,"props":904,"children":905},{},[906],{"type":46,"tag":65,"props":907,"children":908},{},[909],{"type":52,"value":910},"Specific window id (use --list-windows on macOS to discover ids):",{"type":46,"tag":132,"props":912,"children":914},{"className":134,"code":913,"language":136,"meta":137,"style":137},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.py --window-id 12345\n",[915],{"type":46,"tag":123,"props":916,"children":917},{"__ignoreMap":137},[918],{"type":46,"tag":143,"props":919,"children":920},{"class":145,"line":146},[921,925,929,933,937,941,945,950],{"type":46,"tag":143,"props":922,"children":923},{"style":150},[924],{"type":52,"value":239},{"type":46,"tag":143,"props":926,"children":927},{"style":155},[928],{"type":52,"value":158},{"type":46,"tag":143,"props":930,"children":931},{"style":161},[932],{"type":52,"value":164},{"type":46,"tag":143,"props":934,"children":935},{"style":167},[936],{"type":52,"value":170},{"type":46,"tag":143,"props":938,"children":939},{"style":155},[940],{"type":52,"value":175},{"type":46,"tag":143,"props":942,"children":943},{"style":161},[944],{"type":52,"value":260},{"type":46,"tag":143,"props":946,"children":947},{"style":161},[948],{"type":52,"value":949}," --window-id",{"type":46,"tag":143,"props":951,"children":953},{"style":952},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[954],{"type":52,"value":955}," 12345\n",{"type":46,"tag":55,"props":957,"children":958},{},[959,961,967,969,975],{"type":52,"value":960},"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":46,"tag":123,"props":962,"children":964},{"className":963},[],[965],{"type":52,"value":966},"-w\u003CwindowId>",{"type":52,"value":968}," or ",{"type":46,"tag":123,"props":970,"children":972},{"className":971},[],[973],{"type":52,"value":974},"-d\u003Cdisplay>",{"type":52,"value":976},". View each path sequentially with the image viewer tool, and only manipulate images if needed or requested.",{"type":46,"tag":978,"props":979,"children":981},"h3",{"id":980},"workflow-examples",[982],{"type":52,"value":983},"Workflow examples",{"type":46,"tag":88,"props":985,"children":986},{},[987],{"type":46,"tag":65,"props":988,"children":989},{},[990,992],{"type":52,"value":991},"\"Take a look at ",{"type":46,"tag":993,"props":994,"children":995},"app",{},[996],{"type":52,"value":997}," and tell me what you see\": capture to temp, then view each printed path in order.",{"type":46,"tag":132,"props":999,"children":1000},{"className":134,"code":288,"language":136,"meta":137,"style":137},[1001],{"type":46,"tag":123,"props":1002,"children":1003},{"__ignoreMap":137},[1004,1039],{"type":46,"tag":143,"props":1005,"children":1006},{"class":145,"line":146},[1007,1011,1015,1019,1023,1027,1031,1035],{"type":46,"tag":143,"props":1008,"children":1009},{"style":150},[1010],{"type":52,"value":136},{"type":46,"tag":143,"props":1012,"children":1013},{"style":155},[1014],{"type":52,"value":158},{"type":46,"tag":143,"props":1016,"children":1017},{"style":161},[1018],{"type":52,"value":164},{"type":46,"tag":143,"props":1020,"children":1021},{"style":167},[1022],{"type":52,"value":170},{"type":46,"tag":143,"props":1024,"children":1025},{"style":155},[1026],{"type":52,"value":175},{"type":46,"tag":143,"props":1028,"children":1029},{"style":161},[1030],{"type":52,"value":220},{"type":46,"tag":143,"props":1032,"children":1033},{"style":155},[1034],{"type":52,"value":225},{"type":46,"tag":143,"props":1036,"children":1037},{"style":167},[1038],{"type":52,"value":230},{"type":46,"tag":143,"props":1040,"children":1041},{"class":145,"line":233},[1042,1046,1050,1054,1058,1062,1066,1070,1074,1078,1082,1086],{"type":46,"tag":143,"props":1043,"children":1044},{"style":150},[1045],{"type":52,"value":239},{"type":46,"tag":143,"props":1047,"children":1048},{"style":155},[1049],{"type":52,"value":158},{"type":46,"tag":143,"props":1051,"children":1052},{"style":161},[1053],{"type":52,"value":164},{"type":46,"tag":143,"props":1055,"children":1056},{"style":167},[1057],{"type":52,"value":170},{"type":46,"tag":143,"props":1059,"children":1060},{"style":155},[1061],{"type":52,"value":175},{"type":46,"tag":143,"props":1063,"children":1064},{"style":161},[1065],{"type":52,"value":260},{"type":46,"tag":143,"props":1067,"children":1068},{"style":161},[1069],{"type":52,"value":265},{"type":46,"tag":143,"props":1071,"children":1072},{"style":155},[1073],{"type":52,"value":270},{"type":46,"tag":143,"props":1075,"children":1076},{"style":161},[1077],{"type":52,"value":367},{"type":46,"tag":143,"props":1079,"children":1080},{"style":155},[1081],{"type":52,"value":372},{"type":46,"tag":143,"props":1083,"children":1084},{"style":161},[1085],{"type":52,"value":377},{"type":46,"tag":143,"props":1087,"children":1088},{"style":161},[1089],{"type":52,"value":382},{"type":46,"tag":88,"props":1091,"children":1092},{},[1093],{"type":46,"tag":65,"props":1094,"children":1095},{},[1096],{"type":52,"value":1097},"\"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":46,"tag":978,"props":1099,"children":1101},{"id":1100},"multi-display-behavior",[1102],{"type":52,"value":1103},"Multi-display behavior",{"type":46,"tag":88,"props":1105,"children":1106},{},[1107,1112],{"type":46,"tag":65,"props":1108,"children":1109},{},[1110],{"type":52,"value":1111},"On macOS, full-screen captures save one file per display when multiple monitors are connected.",{"type":46,"tag":65,"props":1113,"children":1114},{},[1115,1117,1123],{"type":52,"value":1116},"On Linux and Windows, full-screen captures use the virtual desktop (all monitors in one image); use ",{"type":46,"tag":123,"props":1118,"children":1120},{"className":1119},[],[1121],{"type":52,"value":1122},"--region",{"type":52,"value":1124}," to isolate a single display when needed.",{"type":46,"tag":978,"props":1126,"children":1128},{"id":1127},"linux-prerequisites-and-selection-logic",[1129],{"type":52,"value":1130},"Linux prerequisites and selection logic",{"type":46,"tag":55,"props":1132,"children":1133},{},[1134],{"type":52,"value":1135},"The helper automatically selects the first available tool:",{"type":46,"tag":61,"props":1137,"children":1138},{},[1139,1148,1157],{"type":46,"tag":65,"props":1140,"children":1141},{},[1142],{"type":46,"tag":123,"props":1143,"children":1145},{"className":1144},[],[1146],{"type":52,"value":1147},"scrot",{"type":46,"tag":65,"props":1149,"children":1150},{},[1151],{"type":46,"tag":123,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":52,"value":1156},"gnome-screenshot",{"type":46,"tag":65,"props":1158,"children":1159},{},[1160,1162],{"type":52,"value":1161},"ImageMagick ",{"type":46,"tag":123,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":52,"value":1167},"import",{"type":46,"tag":55,"props":1169,"children":1170},{},[1171],{"type":52,"value":1172},"If none are available, ask the user to install one of them and retry.",{"type":46,"tag":55,"props":1174,"children":1175},{},[1176,1178,1183,1185,1190],{"type":52,"value":1177},"Coordinate regions require ",{"type":46,"tag":123,"props":1179,"children":1181},{"className":1180},[],[1182],{"type":52,"value":1147},{"type":52,"value":1184}," or ImageMagick ",{"type":46,"tag":123,"props":1186,"children":1188},{"className":1187},[],[1189],{"type":52,"value":1167},{"type":52,"value":1191},".",{"type":46,"tag":55,"props":1193,"children":1194},{},[1195,1200,1202,1208,1210,1216,1218,1224,1226,1232],{"type":46,"tag":123,"props":1196,"children":1198},{"className":1197},[],[1199],{"type":52,"value":853},{"type":52,"value":1201},", ",{"type":46,"tag":123,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":52,"value":1207},"--window-name",{"type":52,"value":1209},", and ",{"type":46,"tag":123,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":52,"value":1215},"--list-windows",{"type":52,"value":1217}," are macOS-only. On Linux, use\n",{"type":46,"tag":123,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":52,"value":1223},"--active-window",{"type":52,"value":1225}," or provide ",{"type":46,"tag":123,"props":1227,"children":1229},{"className":1228},[],[1230],{"type":52,"value":1231},"--window-id",{"type":52,"value":1233}," when available.",{"type":46,"tag":81,"props":1235,"children":1237},{"id":1236},"windows-powershell-helper",[1238],{"type":52,"value":1239},"Windows (PowerShell helper)",{"type":46,"tag":55,"props":1241,"children":1242},{},[1243],{"type":52,"value":1244},"Run the PowerShell helper:",{"type":46,"tag":132,"props":1246,"children":1250},{"className":1247,"code":1248,"language":1249,"meta":137,"style":137},"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",[1251],{"type":46,"tag":123,"props":1252,"children":1253},{"__ignoreMap":137},[1254],{"type":46,"tag":143,"props":1255,"children":1256},{"class":145,"line":146},[1257],{"type":46,"tag":143,"props":1258,"children":1259},{},[1260],{"type":52,"value":1248},{"type":46,"tag":55,"props":1262,"children":1263},{},[1264],{"type":52,"value":438},{"type":46,"tag":88,"props":1266,"children":1267},{},[1268],{"type":46,"tag":65,"props":1269,"children":1270},{},[1271],{"type":52,"value":1272},"Default location:",{"type":46,"tag":132,"props":1274,"children":1275},{"className":1247,"code":1248,"language":1249,"meta":137,"style":137},[1276],{"type":46,"tag":123,"props":1277,"children":1278},{"__ignoreMap":137},[1279],{"type":46,"tag":143,"props":1280,"children":1281},{"class":145,"line":146},[1282],{"type":46,"tag":143,"props":1283,"children":1284},{},[1285],{"type":52,"value":1248},{"type":46,"tag":88,"props":1287,"children":1288},{},[1289],{"type":46,"tag":65,"props":1290,"children":1291},{},[1292],{"type":52,"value":487},{"type":46,"tag":132,"props":1294,"children":1296},{"className":1247,"code":1295,"language":1249,"meta":137,"style":137},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp\n",[1297],{"type":46,"tag":123,"props":1298,"children":1299},{"__ignoreMap":137},[1300],{"type":46,"tag":143,"props":1301,"children":1302},{"class":145,"line":146},[1303],{"type":46,"tag":143,"props":1304,"children":1305},{},[1306],{"type":52,"value":1295},{"type":46,"tag":88,"props":1308,"children":1309},{},[1310],{"type":46,"tag":65,"props":1311,"children":1312},{},[1313],{"type":52,"value":1314},"Explicit path:",{"type":46,"tag":132,"props":1316,"children":1318},{"className":1247,"code":1317,"language":1249,"meta":137,"style":137},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Path \"C:\\Temp\\screen.png\"\n",[1319],{"type":46,"tag":123,"props":1320,"children":1321},{"__ignoreMap":137},[1322],{"type":46,"tag":143,"props":1323,"children":1324},{"class":145,"line":146},[1325],{"type":46,"tag":143,"props":1326,"children":1327},{},[1328],{"type":52,"value":1317},{"type":46,"tag":88,"props":1330,"children":1331},{},[1332],{"type":46,"tag":65,"props":1333,"children":1334},{},[1335],{"type":52,"value":786},{"type":46,"tag":132,"props":1337,"children":1339},{"className":1247,"code":1338,"language":1249,"meta":137,"style":137},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -Region 100,200,800,600\n",[1340],{"type":46,"tag":123,"props":1341,"children":1342},{"__ignoreMap":137},[1343],{"type":46,"tag":143,"props":1344,"children":1345},{"class":145,"line":146},[1346],{"type":46,"tag":143,"props":1347,"children":1348},{},[1349],{"type":52,"value":1338},{"type":46,"tag":88,"props":1351,"children":1352},{},[1353],{"type":46,"tag":65,"props":1354,"children":1355},{},[1356],{"type":52,"value":1357},"Active window (ask the user to focus it first):",{"type":46,"tag":132,"props":1359,"children":1361},{"className":1247,"code":1360,"language":1249,"meta":137,"style":137},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -ActiveWindow\n",[1362],{"type":46,"tag":123,"props":1363,"children":1364},{"__ignoreMap":137},[1365],{"type":46,"tag":143,"props":1366,"children":1367},{"class":145,"line":146},[1368],{"type":46,"tag":143,"props":1369,"children":1370},{},[1371],{"type":52,"value":1360},{"type":46,"tag":88,"props":1373,"children":1374},{},[1375],{"type":46,"tag":65,"props":1376,"children":1377},{},[1378],{"type":52,"value":1379},"Specific window handle (only when provided):",{"type":46,"tag":132,"props":1381,"children":1383},{"className":1247,"code":1382,"language":1249,"meta":137,"style":137},"powershell -ExecutionPolicy Bypass -File \u003Cpath-to-skill>\u002Fscripts\u002Ftake_screenshot.ps1 -WindowHandle 123456\n",[1384],{"type":46,"tag":123,"props":1385,"children":1386},{"__ignoreMap":137},[1387],{"type":46,"tag":143,"props":1388,"children":1389},{"class":145,"line":146},[1390],{"type":46,"tag":143,"props":1391,"children":1392},{},[1393],{"type":52,"value":1382},{"type":46,"tag":81,"props":1395,"children":1397},{"id":1396},"direct-os-commands-fallbacks",[1398],{"type":52,"value":1399},"Direct OS commands (fallbacks)",{"type":46,"tag":55,"props":1401,"children":1402},{},[1403],{"type":52,"value":1404},"Use these when you cannot run the helpers.",{"type":46,"tag":978,"props":1406,"children":1407},{"id":18},[1408],{"type":52,"value":17},{"type":46,"tag":88,"props":1410,"children":1411},{},[1412],{"type":46,"tag":65,"props":1413,"children":1414},{},[1415],{"type":52,"value":1416},"Full screen to a specific path:",{"type":46,"tag":132,"props":1418,"children":1420},{"className":134,"code":1419,"language":136,"meta":137,"style":137},"screencapture -x output\u002Fscreen.png\n",[1421],{"type":46,"tag":123,"props":1422,"children":1423},{"__ignoreMap":137},[1424],{"type":46,"tag":143,"props":1425,"children":1426},{"class":145,"line":146},[1427,1432,1437],{"type":46,"tag":143,"props":1428,"children":1429},{"style":150},[1430],{"type":52,"value":1431},"screencapture",{"type":46,"tag":143,"props":1433,"children":1434},{"style":161},[1435],{"type":52,"value":1436}," -x",{"type":46,"tag":143,"props":1438,"children":1439},{"style":161},[1440],{"type":52,"value":581},{"type":46,"tag":88,"props":1442,"children":1443},{},[1444],{"type":46,"tag":65,"props":1445,"children":1446},{},[1447],{"type":52,"value":1448},"Pixel region:",{"type":46,"tag":132,"props":1450,"children":1452},{"className":134,"code":1451,"language":136,"meta":137,"style":137},"screencapture -x -R100,200,800,600 output\u002Fregion.png\n",[1453],{"type":46,"tag":123,"props":1454,"children":1455},{"__ignoreMap":137},[1456],{"type":46,"tag":143,"props":1457,"children":1458},{"class":145,"line":146},[1459,1463,1467,1472],{"type":46,"tag":143,"props":1460,"children":1461},{"style":150},[1462],{"type":52,"value":1431},{"type":46,"tag":143,"props":1464,"children":1465},{"style":161},[1466],{"type":52,"value":1436},{"type":46,"tag":143,"props":1468,"children":1469},{"style":161},[1470],{"type":52,"value":1471}," -R100,200,800,600",{"type":46,"tag":143,"props":1473,"children":1474},{"style":161},[1475],{"type":52,"value":1476}," output\u002Fregion.png\n",{"type":46,"tag":88,"props":1478,"children":1479},{},[1480],{"type":46,"tag":65,"props":1481,"children":1482},{},[1483],{"type":52,"value":1484},"Specific window id:",{"type":46,"tag":132,"props":1486,"children":1488},{"className":134,"code":1487,"language":136,"meta":137,"style":137},"screencapture -x -l12345 output\u002Fwindow.png\n",[1489],{"type":46,"tag":123,"props":1490,"children":1491},{"__ignoreMap":137},[1492],{"type":46,"tag":143,"props":1493,"children":1494},{"class":145,"line":146},[1495,1499,1503,1508],{"type":46,"tag":143,"props":1496,"children":1497},{"style":150},[1498],{"type":52,"value":1431},{"type":46,"tag":143,"props":1500,"children":1501},{"style":161},[1502],{"type":52,"value":1436},{"type":46,"tag":143,"props":1504,"children":1505},{"style":161},[1506],{"type":52,"value":1507}," -l12345",{"type":46,"tag":143,"props":1509,"children":1510},{"style":161},[1511],{"type":52,"value":1512}," output\u002Fwindow.png\n",{"type":46,"tag":88,"props":1514,"children":1515},{},[1516],{"type":46,"tag":65,"props":1517,"children":1518},{},[1519],{"type":52,"value":1520},"Interactive selection or window pick:",{"type":46,"tag":132,"props":1522,"children":1524},{"className":134,"code":1523,"language":136,"meta":137,"style":137},"screencapture -x -i output\u002Finteractive.png\n",[1525],{"type":46,"tag":123,"props":1526,"children":1527},{"__ignoreMap":137},[1528],{"type":46,"tag":143,"props":1529,"children":1530},{"class":145,"line":146},[1531,1535,1539,1544],{"type":46,"tag":143,"props":1532,"children":1533},{"style":150},[1534],{"type":52,"value":1431},{"type":46,"tag":143,"props":1536,"children":1537},{"style":161},[1538],{"type":52,"value":1436},{"type":46,"tag":143,"props":1540,"children":1541},{"style":161},[1542],{"type":52,"value":1543}," -i",{"type":46,"tag":143,"props":1545,"children":1546},{"style":161},[1547],{"type":52,"value":1548}," output\u002Finteractive.png\n",{"type":46,"tag":978,"props":1550,"children":1552},{"id":1551},"linux",[1553],{"type":52,"value":1554},"Linux",{"type":46,"tag":88,"props":1556,"children":1557},{},[1558],{"type":46,"tag":65,"props":1559,"children":1560},{},[1561],{"type":52,"value":1562},"Full screen:",{"type":46,"tag":132,"props":1564,"children":1566},{"className":134,"code":1565,"language":136,"meta":137,"style":137},"scrot output\u002Fscreen.png\n",[1567],{"type":46,"tag":123,"props":1568,"children":1569},{"__ignoreMap":137},[1570],{"type":46,"tag":143,"props":1571,"children":1572},{"class":145,"line":146},[1573,1577],{"type":46,"tag":143,"props":1574,"children":1575},{"style":150},[1576],{"type":52,"value":1147},{"type":46,"tag":143,"props":1578,"children":1579},{"style":161},[1580],{"type":52,"value":581},{"type":46,"tag":132,"props":1582,"children":1584},{"className":134,"code":1583,"language":136,"meta":137,"style":137},"gnome-screenshot -f output\u002Fscreen.png\n",[1585],{"type":46,"tag":123,"props":1586,"children":1587},{"__ignoreMap":137},[1588],{"type":46,"tag":143,"props":1589,"children":1590},{"class":145,"line":146},[1591,1595,1600],{"type":46,"tag":143,"props":1592,"children":1593},{"style":150},[1594],{"type":52,"value":1156},{"type":46,"tag":143,"props":1596,"children":1597},{"style":161},[1598],{"type":52,"value":1599}," -f",{"type":46,"tag":143,"props":1601,"children":1602},{"style":161},[1603],{"type":52,"value":581},{"type":46,"tag":132,"props":1605,"children":1607},{"className":134,"code":1606,"language":136,"meta":137,"style":137},"import -window root output\u002Fscreen.png\n",[1608],{"type":46,"tag":123,"props":1609,"children":1610},{"__ignoreMap":137},[1611],{"type":46,"tag":143,"props":1612,"children":1613},{"class":145,"line":146},[1614,1618,1623,1628],{"type":46,"tag":143,"props":1615,"children":1616},{"style":150},[1617],{"type":52,"value":1167},{"type":46,"tag":143,"props":1619,"children":1620},{"style":161},[1621],{"type":52,"value":1622}," -window",{"type":46,"tag":143,"props":1624,"children":1625},{"style":161},[1626],{"type":52,"value":1627}," root",{"type":46,"tag":143,"props":1629,"children":1630},{"style":161},[1631],{"type":52,"value":581},{"type":46,"tag":88,"props":1633,"children":1634},{},[1635],{"type":46,"tag":65,"props":1636,"children":1637},{},[1638],{"type":52,"value":1448},{"type":46,"tag":132,"props":1640,"children":1642},{"className":134,"code":1641,"language":136,"meta":137,"style":137},"scrot -a 100,200,800,600 output\u002Fregion.png\n",[1643],{"type":46,"tag":123,"props":1644,"children":1645},{"__ignoreMap":137},[1646],{"type":46,"tag":143,"props":1647,"children":1648},{"class":145,"line":146},[1649,1653,1658,1663],{"type":46,"tag":143,"props":1650,"children":1651},{"style":150},[1652],{"type":52,"value":1147},{"type":46,"tag":143,"props":1654,"children":1655},{"style":161},[1656],{"type":52,"value":1657}," -a",{"type":46,"tag":143,"props":1659,"children":1660},{"style":161},[1661],{"type":52,"value":1662}," 100,200,800,600",{"type":46,"tag":143,"props":1664,"children":1665},{"style":161},[1666],{"type":52,"value":1476},{"type":46,"tag":132,"props":1668,"children":1670},{"className":134,"code":1669,"language":136,"meta":137,"style":137},"import -window root -crop 800x600+100+200 output\u002Fregion.png\n",[1671],{"type":46,"tag":123,"props":1672,"children":1673},{"__ignoreMap":137},[1674],{"type":46,"tag":143,"props":1675,"children":1676},{"class":145,"line":146},[1677,1681,1685,1689,1694,1699],{"type":46,"tag":143,"props":1678,"children":1679},{"style":150},[1680],{"type":52,"value":1167},{"type":46,"tag":143,"props":1682,"children":1683},{"style":161},[1684],{"type":52,"value":1622},{"type":46,"tag":143,"props":1686,"children":1687},{"style":161},[1688],{"type":52,"value":1627},{"type":46,"tag":143,"props":1690,"children":1691},{"style":161},[1692],{"type":52,"value":1693}," -crop",{"type":46,"tag":143,"props":1695,"children":1696},{"style":161},[1697],{"type":52,"value":1698}," 800x600+100+200",{"type":46,"tag":143,"props":1700,"children":1701},{"style":161},[1702],{"type":52,"value":1476},{"type":46,"tag":88,"props":1704,"children":1705},{},[1706],{"type":46,"tag":65,"props":1707,"children":1708},{},[1709],{"type":52,"value":1710},"Active window:",{"type":46,"tag":132,"props":1712,"children":1714},{"className":134,"code":1713,"language":136,"meta":137,"style":137},"scrot -u output\u002Fwindow.png\n",[1715],{"type":46,"tag":123,"props":1716,"children":1717},{"__ignoreMap":137},[1718],{"type":46,"tag":143,"props":1719,"children":1720},{"class":145,"line":146},[1721,1725,1730],{"type":46,"tag":143,"props":1722,"children":1723},{"style":150},[1724],{"type":52,"value":1147},{"type":46,"tag":143,"props":1726,"children":1727},{"style":161},[1728],{"type":52,"value":1729}," -u",{"type":46,"tag":143,"props":1731,"children":1732},{"style":161},[1733],{"type":52,"value":1512},{"type":46,"tag":132,"props":1735,"children":1737},{"className":134,"code":1736,"language":136,"meta":137,"style":137},"gnome-screenshot -w -f output\u002Fwindow.png\n",[1738],{"type":46,"tag":123,"props":1739,"children":1740},{"__ignoreMap":137},[1741],{"type":46,"tag":143,"props":1742,"children":1743},{"class":145,"line":146},[1744,1748,1753,1757],{"type":46,"tag":143,"props":1745,"children":1746},{"style":150},[1747],{"type":52,"value":1156},{"type":46,"tag":143,"props":1749,"children":1750},{"style":161},[1751],{"type":52,"value":1752}," -w",{"type":46,"tag":143,"props":1754,"children":1755},{"style":161},[1756],{"type":52,"value":1599},{"type":46,"tag":143,"props":1758,"children":1759},{"style":161},[1760],{"type":52,"value":1512},{"type":46,"tag":81,"props":1762,"children":1764},{"id":1763},"error-handling",[1765],{"type":52,"value":1766},"Error handling",{"type":46,"tag":88,"props":1768,"children":1769},{},[1770,1783,1796,1816,1842,1847],{"type":46,"tag":65,"props":1771,"children":1772},{},[1773,1775,1781],{"type":52,"value":1774},"On macOS, run ",{"type":46,"tag":123,"props":1776,"children":1778},{"className":1777},[],[1779],{"type":52,"value":1780},"bash \u003Cpath-to-skill>\u002Fscripts\u002Fensure_macos_permissions.sh",{"type":52,"value":1782}," first to request Screen Recording in one place.",{"type":46,"tag":65,"props":1784,"children":1785},{},[1786,1788,1794],{"type":52,"value":1787},"If you see \"screen capture checks are blocked in the sandbox\", \"could not create image from display\", or Swift ",{"type":46,"tag":123,"props":1789,"children":1791},{"className":1790},[],[1792],{"type":52,"value":1793},"ModuleCache",{"type":52,"value":1795}," permission errors in a sandboxed run, rerun the command with escalated permissions.",{"type":46,"tag":65,"props":1797,"children":1798},{},[1799,1801,1807,1809,1814],{"type":52,"value":1800},"If macOS app\u002Fwindow capture returns no matches, run ",{"type":46,"tag":123,"props":1802,"children":1804},{"className":1803},[],[1805],{"type":52,"value":1806},"--list-windows --app \"AppName\"",{"type":52,"value":1808}," and retry with ",{"type":46,"tag":123,"props":1810,"children":1812},{"className":1811},[],[1813],{"type":52,"value":1231},{"type":52,"value":1815},", and make sure the app is visible on screen.",{"type":46,"tag":65,"props":1817,"children":1818},{},[1819,1821,1827,1828,1834,1835,1841],{"type":52,"value":1820},"If Linux region\u002Fwindow capture fails, check tool availability with ",{"type":46,"tag":123,"props":1822,"children":1824},{"className":1823},[],[1825],{"type":52,"value":1826},"command -v scrot",{"type":52,"value":1201},{"type":46,"tag":123,"props":1829,"children":1831},{"className":1830},[],[1832],{"type":52,"value":1833},"command -v gnome-screenshot",{"type":52,"value":1209},{"type":46,"tag":123,"props":1836,"children":1838},{"className":1837},[],[1839],{"type":52,"value":1840},"command -v import",{"type":52,"value":1191},{"type":46,"tag":65,"props":1843,"children":1844},{},[1845],{"type":52,"value":1846},"If saving to the OS default location fails with permission errors in a sandbox, rerun the command with escalated permissions.",{"type":46,"tag":65,"props":1848,"children":1849},{},[1850],{"type":52,"value":1851},"Always report the saved file path in the response.",{"type":46,"tag":1853,"props":1854,"children":1855},"style",{},[1856],{"type":52,"value":1857},"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":1859,"total":1981},[1860,1879,1896,1912,1927,1950,1967],{"slug":1861,"name":1861,"fn":1862,"description":1863,"org":1864,"tags":1865,"stars":25,"repoUrl":26,"updatedAt":1878},"algorithmic-art","create generative art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1866,1869,1872,1875],{"name":1867,"slug":1868,"type":15},"Creative","creative",{"name":1870,"slug":1871,"type":15},"Generative Art","generative-art",{"name":1873,"slug":1874,"type":15},"Graphics","graphics",{"name":1876,"slug":1877,"type":15},"JavaScript","javascript","2026-07-13T06:41:35.540127",{"slug":1880,"name":1880,"fn":1881,"description":1882,"org":1883,"tags":1884,"stars":25,"repoUrl":26,"updatedAt":1895},"antfu","configure JavaScript projects with Anthony Fu's tools","Anthony Fu's opinionated tooling and conventions for JavaScript\u002FTypeScript projects. Use when setting up new projects, configuring ESLint\u002FPrettier alternatives, monorepos, library publishing, or when the user mentions Anthony Fu's preferences.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1885,1888,1891,1892],{"name":1886,"slug":1887,"type":15},"Best Practices","best-practices",{"name":1889,"slug":1890,"type":15},"Engineering","engineering",{"name":1876,"slug":1877,"type":15},{"name":1893,"slug":1894,"type":15},"TypeScript","typescript","2026-07-13T06:43:13.153309",{"slug":1897,"name":1897,"fn":1898,"description":1899,"org":1900,"tags":1901,"stars":25,"repoUrl":26,"updatedAt":1911},"brand-guidelines","apply Anthropic brand guidelines","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1902,1905,1908],{"name":1903,"slug":1904,"type":15},"Branding","branding",{"name":1906,"slug":1907,"type":15},"Design","design",{"name":1909,"slug":1910,"type":15},"Typography","typography","2026-07-13T06:43:06.077629",{"slug":1913,"name":1913,"fn":1914,"description":1915,"org":1916,"tags":1917,"stars":25,"repoUrl":26,"updatedAt":1926},"canvas-design","create visual art and design assets","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1918,1919,1920,1923],{"name":1867,"slug":1868,"type":15},{"name":1906,"slug":1907,"type":15},{"name":1921,"slug":1922,"type":15},"Images","images",{"name":1924,"slug":1925,"type":15},"PDF","pdf","2026-07-13T06:39:58.803113",{"slug":1928,"name":1928,"fn":1929,"description":1930,"org":1931,"tags":1932,"stars":25,"repoUrl":26,"updatedAt":1949},"ci-cd-containerization-advisor","design CI\u002FCD pipelines for Kotlin applications","Design reproducible build, image, and deployment pipelines for Kotlin plus Spring applications, including CI verification, layered containers, rollout safety, and deployment-time migration coordination. Use when creating or improving Dockerfiles, CI workflows, image hardening, Kubernetes manifests, release gates, or deployment strategies for Spring Boot services, especially where build reproducibility and operational safety matter.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1933,1936,1939,1942,1943,1946],{"name":1934,"slug":1935,"type":15},"CI\u002FCD","ci-cd",{"name":1937,"slug":1938,"type":15},"Containers","containers",{"name":1940,"slug":1941,"type":15},"Deployment","deployment",{"name":1889,"slug":1890,"type":15},{"name":1944,"slug":1945,"type":15},"Kotlin","kotlin",{"name":1947,"slug":1948,"type":15},"Spring","spring","2026-07-13T06:41:47.83899",{"slug":1951,"name":1951,"fn":1952,"description":1953,"org":1954,"tags":1955,"stars":25,"repoUrl":26,"updatedAt":1966},"cloudflare-deploy","deploy applications 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":9},[1956,1959,1962,1965],{"name":1957,"slug":1958,"type":15},"Cloudflare","cloudflare",{"name":1960,"slug":1961,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1963,"slug":1964,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1940,"slug":1941,"type":15},"2026-07-17T06:04:42.853896",{"slug":1968,"name":1968,"fn":1969,"description":1970,"org":1971,"tags":1972,"stars":25,"repoUrl":26,"updatedAt":1980},"compose-ui-control","interact with Compose Desktop applications","Control a running Compose Desktop application via HTTP. Use when you need to interact with UI elements, click buttons, enter text, wait for elements to appear, or capture screenshots in a Compose Desktop app that has compose-ui-test-server enabled.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1973,1976,1977],{"name":1974,"slug":1975,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},{"name":1978,"slug":1979,"type":15},"UI Components","ui-components","2026-07-13T06:40:38.798626",128,{"items":1983,"total":2108},[1984,2000,2009,2018,2029,2039,2048,2057,2066,2076,2085,2098],{"slug":1985,"name":1985,"fn":1986,"description":1987,"org":1988,"tags":1989,"stars":1997,"repoUrl":1998,"updatedAt":1999},"mps-aspect-accessories","configure JetBrains MPS module dependencies","Wire MPS module and model dependencies, used languages, used devkits, extended languages, runtime solutions, accessory models, and language\u002Fdependency versions. Use when adding\u002Fremoving module dependencies, importing languages or devkits into a model, declaring runtime solutions, or shipping accessory content visible to consumers without explicit import.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[1990,1993,1996],{"name":1991,"slug":1992,"type":15},"Architecture","architecture",{"name":1994,"slug":1995,"type":15},"Configuration","configuration",{"name":1889,"slug":1890,"type":15},1650,"https:\u002F\u002Fgithub.com\u002FJetBrains\u002FMPS","2026-07-17T06:06:57.311661",{"slug":2001,"name":2001,"fn":2002,"description":2003,"org":2004,"tags":2005,"stars":1997,"repoUrl":1998,"updatedAt":2008},"mps-aspect-actions","define and edit MPS node factories","Use when defining or editing MPS node factories (the \"actions\" aspect) — `NodeFactories` roots, per-concept `NodeFactory` setup functions that initialize a freshly created node and optionally copy data from a replaced `sampleNode`, plus the actions aspect's `CopyPasteHandlers` and `PasteWrappers` roots. Reach for this skill when a substitution, side transform, completion replacement, or `add new initialized(...)` should preserve fields from the node it is replacing, or when defaults set in a constructor are not enough.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2006,2007],{"name":1991,"slug":1992,"type":15},{"name":1889,"slug":1890,"type":15},"2026-07-17T06:04:48.066901",{"slug":2010,"name":2010,"fn":2011,"description":2012,"org":2013,"tags":2014,"stars":1997,"repoUrl":1998,"updatedAt":2017},"mps-aspect-behavior","define and edit MPS concept behavior","Use when defining or editing MPS `ConceptBehavior` — per-concept methods (non-virtual \u002F virtual \u002F abstract \u002F static \u002F virtual static), constructors, virtual dispatch (MRO), super and interface-default calls (`super\u003CInterface>.method`), overriding methods from `lang.core.behavior` interfaces such as `ScopeProvider.getScope` \u002F `INamedConcept.getName` \u002F `BaseConcept.getPresentation`, calling sibling methods (`LocalBehaviorMethodCall`) and behavior methods from other aspects via `node.method(...)`. Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fbehavior.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2015,2016],{"name":1991,"slug":1992,"type":15},{"name":1889,"slug":1890,"type":15},"2026-07-13T06:45:21.757084",{"slug":2019,"name":2019,"fn":2020,"description":2021,"org":2022,"tags":2023,"stars":1997,"repoUrl":1998,"updatedAt":2028},"mps-aspect-constraints","define JetBrains MPS language constraints","Use when defining or editing MPS language constraints — property validators \u002F setters \u002F getters, referent search scopes (imperative or inherited via `ScopeProvider.getScope`), `referentSetHandler` side effects, default-scope blocks, `canBeChild` \u002F `canBeParent` \u002F `canBeAncestor` \u002F `canBeRoot` placement rules, `defaultConcreteConcept` for abstract concepts, `set \u003Cread-only>` and `{name}` aliasing, and scope helpers (`SimpleRoleScope`, `ListScope`, `CompositeScope`, `HidingByNameScope`). Reach for this skill whenever the task involves authoring or modifying `\u003Clang>\u002FlanguageModels\u002Fconstraints.mps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2024,2025],{"name":1991,"slug":1992,"type":15},{"name":2026,"slug":2027,"type":15},"Code Analysis","code-analysis","2026-07-23T05:41:33.639365",{"slug":2030,"name":2030,"fn":2031,"description":2032,"org":2033,"tags":2034,"stars":1997,"repoUrl":1998,"updatedAt":2038},"mps-aspect-dataflow","define and debug MPS dataflow builders","Use when defining or debugging MPS dataflow builders for a concept — control\u002Fdata flow declarations that drive reachability analysis and variable-use checking. Covers DataFlowBuilderDeclaration, BuilderBlock, emit instructions (code for, jump, ifjump, label, read, write, ret, mayBeUnreachable), positions (AfterPosition, BeforePosition, LabelPosition), the jetbrains.mps.lang.dataFlow language, the NodeParameter implicit, BL+smodel usage inside builder bodies, and IBuilderMode for advanced analyses such as nullable\u002Fnon-null tracking.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2035],{"name":2036,"slug":2037,"type":15},"Data Analysis","data-analysis","2026-07-13T06:45:19.114674",{"slug":2040,"name":2040,"fn":2041,"description":2042,"org":2043,"tags":2044,"stars":1997,"repoUrl":1998,"updatedAt":2047},"mps-aspect-editor","define MPS editor layouts","Use when creating or changing MPS editor definitions — the overall workflow from scaffolding a `ConceptEditorDeclaration` through componentizing reusable `EditorComponentDeclaration`s, refining cell models and cell layouts, applying style sheets and indent-layout style items, wiring smart references, leveraging inheritance via super-concepts and interfaces, inspecting (`print_node_json`, `show_node_representation`) and validating (`check_root_node_problems`). Covers `jetbrains.mps.lang.editor` cell models (`CellModel_RefNode`\u002F`CellModel_RefNodeList`\u002F`CellModel_RefCell`\u002F`CellModel_Property`\u002F`CellModel_Constant`), layout choices, and JSON blueprints for common editor shapes. For the non-layout side (action maps, keymaps, transformation\u002Fsubstitute menus) use `mps-aspect-editor-menus-and-keymaps`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2045,2046],{"name":1906,"slug":1907,"type":15},{"name":1978,"slug":1979,"type":15},"2026-07-23T05:41:56.638151",{"slug":2049,"name":2049,"fn":2050,"description":2051,"org":2052,"tags":2053,"stars":1997,"repoUrl":1998,"updatedAt":2056},"mps-aspect-editor-menus-and-keymaps","author MPS editor menus and keymaps","Use when authoring the **non-layout** parts of the MPS editor aspect — what happens when the user types, presses a key, triggers completion, pastes, or invokes a context action. Covers action maps (`CellActionMapDeclaration`), cell keymaps (`CellKeyMapDeclaration`), transformation menus (`TransformationMenu_Default` \u002F `_Named` \u002F `_Contribution`), substitute menus (`SubstituteMenu_Default` \u002F `SubstituteMenu` \u002F contributions), side transforms (LEFT\u002FRIGHT), legacy cell menus, paste wrappers and copy-paste handlers (in the actions language), completion styling, reference presentation, two-step deletion, and the editor selection API. Trigger terms: `actionMap`, `keyMap`, `delete_action_id`, `transformationMenu`, `substituteMenu`, `Ctrl+Space`, `Ctrl+Alt+B`, side transform, paste wrapper, completion styling, `PasteWrappers`, `CopyPasteHandlers`. For the **layout** side (cells, layouts, style sheets) use `mps-aspect-editor` instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2054,2055],{"name":1889,"slug":1890,"type":15},{"name":1978,"slug":1979,"type":15},"2026-07-23T05:41:49.666535",{"slug":2058,"name":2058,"fn":2059,"description":2060,"org":2061,"tags":2062,"stars":1997,"repoUrl":1998,"updatedAt":2065},"mps-aspect-generation-plan","modify MPS generation plans","Use when defining or modifying an MPS generation plan — explicit ordering of generators, checkpoints for cross-model reference resolution, forks for parallel branches, IncludePlan composition, conditional PlanContribution activation, ParameterEquals\u002FConceptListSelector fork selectors, and InitModelAttributes for targetFacet routing. Apply when working with @genplan models, the jetbrains.mps.lang.generator.plan language, attaching plans via DevKits or the Custom generation facet, or debugging cross-model mapping label resolution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2063,2064],{"name":1991,"slug":1992,"type":15},{"name":1889,"slug":1890,"type":15},"2026-07-13T06:44:59.507855",{"slug":2067,"name":2067,"fn":2068,"description":2069,"org":2070,"tags":2071,"stars":1997,"repoUrl":1998,"updatedAt":2075},"mps-aspect-generator","define JetBrains MPS generator rules","Use when defining or modifying MPS generators — author a generator module, add or edit root\u002Freduction\u002Fweaving\u002Fpattern mapping rules, attach template macros ($COPY_SRC, $LOOP, $IF, $PROPERTY, $REF, $SWITCH, $MAP_SRC, $WEAVE, $INSERT, $LABEL, $TRACE, $VAR), wire mapping labels, build template switches, write pre\u002Fpost mapping scripts, navigate `genContext`, or debug \"rule didn't fire\", missing references, empty output, infinite reduction loops, and generated-Java compile failures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2072,2073,2074],{"name":1991,"slug":1992,"type":15},{"name":2026,"slug":2027,"type":15},{"name":1889,"slug":1890,"type":15},"2026-07-17T06:06:58.042999",{"slug":2077,"name":2077,"fn":2078,"description":2079,"org":2080,"tags":2081,"stars":1997,"repoUrl":1998,"updatedAt":2084},"mps-aspect-intentions","define and edit MPS intentions","Use when defining or editing MPS intentions (the Alt+Enter context-action aspect) — adding `IntentionDeclaration` roots, parameterized or surround-with variants, description\u002FisApplicable\u002Fexecute blocks, child-filter functions, factory-initialized AST splicing, or debugging why an intention is not offered. Lives in the language's `intentions` model and uses `jetbrains.mps.lang.intentions`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2082,2083],{"name":1991,"slug":1992,"type":15},{"name":1889,"slug":1890,"type":15},"2026-07-23T05:41:48.692899",{"slug":2086,"name":2086,"fn":2087,"description":2088,"org":2089,"tags":2090,"stars":1997,"repoUrl":1998,"updatedAt":2097},"mps-aspect-migrations","author and debug MPS migration scripts","Use when authoring or debugging MPS migration scripts that upgrade user models after a language definition changes — covers jetbrains.mps.lang.migration (MigrationScript class-based, PureMigrationScript declarative, MoveConcept\u002FMoveContainmentLink\u002FMoveReferenceLink\u002FMoveProperty, ordering via OrderDependency, data exchange via putData\u002FgetData, RefactoringLog, ConceptMigrationReference) and jetbrains.mps.lang.script Enhancement Scripts (MigrationScript with MigrationScriptPart_Instance, ExtractInterfaceMigration, FactoryMigrationScriptPart, CommentMigrationScriptPart) — when a model needs version-gated upgrade, concept rename or removal, link or property rename, instance-level transformation, or composition of migration steps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2091,2094],{"name":2092,"slug":2093,"type":15},"Debugging","debugging",{"name":2095,"slug":2096,"type":15},"Migration","migration","2026-07-13T06:45:20.372122",{"slug":2099,"name":2099,"fn":2100,"description":2101,"org":2102,"tags":2103,"stars":1997,"repoUrl":1998,"updatedAt":2107},"mps-aspect-structure-concepts","define concepts in MPS structure aspect","Define concepts, interface concepts, enumerations, and constrained data types in an MPS language's `structure` aspect. Covers smart-reference detection, alias rules, cardinality, INamedConcept usage, bulk creation, and the full `mps_mcp_alter_structure` \u002F `mps_mcp_query_structure` reference. Use when authoring or modifying a language's structure model.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":9},[2104],{"name":2105,"slug":2106,"type":15},"Data Modeling","data-modeling","2026-07-23T05:41:30.705975",188]