electron-egg
npx skills add https://github.com/teachingai/agent-skills --skill electron-egg
Agent 安装分布
Skill 文档
When to use this skill
Use this skill whenever the user wants to:
- Install and set up Electron EGG in a project
- Create Electron desktop applications
- Use Electron EGG core features
- Configure Electron EGG
- Handle main process and renderer process communication
- Use Electron EGG API methods
- Build and package Electron applications
- Troubleshoot Electron EGG issues
How to use this skill
This skill is organized to match the Electron EGG official documentation structure (https://www.kaka996.com/, https://www.kaka996.com/pages/987b1c/, https://www.kaka996.com/pages/a99b72/). When working with Electron EGG:
-
Identify the topic from the user’s request:
- Installation/å®è£
â
examples/guide/installation.md - Quick Start/å¿«éå¼å§ â
examples/guide/quick-start.md - Features/åè½ç¹æ§ â
examples/features/ - API/API ææ¡£ â
api/
- Installation/å®è£
â
-
Load the appropriate example file from the
examples/directory:Guide (ä½¿ç¨ææ¡£):
examples/guide/intro.md– Introduction to Electron EGGexamples/guide/installation.md– Installation guideexamples/guide/quick-start.md– Quick start guideexamples/guide/project-structure.md– Project structureexamples/guide/configuration.md– Configurationexamples/guide/build.md– Build and package
Features (åè½ç¹æ§):
examples/features/main-process.md– Main processexamples/features/renderer-process.md– Renderer processexamples/features/ipc-communication.md– IPC communicationexamples/features/window-management.md– Window managementexamples/features/menu.md– Menuexamples/features/tray.md– System trayexamples/features/auto-updater.md– Auto updaterexamples/features/plugin-system.md– Plugin system
-
Follow the specific instructions in that example file for syntax, structure, and best practices
Important Notes:
- Electron EGG is based on Electron and Egg.js
- Main process and renderer process separation
- IPC communication between processes
- Each example file includes key concepts, code examples, and key points
-
Reference API documentation in the
api/directory when needed:api/main-api.md– Main process APIapi/renderer-api.md– Renderer process APIapi/ipc-api.md– IPC APIapi/window-api.md– Window APIapi/config-api.md– Configuration API
API Files:
api/main-api.md– Application class, BrowserWindow, ipcMain, app methodsapi/renderer-api.md– ipcRenderer, contextBridge, DOM APIsapi/ipc-api.md– IPC communication methods and eventsapi/window-api.md– Window creation and managementapi/config-api.md– Configuration options and environment variables
-
Use templates from the
templates/directory:templates/installation.md– Installation templatestemplates/project-setup.md– Project setup templatestemplates/configuration.md– Configuration templates
1. Understanding Electron EGG
Electron EGG is a desktop application development framework based on Electron and Egg.js, providing a complete development toolchain and best practices.
Key Concepts:
- Electron: Cross-platform desktop application framework
- Egg.js: Node.js enterprise application framework
- Main Process: Main application process
- Renderer Process: UI rendering process
- IPC: Inter-process communication
- Plugin System: Extensible plugin architecture
2. Installation
Using npm:
npm install electron-egg
Using yarn:
yarn add electron-egg
Using pnpm:
pnpm add electron-egg
3. Basic Setup
// main.js
const { Application } = require('electron-egg')
const app = new Application({
// Configuration
})
app.start()
Doc mapping (one-to-one with official documentation)
examples/â https://www.kaka996.com/pages/987b1c/api/â https://www.kaka996.com/pages/a99b72/
Examples and Templates
This skill includes detailed examples organized to match the official documentation structure. All examples are in the examples/ directory (see mapping above).
To use examples:
- Identify the topic from the user’s request
- Load the appropriate example file from the mapping above
- Follow the instructions, syntax, and best practices in that file
- Adapt the code examples to your specific use case
To use templates:
- Reference templates in
templates/directory for common scaffolding - Adapt templates to your specific needs and coding style
API Reference
Detailed API documentation is available in the api/ directory, organized to match the official Electron EGG API documentation structure (https://www.kaka996.com/pages/a99b72/):
Main Process API (api/main-api.md)
- Application class and methods
- BrowserWindow creation and management
- ipcMain IPC handling
- Application lifecycle hooks
Renderer Process API (api/renderer-api.md)
- ipcRenderer IPC communication
- contextBridge for secure API exposure
- DOM APIs available in renderer
- Event handling
IPC API (api/ipc-api.md)
- IPC communication methods (ipcMain, ipcRenderer)
- Message sending and receiving
- Async and sync IPC
- Event handling and channels
Window API (api/window-api.md)
- BrowserWindow creation and options
- Window management methods
- Window events
- Window lifecycle
Configuration API (api/config-api.md)
- Configuration file structure
- App info configuration
- Window configuration
- Plugin configuration
- Environment variables
To use API reference:
- Identify the API you need help with
- Load the corresponding API file from the
api/directory - Find the API signature, parameters, return type, and examples
- Reference the linked example files for detailed usage patterns
- All API files include links to relevant example files in the
examples/directory
Best Practices
- Separate processes: Keep main process and renderer process code separate
- Use IPC: Use IPC for inter-process communication
- Handle errors: Properly handle errors in both processes
- Security: Follow Electron security best practices
- Performance: Optimize application performance
- Build configuration: Configure build and package properly
- Plugin system: Use plugin system for extensibility
Resources
- Official Documentation: https://www.kaka996.com/
- Usage Guide: https://www.kaka996.com/pages/987b1c/
- API Documentation: https://www.kaka996.com/pages/a99b72/
- Gitee Repository: https://gitee.com/dromara/electron-egg
Keywords
Electron EGG, electron-egg, Electron, Egg.js, desktop application, æ¡é¢åºç¨, 主è¿ç¨, 渲æè¿ç¨, IPC, è¿ç¨é´éä¿¡, çªå£ç®¡ç, èå, ç³»ç»æç, èªå¨æ´æ°, æä»¶ç³»ç», main process, renderer process, inter-process communication, window management, menu, system tray, auto updater, plugin system