.claude/skills/ts-electron/SKILL.md
Assists with building cross-platform desktop applications using Electron. Use when architecting main/renderer process communication, configuring secure contexts, implementing auto-updates, or packaging apps for Windows, macOS, and Linux. Trigger words: electron, desktop app, browserwindow, ipc, auto-update, electron-builder.
npx skillsauth add eliferjunior/Claude electronInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
contextBridge.exposeInMainWorld().ipcMain.handle() / ipcRenderer.invoke() for async request-response patterns, and webContents.send() for main-to-renderer push communication.contextIsolation: true and nodeIntegration: false (defaults), set CSP headers on all windows, sandbox renderer processes, and validate all IPC inputs in the main process.electron-builder or electron-forge to produce platform-specific installers (NSIS/MSI for Windows, DMG for macOS, AppImage/deb for Linux) with code signing and notarization.electron-updater with GitHub Releases or a custom server, configure delta updates for smaller downloads, and verify update signatures.User request: "Create an Electron app that browses and manages files with native dialogs"
Actions:
BrowserWindow and preload script exposing file system commandsdialog.showOpenDialog(), dialog.showSaveDialog(), and file operationsOutput: A cross-platform file manager with native OS dialogs and secure IPC-based file access.
User request: "Set up auto-updates for my Electron app using GitHub Releases"
Actions:
electron-builder with publish settings pointing to GitHub Releaseselectron-updater in the main process with update check on startupOutput: An Electron app that automatically checks for updates, downloads them in the background, and prompts the user to restart.
nodeIntegration in the renderer.ipcMain.handle() / ipcRenderer.invoke() for async operations over the older send/on pattern.default-src 'self'; script-src 'self'.renderer-process-gone event and monitor memory usage with process.memoryUsage().development
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.