Add a new Hono IPC route with Zod validation
/plugin marketplace add naporin0624/claude-plugin-hono-electron/plugin install hono-electron-ipc@hono-electron-marketplace<route-name># Add New Hono IPC Route
Generate a new route for Hono-based IPC with proper structure and Zod validation.
## Arguments
- `$1` (required): Route name in kebab-case (e.g., `users`, `auth`, `event-logs`)
## Steps
### 1. Determine Route Location
Find the shared callable directory:
- Look for `src/shared/callable/` directory
- If not found, check for alternative structures
### 2. Create Route File
Create `src/shared/callable/{route-name}/index.ts`:
### 3. Register Route in Main App
Update `src/shared/callable/index.ts` to register the new route:
### 4. Add Service Interface (if n...