[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-openai-screenshot":3,"mdc--sms9ls-key":37,"related-org-trail-of-bits-openai-screenshot":1598,"related-repo-trail-of-bits-openai-screenshot":1760},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"openai-screenshot","capture desktop and 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. Originally from OpenAI's curated skills catalog.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"trail-of-bits","Trail of Bits","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftrail-of-bits.png","trailofbits",[13,17,20,23],{"name":14,"slug":15,"type":16},"Windows","windows","tag",{"name":18,"slug":19,"type":16},"macOS","macos",{"name":21,"slug":22,"type":16},"Desktop","desktop",{"name":24,"slug":25,"type":16},"Screenshots","screenshots",460,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated","2026-07-18T05:47:17.71327",null,29,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Curated, community-vetted Claude Code plugin marketplace","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated\u002Ftree\u002FHEAD\u002Fplugins\u002Fopenai-screenshot\u002Fskills\u002Fopenai-screenshot","---\nname: openai-screenshot\ndescription: Use when the user explicitly asks for a desktop or system screenshot (full screen, specific\n  app or window, or a pixel region), or when tool-specific capture capabilities are unavailable and an\n  OS-level capture is needed. Originally from OpenAI's curated skills catalog.\nallowed-tools:\n- Bash\n- Read\n- Grep\n- Glob\n- Write\n- Edit\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 the agent 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 {baseDir}\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 {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --app \"the agent\"\n```\n\nFor the agent inspection runs, keep the output in temp:\n\n```bash\nbash {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 {baseDir}\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 {baseDir}\u002Fscripts\u002Ftake_screenshot.py\n```\n\nCommon patterns:\n\n- Default location (user asked for \"a screenshot\"):\n\n```bash\npython3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py\n```\n\n- Temp location (the agent visual check):\n\n```bash\npython3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --mode temp\n```\n\n- Explicit location (user provided a path or filename):\n\n```bash\npython3 {baseDir}\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 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --app \"the agent\"\n```\n\n- Specific window title within an app (macOS only):\n\n```bash\npython3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --app \"the agent\" --window-name \"Settings\"\n```\n\n- List matching window ids before capturing (macOS only):\n\n```bash\npython3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --list-windows --app \"the agent\"\n```\n\n- Pixel region (x,y,w,h):\n\n```bash\npython3 {baseDir}\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 {baseDir}\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 {baseDir}\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 {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 {baseDir}\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 {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1\n```\n\nCommon patterns:\n\n- Default location:\n\n```powershell\npowershell -ExecutionPolicy Bypass -File {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1\n```\n\n- Temp location (the agent visual check):\n\n```powershell\npowershell -ExecutionPolicy Bypass -File {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp\n```\n\n- Explicit path:\n\n```powershell\npowershell -ExecutionPolicy Bypass -File {baseDir}\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 {baseDir}\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 {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -ActiveWindow\n```\n\n- Specific window handle (only when provided):\n\n```powershell\npowershell -ExecutionPolicy Bypass -File {baseDir}\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 {baseDir}\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\n## When to Use\n\n\u003C!-- TODO: review -->\n\n## When NOT to Use\n\n\u003C!-- TODO: review -->\n\n",{"data":38,"body":46},{"name":4,"description":6,"allowed-tools":39},[40,41,42,43,44,45],"Bash","Read","Grep","Glob","Write","Edit",{"type":47,"children":48},"root",[49,58,64,84,91,110,116,121,135,163,168,233,238,303,308,314,319,338,343,351,368,376,402,410,438,446,480,488,540,548,587,595,632,648,679,687,716,737,744,758,818,826,832,853,859,864,896,901,920,962,968,973,989,993,1001,1014,1021,1035,1043,1057,1064,1078,1086,1100,1108,1122,1128,1133,1137,1145,1169,1177,1205,1213,1241,1249,1277,1283,1291,1309,1332,1360,1367,1395,1431,1439,1462,1489,1495,1580,1586,1592],{"type":50,"tag":51,"props":52,"children":54},"element","h1",{"id":53},"screenshot-capture",[55],{"type":56,"value":57},"text","Screenshot Capture",{"type":50,"tag":59,"props":60,"children":61},"p",{},[62],{"type":56,"value":63},"Follow these save-location rules every time:",{"type":50,"tag":65,"props":66,"children":67},"ol",{},[68,74,79],{"type":50,"tag":69,"props":70,"children":71},"li",{},[72],{"type":56,"value":73},"If the user specifies a path, save there.",{"type":50,"tag":69,"props":75,"children":76},{},[77],{"type":56,"value":78},"If the user asks for a screenshot without a path, save to the OS default screenshot location.",{"type":50,"tag":69,"props":80,"children":81},{},[82],{"type":56,"value":83},"If the agent needs a screenshot for its own inspection, save to the temp directory.",{"type":50,"tag":85,"props":86,"children":88},"h2",{"id":87},"tool-priority",[89],{"type":56,"value":90},"Tool priority",{"type":50,"tag":92,"props":93,"children":94},"ul",{},[95,100,105],{"type":50,"tag":69,"props":96,"children":97},{},[98],{"type":56,"value":99},"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":50,"tag":69,"props":101,"children":102},{},[103],{"type":56,"value":104},"Use this skill when explicitly asked, for whole-system desktop captures, or when a tool-specific capture cannot get what you need.",{"type":50,"tag":69,"props":106,"children":107},{},[108],{"type":56,"value":109},"Otherwise, treat this skill as the default for desktop apps without a better-integrated capture tool.",{"type":50,"tag":85,"props":111,"children":113},{"id":112},"macos-permission-preflight-reduce-repeated-prompts",[114],{"type":56,"value":115},"macOS permission preflight (reduce repeated prompts)",{"type":50,"tag":59,"props":117,"children":118},{},[119],{"type":56,"value":120},"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":50,"tag":59,"props":122,"children":123},{},[124,126,133],{"type":56,"value":125},"The helpers route Swift's module cache to ",{"type":50,"tag":127,"props":128,"children":130},"code",{"className":129},[],[131],{"type":56,"value":132},"$TMPDIR\u002Fcodex-swift-module-cache",{"type":56,"value":134},"\nto avoid extra sandbox module-cache prompts.",{"type":50,"tag":136,"props":137,"children":142},"pre",{"className":138,"code":139,"language":140,"meta":141,"style":141},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","bash {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh\n","bash","",[143],{"type":50,"tag":127,"props":144,"children":145},{"__ignoreMap":141},[146],{"type":50,"tag":147,"props":148,"children":151},"span",{"class":149,"line":150},"line",1,[152,157],{"type":50,"tag":147,"props":153,"children":155},{"style":154},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[156],{"type":56,"value":140},{"type":50,"tag":147,"props":158,"children":160},{"style":159},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[161],{"type":56,"value":162}," {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh\n",{"type":50,"tag":59,"props":164,"children":165},{},[166],{"type":56,"value":167},"To avoid multiple sandbox approval prompts, combine preflight + capture in one\ncommand when possible:",{"type":50,"tag":136,"props":169,"children":171},{"className":138,"code":170,"language":140,"meta":141,"style":141},"bash {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --app \"the agent\"\n",[172],{"type":50,"tag":127,"props":173,"children":174},{"__ignoreMap":141},[175,199],{"type":50,"tag":147,"props":176,"children":177},{"class":149,"line":150},[178,182,187,193],{"type":50,"tag":147,"props":179,"children":180},{"style":154},[181],{"type":56,"value":140},{"type":50,"tag":147,"props":183,"children":184},{"style":159},[185],{"type":56,"value":186}," {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh",{"type":50,"tag":147,"props":188,"children":190},{"style":189},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[191],{"type":56,"value":192}," &&",{"type":50,"tag":147,"props":194,"children":196},{"style":195},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[197],{"type":56,"value":198}," \\\n",{"type":50,"tag":147,"props":200,"children":202},{"class":149,"line":201},2,[203,208,213,218,223,228],{"type":50,"tag":147,"props":204,"children":205},{"style":154},[206],{"type":56,"value":207},"python3",{"type":50,"tag":147,"props":209,"children":210},{"style":159},[211],{"type":56,"value":212}," {baseDir}\u002Fscripts\u002Ftake_screenshot.py",{"type":50,"tag":147,"props":214,"children":215},{"style":159},[216],{"type":56,"value":217}," --app",{"type":50,"tag":147,"props":219,"children":220},{"style":189},[221],{"type":56,"value":222}," \"",{"type":50,"tag":147,"props":224,"children":225},{"style":159},[226],{"type":56,"value":227},"the agent",{"type":50,"tag":147,"props":229,"children":230},{"style":189},[231],{"type":56,"value":232},"\"\n",{"type":50,"tag":59,"props":234,"children":235},{},[236],{"type":56,"value":237},"For the agent inspection runs, keep the output in temp:",{"type":50,"tag":136,"props":239,"children":241},{"className":138,"code":240,"language":140,"meta":141,"style":141},"bash {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh && \\\npython3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --app \"\u003CApp>\" --mode temp\n",[242],{"type":50,"tag":127,"props":243,"children":244},{"__ignoreMap":141},[245,264],{"type":50,"tag":147,"props":246,"children":247},{"class":149,"line":150},[248,252,256,260],{"type":50,"tag":147,"props":249,"children":250},{"style":154},[251],{"type":56,"value":140},{"type":50,"tag":147,"props":253,"children":254},{"style":159},[255],{"type":56,"value":186},{"type":50,"tag":147,"props":257,"children":258},{"style":189},[259],{"type":56,"value":192},{"type":50,"tag":147,"props":261,"children":262},{"style":195},[263],{"type":56,"value":198},{"type":50,"tag":147,"props":265,"children":266},{"class":149,"line":201},[267,271,275,279,283,288,293,298],{"type":50,"tag":147,"props":268,"children":269},{"style":154},[270],{"type":56,"value":207},{"type":50,"tag":147,"props":272,"children":273},{"style":159},[274],{"type":56,"value":212},{"type":50,"tag":147,"props":276,"children":277},{"style":159},[278],{"type":56,"value":217},{"type":50,"tag":147,"props":280,"children":281},{"style":189},[282],{"type":56,"value":222},{"type":50,"tag":147,"props":284,"children":285},{"style":159},[286],{"type":56,"value":287},"\u003CApp>",{"type":50,"tag":147,"props":289,"children":290},{"style":189},[291],{"type":56,"value":292},"\"",{"type":50,"tag":147,"props":294,"children":295},{"style":159},[296],{"type":56,"value":297}," --mode",{"type":50,"tag":147,"props":299,"children":300},{"style":159},[301],{"type":56,"value":302}," temp\n",{"type":50,"tag":59,"props":304,"children":305},{},[306],{"type":56,"value":307},"Use the bundled scripts to avoid re-deriving OS-specific commands.",{"type":50,"tag":85,"props":309,"children":311},{"id":310},"macos-and-linux-python-helper",[312],{"type":56,"value":313},"macOS and Linux (Python helper)",{"type":50,"tag":59,"props":315,"children":316},{},[317],{"type":56,"value":318},"Run the helper from the repo root:",{"type":50,"tag":136,"props":320,"children":322},{"className":138,"code":321,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py\n",[323],{"type":50,"tag":127,"props":324,"children":325},{"__ignoreMap":141},[326],{"type":50,"tag":147,"props":327,"children":328},{"class":149,"line":150},[329,333],{"type":50,"tag":147,"props":330,"children":331},{"style":154},[332],{"type":56,"value":207},{"type":50,"tag":147,"props":334,"children":335},{"style":159},[336],{"type":56,"value":337}," {baseDir}\u002Fscripts\u002Ftake_screenshot.py\n",{"type":50,"tag":59,"props":339,"children":340},{},[341],{"type":56,"value":342},"Common patterns:",{"type":50,"tag":92,"props":344,"children":345},{},[346],{"type":50,"tag":69,"props":347,"children":348},{},[349],{"type":56,"value":350},"Default location (user asked for \"a screenshot\"):",{"type":50,"tag":136,"props":352,"children":353},{"className":138,"code":321,"language":140,"meta":141,"style":141},[354],{"type":50,"tag":127,"props":355,"children":356},{"__ignoreMap":141},[357],{"type":50,"tag":147,"props":358,"children":359},{"class":149,"line":150},[360,364],{"type":50,"tag":147,"props":361,"children":362},{"style":154},[363],{"type":56,"value":207},{"type":50,"tag":147,"props":365,"children":366},{"style":159},[367],{"type":56,"value":337},{"type":50,"tag":92,"props":369,"children":370},{},[371],{"type":50,"tag":69,"props":372,"children":373},{},[374],{"type":56,"value":375},"Temp location (the agent visual check):",{"type":50,"tag":136,"props":377,"children":379},{"className":138,"code":378,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --mode temp\n",[380],{"type":50,"tag":127,"props":381,"children":382},{"__ignoreMap":141},[383],{"type":50,"tag":147,"props":384,"children":385},{"class":149,"line":150},[386,390,394,398],{"type":50,"tag":147,"props":387,"children":388},{"style":154},[389],{"type":56,"value":207},{"type":50,"tag":147,"props":391,"children":392},{"style":159},[393],{"type":56,"value":212},{"type":50,"tag":147,"props":395,"children":396},{"style":159},[397],{"type":56,"value":297},{"type":50,"tag":147,"props":399,"children":400},{"style":159},[401],{"type":56,"value":302},{"type":50,"tag":92,"props":403,"children":404},{},[405],{"type":50,"tag":69,"props":406,"children":407},{},[408],{"type":56,"value":409},"Explicit location (user provided a path or filename):",{"type":50,"tag":136,"props":411,"children":413},{"className":138,"code":412,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --path output\u002Fscreen.png\n",[414],{"type":50,"tag":127,"props":415,"children":416},{"__ignoreMap":141},[417],{"type":50,"tag":147,"props":418,"children":419},{"class":149,"line":150},[420,424,428,433],{"type":50,"tag":147,"props":421,"children":422},{"style":154},[423],{"type":56,"value":207},{"type":50,"tag":147,"props":425,"children":426},{"style":159},[427],{"type":56,"value":212},{"type":50,"tag":147,"props":429,"children":430},{"style":159},[431],{"type":56,"value":432}," --path",{"type":50,"tag":147,"props":434,"children":435},{"style":159},[436],{"type":56,"value":437}," output\u002Fscreen.png\n",{"type":50,"tag":92,"props":439,"children":440},{},[441],{"type":50,"tag":69,"props":442,"children":443},{},[444],{"type":56,"value":445},"App\u002Fwindow capture by app name (macOS only; substring match is OK; captures all matching windows):",{"type":50,"tag":136,"props":447,"children":449},{"className":138,"code":448,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --app \"the agent\"\n",[450],{"type":50,"tag":127,"props":451,"children":452},{"__ignoreMap":141},[453],{"type":50,"tag":147,"props":454,"children":455},{"class":149,"line":150},[456,460,464,468,472,476],{"type":50,"tag":147,"props":457,"children":458},{"style":154},[459],{"type":56,"value":207},{"type":50,"tag":147,"props":461,"children":462},{"style":159},[463],{"type":56,"value":212},{"type":50,"tag":147,"props":465,"children":466},{"style":159},[467],{"type":56,"value":217},{"type":50,"tag":147,"props":469,"children":470},{"style":189},[471],{"type":56,"value":222},{"type":50,"tag":147,"props":473,"children":474},{"style":159},[475],{"type":56,"value":227},{"type":50,"tag":147,"props":477,"children":478},{"style":189},[479],{"type":56,"value":232},{"type":50,"tag":92,"props":481,"children":482},{},[483],{"type":50,"tag":69,"props":484,"children":485},{},[486],{"type":56,"value":487},"Specific window title within an app (macOS only):",{"type":50,"tag":136,"props":489,"children":491},{"className":138,"code":490,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --app \"the agent\" --window-name \"Settings\"\n",[492],{"type":50,"tag":127,"props":493,"children":494},{"__ignoreMap":141},[495],{"type":50,"tag":147,"props":496,"children":497},{"class":149,"line":150},[498,502,506,510,514,518,522,527,531,536],{"type":50,"tag":147,"props":499,"children":500},{"style":154},[501],{"type":56,"value":207},{"type":50,"tag":147,"props":503,"children":504},{"style":159},[505],{"type":56,"value":212},{"type":50,"tag":147,"props":507,"children":508},{"style":159},[509],{"type":56,"value":217},{"type":50,"tag":147,"props":511,"children":512},{"style":189},[513],{"type":56,"value":222},{"type":50,"tag":147,"props":515,"children":516},{"style":159},[517],{"type":56,"value":227},{"type":50,"tag":147,"props":519,"children":520},{"style":189},[521],{"type":56,"value":292},{"type":50,"tag":147,"props":523,"children":524},{"style":159},[525],{"type":56,"value":526}," --window-name",{"type":50,"tag":147,"props":528,"children":529},{"style":189},[530],{"type":56,"value":222},{"type":50,"tag":147,"props":532,"children":533},{"style":159},[534],{"type":56,"value":535},"Settings",{"type":50,"tag":147,"props":537,"children":538},{"style":189},[539],{"type":56,"value":232},{"type":50,"tag":92,"props":541,"children":542},{},[543],{"type":50,"tag":69,"props":544,"children":545},{},[546],{"type":56,"value":547},"List matching window ids before capturing (macOS only):",{"type":50,"tag":136,"props":549,"children":551},{"className":138,"code":550,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --list-windows --app \"the agent\"\n",[552],{"type":50,"tag":127,"props":553,"children":554},{"__ignoreMap":141},[555],{"type":50,"tag":147,"props":556,"children":557},{"class":149,"line":150},[558,562,566,571,575,579,583],{"type":50,"tag":147,"props":559,"children":560},{"style":154},[561],{"type":56,"value":207},{"type":50,"tag":147,"props":563,"children":564},{"style":159},[565],{"type":56,"value":212},{"type":50,"tag":147,"props":567,"children":568},{"style":159},[569],{"type":56,"value":570}," --list-windows",{"type":50,"tag":147,"props":572,"children":573},{"style":159},[574],{"type":56,"value":217},{"type":50,"tag":147,"props":576,"children":577},{"style":189},[578],{"type":56,"value":222},{"type":50,"tag":147,"props":580,"children":581},{"style":159},[582],{"type":56,"value":227},{"type":50,"tag":147,"props":584,"children":585},{"style":189},[586],{"type":56,"value":232},{"type":50,"tag":92,"props":588,"children":589},{},[590],{"type":50,"tag":69,"props":591,"children":592},{},[593],{"type":56,"value":594},"Pixel region (x,y,w,h):",{"type":50,"tag":136,"props":596,"children":598},{"className":138,"code":597,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --mode temp --region 100,200,800,600\n",[599],{"type":50,"tag":127,"props":600,"children":601},{"__ignoreMap":141},[602],{"type":50,"tag":147,"props":603,"children":604},{"class":149,"line":150},[605,609,613,617,622,627],{"type":50,"tag":147,"props":606,"children":607},{"style":154},[608],{"type":56,"value":207},{"type":50,"tag":147,"props":610,"children":611},{"style":159},[612],{"type":56,"value":212},{"type":50,"tag":147,"props":614,"children":615},{"style":159},[616],{"type":56,"value":297},{"type":50,"tag":147,"props":618,"children":619},{"style":159},[620],{"type":56,"value":621}," temp",{"type":50,"tag":147,"props":623,"children":624},{"style":159},[625],{"type":56,"value":626}," --region",{"type":50,"tag":147,"props":628,"children":629},{"style":159},[630],{"type":56,"value":631}," 100,200,800,600\n",{"type":50,"tag":92,"props":633,"children":634},{},[635],{"type":50,"tag":69,"props":636,"children":637},{},[638,640,646],{"type":56,"value":639},"Focused\u002Factive window (captures only the frontmost window; use ",{"type":50,"tag":127,"props":641,"children":643},{"className":642},[],[644],{"type":56,"value":645},"--app",{"type":56,"value":647}," to capture all windows):",{"type":50,"tag":136,"props":649,"children":651},{"className":138,"code":650,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --mode temp --active-window\n",[652],{"type":50,"tag":127,"props":653,"children":654},{"__ignoreMap":141},[655],{"type":50,"tag":147,"props":656,"children":657},{"class":149,"line":150},[658,662,666,670,674],{"type":50,"tag":147,"props":659,"children":660},{"style":154},[661],{"type":56,"value":207},{"type":50,"tag":147,"props":663,"children":664},{"style":159},[665],{"type":56,"value":212},{"type":50,"tag":147,"props":667,"children":668},{"style":159},[669],{"type":56,"value":297},{"type":50,"tag":147,"props":671,"children":672},{"style":159},[673],{"type":56,"value":621},{"type":50,"tag":147,"props":675,"children":676},{"style":159},[677],{"type":56,"value":678}," --active-window\n",{"type":50,"tag":92,"props":680,"children":681},{},[682],{"type":50,"tag":69,"props":683,"children":684},{},[685],{"type":56,"value":686},"Specific window id (use --list-windows on macOS to discover ids):",{"type":50,"tag":136,"props":688,"children":690},{"className":138,"code":689,"language":140,"meta":141,"style":141},"python3 {baseDir}\u002Fscripts\u002Ftake_screenshot.py --window-id 12345\n",[691],{"type":50,"tag":127,"props":692,"children":693},{"__ignoreMap":141},[694],{"type":50,"tag":147,"props":695,"children":696},{"class":149,"line":150},[697,701,705,710],{"type":50,"tag":147,"props":698,"children":699},{"style":154},[700],{"type":56,"value":207},{"type":50,"tag":147,"props":702,"children":703},{"style":159},[704],{"type":56,"value":212},{"type":50,"tag":147,"props":706,"children":707},{"style":159},[708],{"type":56,"value":709}," --window-id",{"type":50,"tag":147,"props":711,"children":713},{"style":712},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[714],{"type":56,"value":715}," 12345\n",{"type":50,"tag":59,"props":717,"children":718},{},[719,721,727,729,735],{"type":56,"value":720},"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":50,"tag":127,"props":722,"children":724},{"className":723},[],[725],{"type":56,"value":726},"-w\u003CwindowId>",{"type":56,"value":728}," or ",{"type":50,"tag":127,"props":730,"children":732},{"className":731},[],[733],{"type":56,"value":734},"-d\u003Cdisplay>",{"type":56,"value":736},". View each path sequentially with the image viewer tool, and only manipulate images if needed or requested.",{"type":50,"tag":738,"props":739,"children":741},"h3",{"id":740},"workflow-examples",[742],{"type":56,"value":743},"Workflow examples",{"type":50,"tag":92,"props":745,"children":746},{},[747],{"type":50,"tag":69,"props":748,"children":749},{},[750,752],{"type":56,"value":751},"\"Take a look at ",{"type":50,"tag":753,"props":754,"children":755},"app",{},[756],{"type":56,"value":757}," and tell me what you see\": capture to temp, then view each printed path in order.",{"type":50,"tag":136,"props":759,"children":760},{"className":138,"code":240,"language":140,"meta":141,"style":141},[761],{"type":50,"tag":127,"props":762,"children":763},{"__ignoreMap":141},[764,783],{"type":50,"tag":147,"props":765,"children":766},{"class":149,"line":150},[767,771,775,779],{"type":50,"tag":147,"props":768,"children":769},{"style":154},[770],{"type":56,"value":140},{"type":50,"tag":147,"props":772,"children":773},{"style":159},[774],{"type":56,"value":186},{"type":50,"tag":147,"props":776,"children":777},{"style":189},[778],{"type":56,"value":192},{"type":50,"tag":147,"props":780,"children":781},{"style":195},[782],{"type":56,"value":198},{"type":50,"tag":147,"props":784,"children":785},{"class":149,"line":201},[786,790,794,798,802,806,810,814],{"type":50,"tag":147,"props":787,"children":788},{"style":154},[789],{"type":56,"value":207},{"type":50,"tag":147,"props":791,"children":792},{"style":159},[793],{"type":56,"value":212},{"type":50,"tag":147,"props":795,"children":796},{"style":159},[797],{"type":56,"value":217},{"type":50,"tag":147,"props":799,"children":800},{"style":189},[801],{"type":56,"value":222},{"type":50,"tag":147,"props":803,"children":804},{"style":159},[805],{"type":56,"value":287},{"type":50,"tag":147,"props":807,"children":808},{"style":189},[809],{"type":56,"value":292},{"type":50,"tag":147,"props":811,"children":812},{"style":159},[813],{"type":56,"value":297},{"type":50,"tag":147,"props":815,"children":816},{"style":159},[817],{"type":56,"value":302},{"type":50,"tag":92,"props":819,"children":820},{},[821],{"type":50,"tag":69,"props":822,"children":823},{},[824],{"type":56,"value":825},"\"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":50,"tag":738,"props":827,"children":829},{"id":828},"multi-display-behavior",[830],{"type":56,"value":831},"Multi-display behavior",{"type":50,"tag":92,"props":833,"children":834},{},[835,840],{"type":50,"tag":69,"props":836,"children":837},{},[838],{"type":56,"value":839},"On macOS, full-screen captures save one file per display when multiple monitors are connected.",{"type":50,"tag":69,"props":841,"children":842},{},[843,845,851],{"type":56,"value":844},"On Linux and Windows, full-screen captures use the virtual desktop (all monitors in one image); use ",{"type":50,"tag":127,"props":846,"children":848},{"className":847},[],[849],{"type":56,"value":850},"--region",{"type":56,"value":852}," to isolate a single display when needed.",{"type":50,"tag":738,"props":854,"children":856},{"id":855},"linux-prerequisites-and-selection-logic",[857],{"type":56,"value":858},"Linux prerequisites and selection logic",{"type":50,"tag":59,"props":860,"children":861},{},[862],{"type":56,"value":863},"The helper automatically selects the first available tool:",{"type":50,"tag":65,"props":865,"children":866},{},[867,876,885],{"type":50,"tag":69,"props":868,"children":869},{},[870],{"type":50,"tag":127,"props":871,"children":873},{"className":872},[],[874],{"type":56,"value":875},"scrot",{"type":50,"tag":69,"props":877,"children":878},{},[879],{"type":50,"tag":127,"props":880,"children":882},{"className":881},[],[883],{"type":56,"value":884},"gnome-screenshot",{"type":50,"tag":69,"props":886,"children":887},{},[888,890],{"type":56,"value":889},"ImageMagick ",{"type":50,"tag":127,"props":891,"children":893},{"className":892},[],[894],{"type":56,"value":895},"import",{"type":50,"tag":59,"props":897,"children":898},{},[899],{"type":56,"value":900},"If none are available, ask the user to install one of them and retry.",{"type":50,"tag":59,"props":902,"children":903},{},[904,906,911,913,918],{"type":56,"value":905},"Coordinate regions require ",{"type":50,"tag":127,"props":907,"children":909},{"className":908},[],[910],{"type":56,"value":875},{"type":56,"value":912}," or ImageMagick ",{"type":50,"tag":127,"props":914,"children":916},{"className":915},[],[917],{"type":56,"value":895},{"type":56,"value":919},".",{"type":50,"tag":59,"props":921,"children":922},{},[923,928,930,936,938,944,946,952,954,960],{"type":50,"tag":127,"props":924,"children":926},{"className":925},[],[927],{"type":56,"value":645},{"type":56,"value":929},", ",{"type":50,"tag":127,"props":931,"children":933},{"className":932},[],[934],{"type":56,"value":935},"--window-name",{"type":56,"value":937},", and ",{"type":50,"tag":127,"props":939,"children":941},{"className":940},[],[942],{"type":56,"value":943},"--list-windows",{"type":56,"value":945}," are macOS-only. On Linux, use\n",{"type":50,"tag":127,"props":947,"children":949},{"className":948},[],[950],{"type":56,"value":951},"--active-window",{"type":56,"value":953}," or provide ",{"type":50,"tag":127,"props":955,"children":957},{"className":956},[],[958],{"type":56,"value":959},"--window-id",{"type":56,"value":961}," when available.",{"type":50,"tag":85,"props":963,"children":965},{"id":964},"windows-powershell-helper",[966],{"type":56,"value":967},"Windows (PowerShell helper)",{"type":50,"tag":59,"props":969,"children":970},{},[971],{"type":56,"value":972},"Run the PowerShell helper:",{"type":50,"tag":136,"props":974,"children":978},{"className":975,"code":976,"language":977,"meta":141,"style":141},"language-powershell shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","powershell -ExecutionPolicy Bypass -File {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1\n","powershell",[979],{"type":50,"tag":127,"props":980,"children":981},{"__ignoreMap":141},[982],{"type":50,"tag":147,"props":983,"children":984},{"class":149,"line":150},[985],{"type":50,"tag":147,"props":986,"children":987},{},[988],{"type":56,"value":976},{"type":50,"tag":59,"props":990,"children":991},{},[992],{"type":56,"value":342},{"type":50,"tag":92,"props":994,"children":995},{},[996],{"type":50,"tag":69,"props":997,"children":998},{},[999],{"type":56,"value":1000},"Default location:",{"type":50,"tag":136,"props":1002,"children":1003},{"className":975,"code":976,"language":977,"meta":141,"style":141},[1004],{"type":50,"tag":127,"props":1005,"children":1006},{"__ignoreMap":141},[1007],{"type":50,"tag":147,"props":1008,"children":1009},{"class":149,"line":150},[1010],{"type":50,"tag":147,"props":1011,"children":1012},{},[1013],{"type":56,"value":976},{"type":50,"tag":92,"props":1015,"children":1016},{},[1017],{"type":50,"tag":69,"props":1018,"children":1019},{},[1020],{"type":56,"value":375},{"type":50,"tag":136,"props":1022,"children":1024},{"className":975,"code":1023,"language":977,"meta":141,"style":141},"powershell -ExecutionPolicy Bypass -File {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp\n",[1025],{"type":50,"tag":127,"props":1026,"children":1027},{"__ignoreMap":141},[1028],{"type":50,"tag":147,"props":1029,"children":1030},{"class":149,"line":150},[1031],{"type":50,"tag":147,"props":1032,"children":1033},{},[1034],{"type":56,"value":1023},{"type":50,"tag":92,"props":1036,"children":1037},{},[1038],{"type":50,"tag":69,"props":1039,"children":1040},{},[1041],{"type":56,"value":1042},"Explicit path:",{"type":50,"tag":136,"props":1044,"children":1046},{"className":975,"code":1045,"language":977,"meta":141,"style":141},"powershell -ExecutionPolicy Bypass -File {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1 -Path \"C:\\Temp\\screen.png\"\n",[1047],{"type":50,"tag":127,"props":1048,"children":1049},{"__ignoreMap":141},[1050],{"type":50,"tag":147,"props":1051,"children":1052},{"class":149,"line":150},[1053],{"type":50,"tag":147,"props":1054,"children":1055},{},[1056],{"type":56,"value":1045},{"type":50,"tag":92,"props":1058,"children":1059},{},[1060],{"type":50,"tag":69,"props":1061,"children":1062},{},[1063],{"type":56,"value":594},{"type":50,"tag":136,"props":1065,"children":1067},{"className":975,"code":1066,"language":977,"meta":141,"style":141},"powershell -ExecutionPolicy Bypass -File {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -Region 100,200,800,600\n",[1068],{"type":50,"tag":127,"props":1069,"children":1070},{"__ignoreMap":141},[1071],{"type":50,"tag":147,"props":1072,"children":1073},{"class":149,"line":150},[1074],{"type":50,"tag":147,"props":1075,"children":1076},{},[1077],{"type":56,"value":1066},{"type":50,"tag":92,"props":1079,"children":1080},{},[1081],{"type":50,"tag":69,"props":1082,"children":1083},{},[1084],{"type":56,"value":1085},"Active window (ask the user to focus it first):",{"type":50,"tag":136,"props":1087,"children":1089},{"className":975,"code":1088,"language":977,"meta":141,"style":141},"powershell -ExecutionPolicy Bypass -File {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1 -Mode temp -ActiveWindow\n",[1090],{"type":50,"tag":127,"props":1091,"children":1092},{"__ignoreMap":141},[1093],{"type":50,"tag":147,"props":1094,"children":1095},{"class":149,"line":150},[1096],{"type":50,"tag":147,"props":1097,"children":1098},{},[1099],{"type":56,"value":1088},{"type":50,"tag":92,"props":1101,"children":1102},{},[1103],{"type":50,"tag":69,"props":1104,"children":1105},{},[1106],{"type":56,"value":1107},"Specific window handle (only when provided):",{"type":50,"tag":136,"props":1109,"children":1111},{"className":975,"code":1110,"language":977,"meta":141,"style":141},"powershell -ExecutionPolicy Bypass -File {baseDir}\u002Fscripts\u002Ftake_screenshot.ps1 -WindowHandle 123456\n",[1112],{"type":50,"tag":127,"props":1113,"children":1114},{"__ignoreMap":141},[1115],{"type":50,"tag":147,"props":1116,"children":1117},{"class":149,"line":150},[1118],{"type":50,"tag":147,"props":1119,"children":1120},{},[1121],{"type":56,"value":1110},{"type":50,"tag":85,"props":1123,"children":1125},{"id":1124},"direct-os-commands-fallbacks",[1126],{"type":56,"value":1127},"Direct OS commands (fallbacks)",{"type":50,"tag":59,"props":1129,"children":1130},{},[1131],{"type":56,"value":1132},"Use these when you cannot run the helpers.",{"type":50,"tag":738,"props":1134,"children":1135},{"id":19},[1136],{"type":56,"value":18},{"type":50,"tag":92,"props":1138,"children":1139},{},[1140],{"type":50,"tag":69,"props":1141,"children":1142},{},[1143],{"type":56,"value":1144},"Full screen to a specific path:",{"type":50,"tag":136,"props":1146,"children":1148},{"className":138,"code":1147,"language":140,"meta":141,"style":141},"screencapture -x output\u002Fscreen.png\n",[1149],{"type":50,"tag":127,"props":1150,"children":1151},{"__ignoreMap":141},[1152],{"type":50,"tag":147,"props":1153,"children":1154},{"class":149,"line":150},[1155,1160,1165],{"type":50,"tag":147,"props":1156,"children":1157},{"style":154},[1158],{"type":56,"value":1159},"screencapture",{"type":50,"tag":147,"props":1161,"children":1162},{"style":159},[1163],{"type":56,"value":1164}," -x",{"type":50,"tag":147,"props":1166,"children":1167},{"style":159},[1168],{"type":56,"value":437},{"type":50,"tag":92,"props":1170,"children":1171},{},[1172],{"type":50,"tag":69,"props":1173,"children":1174},{},[1175],{"type":56,"value":1176},"Pixel region:",{"type":50,"tag":136,"props":1178,"children":1180},{"className":138,"code":1179,"language":140,"meta":141,"style":141},"screencapture -x -R100,200,800,600 output\u002Fregion.png\n",[1181],{"type":50,"tag":127,"props":1182,"children":1183},{"__ignoreMap":141},[1184],{"type":50,"tag":147,"props":1185,"children":1186},{"class":149,"line":150},[1187,1191,1195,1200],{"type":50,"tag":147,"props":1188,"children":1189},{"style":154},[1190],{"type":56,"value":1159},{"type":50,"tag":147,"props":1192,"children":1193},{"style":159},[1194],{"type":56,"value":1164},{"type":50,"tag":147,"props":1196,"children":1197},{"style":159},[1198],{"type":56,"value":1199}," -R100,200,800,600",{"type":50,"tag":147,"props":1201,"children":1202},{"style":159},[1203],{"type":56,"value":1204}," output\u002Fregion.png\n",{"type":50,"tag":92,"props":1206,"children":1207},{},[1208],{"type":50,"tag":69,"props":1209,"children":1210},{},[1211],{"type":56,"value":1212},"Specific window id:",{"type":50,"tag":136,"props":1214,"children":1216},{"className":138,"code":1215,"language":140,"meta":141,"style":141},"screencapture -x -l12345 output\u002Fwindow.png\n",[1217],{"type":50,"tag":127,"props":1218,"children":1219},{"__ignoreMap":141},[1220],{"type":50,"tag":147,"props":1221,"children":1222},{"class":149,"line":150},[1223,1227,1231,1236],{"type":50,"tag":147,"props":1224,"children":1225},{"style":154},[1226],{"type":56,"value":1159},{"type":50,"tag":147,"props":1228,"children":1229},{"style":159},[1230],{"type":56,"value":1164},{"type":50,"tag":147,"props":1232,"children":1233},{"style":159},[1234],{"type":56,"value":1235}," -l12345",{"type":50,"tag":147,"props":1237,"children":1238},{"style":159},[1239],{"type":56,"value":1240}," output\u002Fwindow.png\n",{"type":50,"tag":92,"props":1242,"children":1243},{},[1244],{"type":50,"tag":69,"props":1245,"children":1246},{},[1247],{"type":56,"value":1248},"Interactive selection or window pick:",{"type":50,"tag":136,"props":1250,"children":1252},{"className":138,"code":1251,"language":140,"meta":141,"style":141},"screencapture -x -i output\u002Finteractive.png\n",[1253],{"type":50,"tag":127,"props":1254,"children":1255},{"__ignoreMap":141},[1256],{"type":50,"tag":147,"props":1257,"children":1258},{"class":149,"line":150},[1259,1263,1267,1272],{"type":50,"tag":147,"props":1260,"children":1261},{"style":154},[1262],{"type":56,"value":1159},{"type":50,"tag":147,"props":1264,"children":1265},{"style":159},[1266],{"type":56,"value":1164},{"type":50,"tag":147,"props":1268,"children":1269},{"style":159},[1270],{"type":56,"value":1271}," -i",{"type":50,"tag":147,"props":1273,"children":1274},{"style":159},[1275],{"type":56,"value":1276}," output\u002Finteractive.png\n",{"type":50,"tag":738,"props":1278,"children":1280},{"id":1279},"linux",[1281],{"type":56,"value":1282},"Linux",{"type":50,"tag":92,"props":1284,"children":1285},{},[1286],{"type":50,"tag":69,"props":1287,"children":1288},{},[1289],{"type":56,"value":1290},"Full screen:",{"type":50,"tag":136,"props":1292,"children":1294},{"className":138,"code":1293,"language":140,"meta":141,"style":141},"scrot output\u002Fscreen.png\n",[1295],{"type":50,"tag":127,"props":1296,"children":1297},{"__ignoreMap":141},[1298],{"type":50,"tag":147,"props":1299,"children":1300},{"class":149,"line":150},[1301,1305],{"type":50,"tag":147,"props":1302,"children":1303},{"style":154},[1304],{"type":56,"value":875},{"type":50,"tag":147,"props":1306,"children":1307},{"style":159},[1308],{"type":56,"value":437},{"type":50,"tag":136,"props":1310,"children":1312},{"className":138,"code":1311,"language":140,"meta":141,"style":141},"gnome-screenshot -f output\u002Fscreen.png\n",[1313],{"type":50,"tag":127,"props":1314,"children":1315},{"__ignoreMap":141},[1316],{"type":50,"tag":147,"props":1317,"children":1318},{"class":149,"line":150},[1319,1323,1328],{"type":50,"tag":147,"props":1320,"children":1321},{"style":154},[1322],{"type":56,"value":884},{"type":50,"tag":147,"props":1324,"children":1325},{"style":159},[1326],{"type":56,"value":1327}," -f",{"type":50,"tag":147,"props":1329,"children":1330},{"style":159},[1331],{"type":56,"value":437},{"type":50,"tag":136,"props":1333,"children":1335},{"className":138,"code":1334,"language":140,"meta":141,"style":141},"import -window root output\u002Fscreen.png\n",[1336],{"type":50,"tag":127,"props":1337,"children":1338},{"__ignoreMap":141},[1339],{"type":50,"tag":147,"props":1340,"children":1341},{"class":149,"line":150},[1342,1346,1351,1356],{"type":50,"tag":147,"props":1343,"children":1344},{"style":154},[1345],{"type":56,"value":895},{"type":50,"tag":147,"props":1347,"children":1348},{"style":159},[1349],{"type":56,"value":1350}," -window",{"type":50,"tag":147,"props":1352,"children":1353},{"style":159},[1354],{"type":56,"value":1355}," root",{"type":50,"tag":147,"props":1357,"children":1358},{"style":159},[1359],{"type":56,"value":437},{"type":50,"tag":92,"props":1361,"children":1362},{},[1363],{"type":50,"tag":69,"props":1364,"children":1365},{},[1366],{"type":56,"value":1176},{"type":50,"tag":136,"props":1368,"children":1370},{"className":138,"code":1369,"language":140,"meta":141,"style":141},"scrot -a 100,200,800,600 output\u002Fregion.png\n",[1371],{"type":50,"tag":127,"props":1372,"children":1373},{"__ignoreMap":141},[1374],{"type":50,"tag":147,"props":1375,"children":1376},{"class":149,"line":150},[1377,1381,1386,1391],{"type":50,"tag":147,"props":1378,"children":1379},{"style":154},[1380],{"type":56,"value":875},{"type":50,"tag":147,"props":1382,"children":1383},{"style":159},[1384],{"type":56,"value":1385}," -a",{"type":50,"tag":147,"props":1387,"children":1388},{"style":159},[1389],{"type":56,"value":1390}," 100,200,800,600",{"type":50,"tag":147,"props":1392,"children":1393},{"style":159},[1394],{"type":56,"value":1204},{"type":50,"tag":136,"props":1396,"children":1398},{"className":138,"code":1397,"language":140,"meta":141,"style":141},"import -window root -crop 800x600+100+200 output\u002Fregion.png\n",[1399],{"type":50,"tag":127,"props":1400,"children":1401},{"__ignoreMap":141},[1402],{"type":50,"tag":147,"props":1403,"children":1404},{"class":149,"line":150},[1405,1409,1413,1417,1422,1427],{"type":50,"tag":147,"props":1406,"children":1407},{"style":154},[1408],{"type":56,"value":895},{"type":50,"tag":147,"props":1410,"children":1411},{"style":159},[1412],{"type":56,"value":1350},{"type":50,"tag":147,"props":1414,"children":1415},{"style":159},[1416],{"type":56,"value":1355},{"type":50,"tag":147,"props":1418,"children":1419},{"style":159},[1420],{"type":56,"value":1421}," -crop",{"type":50,"tag":147,"props":1423,"children":1424},{"style":159},[1425],{"type":56,"value":1426}," 800x600+100+200",{"type":50,"tag":147,"props":1428,"children":1429},{"style":159},[1430],{"type":56,"value":1204},{"type":50,"tag":92,"props":1432,"children":1433},{},[1434],{"type":50,"tag":69,"props":1435,"children":1436},{},[1437],{"type":56,"value":1438},"Active window:",{"type":50,"tag":136,"props":1440,"children":1442},{"className":138,"code":1441,"language":140,"meta":141,"style":141},"scrot -u output\u002Fwindow.png\n",[1443],{"type":50,"tag":127,"props":1444,"children":1445},{"__ignoreMap":141},[1446],{"type":50,"tag":147,"props":1447,"children":1448},{"class":149,"line":150},[1449,1453,1458],{"type":50,"tag":147,"props":1450,"children":1451},{"style":154},[1452],{"type":56,"value":875},{"type":50,"tag":147,"props":1454,"children":1455},{"style":159},[1456],{"type":56,"value":1457}," -u",{"type":50,"tag":147,"props":1459,"children":1460},{"style":159},[1461],{"type":56,"value":1240},{"type":50,"tag":136,"props":1463,"children":1465},{"className":138,"code":1464,"language":140,"meta":141,"style":141},"gnome-screenshot -w -f output\u002Fwindow.png\n",[1466],{"type":50,"tag":127,"props":1467,"children":1468},{"__ignoreMap":141},[1469],{"type":50,"tag":147,"props":1470,"children":1471},{"class":149,"line":150},[1472,1476,1481,1485],{"type":50,"tag":147,"props":1473,"children":1474},{"style":154},[1475],{"type":56,"value":884},{"type":50,"tag":147,"props":1477,"children":1478},{"style":159},[1479],{"type":56,"value":1480}," -w",{"type":50,"tag":147,"props":1482,"children":1483},{"style":159},[1484],{"type":56,"value":1327},{"type":50,"tag":147,"props":1486,"children":1487},{"style":159},[1488],{"type":56,"value":1240},{"type":50,"tag":85,"props":1490,"children":1492},{"id":1491},"error-handling",[1493],{"type":56,"value":1494},"Error handling",{"type":50,"tag":92,"props":1496,"children":1497},{},[1498,1511,1524,1544,1570,1575],{"type":50,"tag":69,"props":1499,"children":1500},{},[1501,1503,1509],{"type":56,"value":1502},"On macOS, run ",{"type":50,"tag":127,"props":1504,"children":1506},{"className":1505},[],[1507],{"type":56,"value":1508},"bash {baseDir}\u002Fscripts\u002Fensure_macos_permissions.sh",{"type":56,"value":1510}," first to request Screen Recording in one place.",{"type":50,"tag":69,"props":1512,"children":1513},{},[1514,1516,1522],{"type":56,"value":1515},"If you see \"screen capture checks are blocked in the sandbox\", \"could not create image from display\", or Swift ",{"type":50,"tag":127,"props":1517,"children":1519},{"className":1518},[],[1520],{"type":56,"value":1521},"ModuleCache",{"type":56,"value":1523}," permission errors in a sandboxed run, rerun the command with escalated permissions.",{"type":50,"tag":69,"props":1525,"children":1526},{},[1527,1529,1535,1537,1542],{"type":56,"value":1528},"If macOS app\u002Fwindow capture returns no matches, run ",{"type":50,"tag":127,"props":1530,"children":1532},{"className":1531},[],[1533],{"type":56,"value":1534},"--list-windows --app \"AppName\"",{"type":56,"value":1536}," and retry with ",{"type":50,"tag":127,"props":1538,"children":1540},{"className":1539},[],[1541],{"type":56,"value":959},{"type":56,"value":1543},", and make sure the app is visible on screen.",{"type":50,"tag":69,"props":1545,"children":1546},{},[1547,1549,1555,1556,1562,1563,1569],{"type":56,"value":1548},"If Linux region\u002Fwindow capture fails, check tool availability with ",{"type":50,"tag":127,"props":1550,"children":1552},{"className":1551},[],[1553],{"type":56,"value":1554},"command -v scrot",{"type":56,"value":929},{"type":50,"tag":127,"props":1557,"children":1559},{"className":1558},[],[1560],{"type":56,"value":1561},"command -v gnome-screenshot",{"type":56,"value":937},{"type":50,"tag":127,"props":1564,"children":1566},{"className":1565},[],[1567],{"type":56,"value":1568},"command -v import",{"type":56,"value":919},{"type":50,"tag":69,"props":1571,"children":1572},{},[1573],{"type":56,"value":1574},"If saving to the OS default location fails with permission errors in a sandbox, rerun the command with escalated permissions.",{"type":50,"tag":69,"props":1576,"children":1577},{},[1578],{"type":56,"value":1579},"Always report the saved file path in the response.",{"type":50,"tag":85,"props":1581,"children":1583},{"id":1582},"when-to-use",[1584],{"type":56,"value":1585},"When to Use",{"type":50,"tag":85,"props":1587,"children":1589},{"id":1588},"when-not-to-use",[1590],{"type":56,"value":1591},"When NOT to Use",{"type":50,"tag":1593,"props":1594,"children":1595},"style",{},[1596],{"type":56,"value":1597},"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":1599,"total":1759},[1600,1621,1631,1651,1666,1679,1691,1701,1714,1725,1737,1748],{"slug":1601,"name":1601,"fn":1602,"description":1603,"org":1604,"tags":1605,"stars":1618,"repoUrl":1619,"updatedAt":1620},"address-sanitizer","detect memory errors during fuzzing","AddressSanitizer detects memory errors during fuzzing. Use when fuzzing C\u002FC++ code to find buffer overflows and use-after-free bugs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1606,1609,1612,1615],{"name":1607,"slug":1608,"type":16},"C#","c",{"name":1610,"slug":1611,"type":16},"Debugging","debugging",{"name":1613,"slug":1614,"type":16},"Security","security",{"name":1616,"slug":1617,"type":16},"Testing","testing",6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:14.925095",{"slug":1622,"name":1622,"fn":1623,"description":1624,"org":1625,"tags":1626,"stars":1618,"repoUrl":1619,"updatedAt":1630},"aflpp","perform multi-core fuzzing of C\u002FC++ projects","AFL++ is a fork of AFL with better fuzzing performance and advanced features. Use for multi-core fuzzing of C\u002FC++ projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1627,1628,1629],{"name":1607,"slug":1608,"type":16},{"name":1613,"slug":1614,"type":16},{"name":1616,"slug":1617,"type":16},"2026-07-17T06:05:12.433192",{"slug":1632,"name":1632,"fn":1633,"description":1634,"org":1635,"tags":1636,"stars":1618,"repoUrl":1619,"updatedAt":1650},"agentic-actions-auditor","audit GitHub Actions for security vulnerabilities","Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches AI agents running in CI\u002FCD pipelines, including env var intermediary patterns, direct expression injection, dangerous sandbox configurations, and wildcard user allowlists. Use when reviewing workflow files that invoke AI coding agents, auditing CI\u002FCD pipeline security for prompt injection risks, or evaluating agentic action configurations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1637,1640,1643,1646,1649],{"name":1638,"slug":1639,"type":16},"Agents","agents",{"name":1641,"slug":1642,"type":16},"CI\u002FCD","ci-cd",{"name":1644,"slug":1645,"type":16},"Code Analysis","code-analysis",{"name":1647,"slug":1648,"type":16},"GitHub Actions","github-actions",{"name":1613,"slug":1614,"type":16},"2026-07-18T05:47:48.564744",{"slug":1652,"name":1652,"fn":1653,"description":1654,"org":1655,"tags":1656,"stars":1618,"repoUrl":1619,"updatedAt":1665},"algorand-vulnerability-scanner","scan Algorand smart contracts for vulnerabilities","Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access control issues. Use when auditing Algorand projects (TEAL\u002FPyTeal).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1657,1660,1661,1662],{"name":1658,"slug":1659,"type":16},"Audit","audit",{"name":1644,"slug":1645,"type":16},{"name":1613,"slug":1614,"type":16},{"name":1663,"slug":1664,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":1667,"name":1667,"fn":1668,"description":1669,"org":1670,"tags":1671,"stars":1618,"repoUrl":1619,"updatedAt":1678},"ask-questions-if-underspecified","clarify requirements before implementation","Clarify requirements before implementing. Use when serious doubts arise.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1672,1675],{"name":1673,"slug":1674,"type":16},"Engineering","engineering",{"name":1676,"slug":1677,"type":16},"Productivity","productivity","2026-07-17T06:05:33.543262",{"slug":1680,"name":1680,"fn":1681,"description":1682,"org":1683,"tags":1684,"stars":1618,"repoUrl":1619,"updatedAt":1690},"atheris","fuzz Python code with Atheris","Atheris is a coverage-guided Python fuzzer based on libFuzzer. Use for fuzzing pure Python code and Python C extensions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1685,1688,1689],{"name":1686,"slug":1687,"type":16},"Python","python",{"name":1613,"slug":1614,"type":16},{"name":1616,"slug":1617,"type":16},"2026-07-17T06:05:14.575191",{"slug":1692,"name":1692,"fn":1693,"description":1694,"org":1695,"tags":1696,"stars":1618,"repoUrl":1619,"updatedAt":1700},"audit-augmentation","augment code graphs with audit findings","Augments Trailmark code graphs with external audit findings from SARIF static analysis results, weAudit annotation files, and version-gated Trailmark 0.4.x binary-analysis graph exports. Maps findings to graph nodes by file and line overlap, creates severity-based subgraphs, and enables cross-referencing findings with pre-analysis data (blast radius, taint, etc.). Use when projecting SARIF results onto a code graph, overlaying weAudit annotations, importing binary graph findings, cross-referencing Semgrep, CodeQL, or binary-analysis findings with call graph data, or visualizing audit findings in the context of code structure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1697,1698,1699],{"name":1658,"slug":1659,"type":16},{"name":1644,"slug":1645,"type":16},{"name":1613,"slug":1614,"type":16},"2026-08-01T05:44:54.920542",{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1705,"tags":1706,"stars":1618,"repoUrl":1619,"updatedAt":1713},"audit-context-building","build architectural context for code analysis","Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1707,1710,1711,1712],{"name":1708,"slug":1709,"type":16},"Architecture","architecture",{"name":1658,"slug":1659,"type":16},{"name":1644,"slug":1645,"type":16},{"name":1673,"slug":1674,"type":16},"2026-07-18T05:47:40.122449",{"slug":1715,"name":1715,"fn":1716,"description":1717,"org":1718,"tags":1719,"stars":1618,"repoUrl":1619,"updatedAt":1724},"audit-prep-assistant","prepare codebases for security audits","Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1720,1721,1722,1723],{"name":1658,"slug":1659,"type":16},{"name":1644,"slug":1645,"type":16},{"name":1673,"slug":1674,"type":16},{"name":1613,"slug":1614,"type":16},"2026-07-18T05:47:39.210985",{"slug":1726,"name":1726,"fn":1727,"description":1728,"org":1729,"tags":1730,"stars":1618,"repoUrl":1619,"updatedAt":1736},"burpsuite-project-parser","parse Burp Suite project files","Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1731,1732,1735],{"name":1658,"slug":1659,"type":16},{"name":1733,"slug":1734,"type":16},"CLI","cli",{"name":1613,"slug":1614,"type":16},"2026-07-17T06:05:33.198077",{"slug":1738,"name":1738,"fn":1739,"description":1740,"org":1741,"tags":1742,"stars":1618,"repoUrl":1619,"updatedAt":1747},"c-review","audit C and C++ code","Performs comprehensive C\u002FC++ security review for memory corruption, integer overflows, race conditions, and platform-specific vulnerabilities. Use when auditing native C\u002FC++ applications, reviewing daemons or services for memory safety, or hunting integer overflow \u002F use-after-free \u002F race conditions in userspace code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1743,1744,1745,1746],{"name":1658,"slug":1659,"type":16},{"name":1607,"slug":1608,"type":16},{"name":1644,"slug":1645,"type":16},{"name":1613,"slug":1614,"type":16},"2026-07-17T06:05:11.333374",{"slug":1749,"name":1749,"fn":1750,"description":1751,"org":1752,"tags":1753,"stars":1618,"repoUrl":1619,"updatedAt":1758},"cairo-vulnerability-scanner","scan Cairo and StarkNet contracts for vulnerabilities","Scans Cairo\u002FStarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems, and signature replay. Use when auditing StarkNet projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1754,1755,1756,1757],{"name":1658,"slug":1659,"type":16},{"name":1644,"slug":1645,"type":16},{"name":1613,"slug":1614,"type":16},{"name":1663,"slug":1664,"type":16},"2026-07-18T05:47:42.84568",111,{"items":1761,"total":1862},[1762,1772,1782,1801,1813,1829,1843],{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":26,"repoUrl":27,"updatedAt":1771},"ffuf-web-fuzzing","perform web fuzzing with ffuf","Expert guidance for ffuf web fuzzing during authorized penetration testing. Covers directory discovery, subdomain enumeration, parameter fuzzing, authenticated fuzzing with raw requests, auto-calibration, and result analysis. Use when running ffuf scans, analyzing ffuf output, or building fuzzing strategies for web targets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1768,1769,1770],{"name":1644,"slug":1645,"type":16},{"name":1613,"slug":1614,"type":16},{"name":1616,"slug":1617,"type":16},"2026-07-17T06:05:08.247908",{"slug":1773,"name":1773,"fn":1774,"description":1775,"org":1776,"tags":1777,"stars":26,"repoUrl":27,"updatedAt":1781},"ghidra-headless","reverse engineer binaries with Ghidra","Reverse engineers binaries using Ghidra's headless analyzer. Use when decompiling executables, extracting functions, strings, symbols, or analyzing call graphs from compiled binaries without the Ghidra GUI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1778,1779,1780],{"name":1644,"slug":1645,"type":16},{"name":1610,"slug":1611,"type":16},{"name":1613,"slug":1614,"type":16},"2026-07-18T05:47:30.015093",{"slug":1783,"name":1783,"fn":1784,"description":1785,"org":1786,"tags":1787,"stars":26,"repoUrl":27,"updatedAt":1800},"grilling","stress-test plans and decisions","Interviews the user relentlessly about a plan, decision, or idea until every branch of the decision tree is resolved. Use when the user wants to stress-test their thinking, sharpen a plan or design before acting, or uses any 'grill' trigger phrase (e.g. \"grill me on this\").",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1788,1791,1794,1797],{"name":1789,"slug":1790,"type":16},"Analysis","analysis",{"name":1792,"slug":1793,"type":16},"Coaching","coaching",{"name":1795,"slug":1796,"type":16},"Ideation","ideation",{"name":1798,"slug":1799,"type":16},"Strategy","strategy","2026-07-18T05:48:12.46583",{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1805,"tags":1806,"stars":26,"repoUrl":27,"updatedAt":1812},"handoff","compact conversation for session handoff","Compacts the current conversation into a handoff document so a fresh agent can continue the work in a new session.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1807,1808,1811],{"name":1638,"slug":1639,"type":16},{"name":1809,"slug":1810,"type":16},"Context","context",{"name":1676,"slug":1677,"type":16},"2026-07-18T05:47:03.196098",{"slug":1814,"name":1814,"fn":1815,"description":1816,"org":1817,"tags":1818,"stars":26,"repoUrl":27,"updatedAt":1828},"humanizer","edit text to sound human-written","Remove signs of AI-generated writing from text. Use when editing or reviewing\ntext to make it sound more natural and human-written. Based on Wikipedia's\ncomprehensive \"Signs of AI writing\" guide. Detects and fixes patterns including:\ninflated symbolism, promotional language, superficial -ing analyses, vague\nattributions, em dash overuse, rule of three, AI vocabulary words, negative\nparallelisms, and excessive conjunctive phrases. 30c5c8d (Update humanizer plugin to upstream v2.2.0)\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1819,1822,1825],{"name":1820,"slug":1821,"type":16},"Content Creation","content-creation",{"name":1823,"slug":1824,"type":16},"Editing","editing",{"name":1826,"slug":1827,"type":16},"Writing","writing","2026-07-18T05:47:18.1749",{"slug":1830,"name":1830,"fn":1831,"description":1832,"org":1833,"tags":1834,"stars":26,"repoUrl":27,"updatedAt":1842},"last30days","research recent community discussions and trends","Researches a topic from the last 30 days on Reddit, X, and the web. Surfaces real community discussions with engagement metrics and synthesizes findings into actionable insights. Use when the user wants to know what people are saying about a topic right now.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1835,1836,1839],{"name":1789,"slug":1790,"type":16},{"name":1837,"slug":1838,"type":16},"Research","research",{"name":1840,"slug":1841,"type":16},"Social Media","social-media","2026-07-17T06:04:39.744471",{"slug":1844,"name":1844,"fn":1845,"description":1846,"org":1847,"tags":1848,"stars":26,"repoUrl":27,"updatedAt":1861},"openai-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. Originally from OpenAI's curated skills catalog.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1849,1852,1855,1858],{"name":1850,"slug":1851,"type":16},"Cloudflare","cloudflare",{"name":1853,"slug":1854,"type":16},"Cloudflare Pages","cloudflare-pages",{"name":1856,"slug":1857,"type":16},"Cloudflare Workers","cloudflare-workers",{"name":1859,"slug":1860,"type":16},"Deployment","deployment","2026-07-17T06:04:46.574433",31]