ralph-li
v0.0.2
Published
Real-time Claude agent that reacts to slice:changed events on an Eventmodelers board
Maintainers
Readme
@eventmodelers/agent-kit
Real-time Claude agent + skill kit for the Eventmodelers platform.
Quick start
npx @eventmodelers/agent-kit installThe installer will prompt for:
- API token — from your workspace settings
- Organization ID — UUID from your workspace
- Base URL — defaults to
https://api.eventmodelers.de
After installation:
Start the real-time agent:
cd realtime-agent && npm install && npm run devOpen Claude Code in this directory — skills are available immediately.
What gets installed
| Path | Description |
|------|-------------|
| .eventmodelers/config.json | Your token + org (gitignored) |
| .claude/skills/connect | Resolves board config for all other skills |
| .claude/skills/timeline | Live event storming facilitator |
| .claude/skills/wdyt | Business analyst review of your event model |
| .claude/skills/storyboard | Generate visual storyboards |
| .claude/skills/storyboard-screen | Design individual wireframe screens |
| .claude/skills/place-element | Place commands/events/read models on the board |
| .claude/skills/learn-eventmodelers-api | Full API reference for agent use |
| realtime-agent/ | Node.js agent that listens for prompts via Supabase Realtime |
Skills
Use skills in Claude Code with /skill-name:
/connect— set up board connection/timeline— guided event storming session/wdyt— "what do you think?" business analysis/storyboard— build a full visual storyboard/place-element— place a specific element on the timeline
Real-time agent
The real-time agent connects to your organization's Supabase Realtime channel and processes prompts sent from the Eventmodelers platform. It spawns claude --dangerously-skip-permissions for each prompt and acknowledges completion.
cd realtime-agent
npm install
npm run dev # development (tsx)
npm run build && npm start # productionCommands
npx @eventmodelers/agent-kit install # install + configure
npx @eventmodelers/agent-kit status # check what's installed
npx @eventmodelers/agent-kit uninstall # remove installed files