eventmodelers-cli connects an Eventmodelers board to an autonomous coding agent that picks up slice status changes, implements the code, and marks work done — for any of the stacks below.
npx @eventmodelers/cli init --stack node| Stack key | Stack |
|---|---|
node |
Node.js / TypeScript |
supabase |
Supabase |
axon |
Axon Framework (Java/Kotlin) |
cratis-csharp |
Cratis (.NET/C#) |
umadb |
UmaDB (Java) |
Not a stack, but also built in: npx @eventmodelers/cli init-modeling installs skills + the agent loop only, with no backend scaffold.
Previously these shipped as five separate npm packages (build-kit-node, build-kit-axon, build-kit-supabase, build-kit-cratis-csharp, agent-modeling-kit) with near-duplicated installer code. They're now templates inside the single eventmodelers-cli package — see eventmodelers-cli/README.md.
These are not maintained in this repo and follow no guaranteed structure — link only, use at your own judgment.
| Stack | Repo | Notes |
|---|---|---|
| .NET | Powerworks/K9DatingApp | Community reference for event modeling in .NET; not adapted to the build-kit skill/installer pattern used by the official kits above. |
| Rust | gklijs/skilj-build-kit | Built on skilj, the author's own Postgres-backed event-sourcing library using DCB (Dynamic Consistency Boundary) instead of classic aggregates. Follows the build-kit skill/installer pattern (four Claude Code skills for the usual slice shapes) — same approach as the official kits. Install: npx @eventmodelers/cli init --stack skilj --git https://github.com/gklijs/skilj-build-kit. |