Skills electron
install
source · Clone the upstream repo
git clone https://github.com/TerminalSkills/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/TerminalSkills/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/electron" ~/.claude/skills/terminalskills-skills-electron && rm -rf "$T"
manifest:
skills/electron/SKILL.mdsource content
Electron
Overview
Electron is a framework for building cross-platform desktop applications using web technologies. It combines a Node.js main process for system access and window management with Chromium renderer processes for the UI, communicating via IPC with context isolation and preload scripts for security.
Instructions
- When setting up the architecture, create a main process for window management and system APIs, renderer processes for UI, and preload scripts to expose a controlled API bridge via
.contextBridge.exposeInMainWorld() - When implementing IPC, use
/ipcMain.handle()
for async request-response patterns, andipcRenderer.invoke()
for main-to-renderer push communication.webContents.send() - When accessing native APIs, use dialogs, file system, clipboard, notifications, and shell operations in the main process, exposing them to the renderer through the preload bridge.
- When configuring security, keep
andcontextIsolation: true
(defaults), set CSP headers on all windows, sandbox renderer processes, and validate all IPC inputs in the main process.nodeIntegration: false - When packaging the app, use
orelectron-builder
to produce platform-specific installers (NSIS/MSI for Windows, DMG for macOS, AppImage/deb for Linux) with code signing and notarization.electron-forge - When implementing auto-updates, use
with GitHub Releases or a custom server, configure delta updates for smaller downloads, and verify update signatures.electron-updater
Examples
Example 1: Build a file manager with native dialogs
User request: "Create an Electron app that browses and manages files with native dialogs"
Actions:
- Set up main process with
and preload script exposing file system commandsBrowserWindow - Implement IPC handlers for
,dialog.showOpenDialog()
, and file operationsdialog.showSaveDialog() - Build a React-based renderer UI for browsing directories and previewing files
- Add context menus and keyboard shortcuts for file operations
Output: A cross-platform file manager with native OS dialogs and secure IPC-based file access.
Example 2: Add auto-updates with staged rollout
User request: "Set up auto-updates for my Electron app using GitHub Releases"
Actions:
- Configure
withelectron-builder
settings pointing to GitHub Releasespublish - Add
in the main process with update check on startupelectron-updater - Implement update UI in the renderer showing download progress and restart prompt
- Configure staged rollout to update a percentage of users first
Output: An Electron app that automatically checks for updates, downloads them in the background, and prompts the user to restart.
Guidelines
- Always use context isolation and preload scripts; never enable
in the renderer.nodeIntegration - Validate all IPC message data in the main process since the renderer is untrusted like a browser.
- Use
/ipcMain.handle()
for async operations over the olderipcRenderer.invoke()
/send
pattern.on - Minimize main process work to keep it responsive for window management and IPC routing.
- Set CSP headers on all windows:
.default-src 'self'; script-src 'self' - Test on all target platforms since Windows, macOS, and Linux behave differently for menus, shortcuts, and file paths.
- Handle the
event and monitor memory usage withrenderer-process-gone
.process.memoryUsage()