electron-screenshot
SkillDev toolsLets your agent take a screenshot of a desktop or Electron app to see what it looks like.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the electron-screenshot skill
About this capability
This skill should be used when the user asks to "take a desktop screenshot", "screenshot the electron app", "show me the desktop app", "what does the app look like", or mentions checking the Electron/desktop UI visually.
What this skill tells your AI
The instructions your AI receives, as published by keybase/client in skill/electron-screenshot/SKILL.md and read by ahel’s review.
Take a screenshot of the running Electron app via Playwright MCP and display it.
Prerequisites
The Electron app must be running with remote debugging enabled:
KB_ENABLE_REMOTE_DEBUG=1 yarn desktop:start:hot
This launches Electron with --remote-debugging-port=9222.
Steps
-
Close the DevTools tab first to avoid stale data. Use
browser_tabswith action=list, then action=close on the DevTools tab (usually index 0). -
Select the main app window tab (the one titled "Keybase: ..." — usually index 1 after DevTools is closed it becomes index 0). Use
browser_tabswith action=list then action=select. -
Take a screenshot with
browser_take_screenshot. -
The screenshot is saved to a temp file. Resize it for token efficiency:
sips -Z 800 <screenshot_path> --out /tmp/electron-screenshot.png -
Use the Read tool to display
/tmp/electron-screenshot.pngto the user.
Error Handling
- If Playwright MCP cannot connect, tell the user the Electron app may not be running with remote debugging. Suggest launching with
cd shared && KB_ENABLE_REMOTE_DEBUG=1 yarn desktop:start:hot. - If
sipsfails, fall back to displaying the original screenshot directly.
Notes
- Tab 0 is typically DevTools, Tab 1 is the main app, Tab 2 is the menubar. Always close DevTools first — when it's open,
browser_evaluateandbrowser_snapshotrun against DevTools instead of the app. - 800px max dimension gives good legibility with ~90% token savings.
Signals
- GitHub stars
- 9k
- Forks
- 1k
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
electron-screenshot- Source
- github.com/keybase/client