Create a new Jotai hybrid atom with IPC stream subscription and HTTP fallback.
/plugin marketplace add naporin0624/claude-plugin-hono-electron/plugin install hono-electron-ipc@hono-electron-marketplace# Create New Hybrid Atom
Create a new Jotai hybrid atom with IPC stream subscription and HTTP fallback.
## Parameters
- **name**: The atom name (e.g., "users", "notifications", "activeEvent")
- **entity**: The entity type (e.g., "User", "Notification", "Event")
- **ipcEvent**: The IPC event name (e.g., "app:users", "app:notifications")
## Instructions
1. Define event source in `src/renderer/src/adapters/ipc-events/index.ts`
2. Create atom file at `src/renderer/src/views/atoms/{name}.atom.ts`
3. Follow hybrid pattern: Stream + HTTP fallback
## Event Source Setup
...