Agent skill
iii-event-driven-cqrs
Implements CQRS with event sourcing on the iii engine. Use when building command/query separation, event-sourced systems, or fan-out architectures where commands publish domain events and multiple read model projections subscribe independently.
Install this agent skill to your Project
npx add-skill https://github.com/iii-hq/iii/tree/main/skills/iii-event-driven-cqrs
SKILL.md
Event-Driven CQRS & Event Sourcing
Comparable to: Kafka, RabbitMQ, CQRS/Event Sourcing systems
Key Concepts
Use the concepts below when they fit the task. Not every CQRS system needs all of them.
- Write side: Commands validate input and publish domain events via pubsub
- Read side: Multiple projections subscribe to events independently, building query-optimized views in state
- Event log: Events are appended to state as an ordered log (event sourcing)
- PubSub handles fan-out — one event reaches all projections and downstream consumers
- HTTP triggers expose both command endpoints (POST) and query endpoints (GET)
Architecture
HTTP POST /inventory (command)
→ cmd::add-inventory-item → validate → append event to state
→ publish('inventory.item-added')
↓ (fan-out via subscribe triggers)
→ proj::inventory-list (updates queryable list view)
→ proj::inventory-stats (updates aggregate counters)
→ notify::inventory-alert (sends low-stock alerts)
HTTP GET /inventory (query)
→ query::list-inventory → reads from projection state
iii Primitives Used
| Primitive | Purpose |
|---|---|
registerWorker |
Initialize the worker and connect to iii |
registerFunction |
Define commands, projections, and queries |
trigger state::set, state::get, state::list |
Event log and projection state |
trigger({ function_id: 'publish', payload }) |
Publish domain events |
registerTrigger({ type: 'subscribe', config: { topic } }) |
Subscribe projections to events |
registerTrigger({ type: 'http' }) |
Command and query endpoints |
trigger({ ..., action: TriggerAction.Void() }) |
Fire-and-forget notifications |
Reference Implementation
See ../references/event-driven-cqrs.js for the full working example — an inventory management system with commands that publish domain events and multiple projections building query-optimized views.
Common Patterns
Code using this pattern commonly includes, when relevant:
registerWorker(url, { workerName })— worker initializationtrigger({ function_id: 'state::set', payload: { scope: 'events', key, value } })— event log appendtrigger({ function_id: 'publish', payload: { topic, data } })— domain event publishingregisterTrigger({ type: 'subscribe', function_id, config: { topic } })— projection subscriptions- Command functions with
cmd::prefix, projection functions withproj::prefix, query functions withquery::prefix - Multiple projections subscribing to the same topic independently
const logger = new Logger()— structured logging per command/projection
Adapting This Pattern
Use the adaptations below when they apply to the task.
- Add new projections by registering subscribe triggers on existing event topics
- Use separate state scopes for each projection (e.g.
inventory-list,inventory-stats) - Commands should validate before publishing — reject invalid commands early
- For critical event processing, use
TriggerAction.Enqueue({ queue })instead of pubsub for guaranteed delivery - Event IDs should be unique and monotonic for ordering (e.g.
evt-${Date.now()}-${counter})
Pattern Boundaries
- If the task is about simple CRUD with reactive side effects, prefer
iii-reactive-backend. - If the task needs durable multi-step pipelines with retries, prefer
iii-workflow-orchestration. - Stay with
iii-event-driven-cqrswhen command/query separation, event sourcing, and independent projections are the primary concerns.
When to Use
- Use this skill when the task is primarily about
iii-event-driven-cqrsin the iii engine. - Triggers when the request directly asks for this pattern or an equivalent implementation.
Boundaries
- Never use this skill as a generic fallback for unrelated tasks.
- You must not apply this skill when a more specific iii skill is a better fit.
- Always verify environment and safety constraints before applying examples from this skill.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
iii-dead-letter-queues
Inspects and redrives jobs that exhausted all retries. Use when handling failed queue jobs, debugging processing errors, or implementing retry strategies.
iii-cron-scheduling
Registers cron triggers with 7-field expressions to run functions on recurring schedules. Use when scheduling periodic jobs, timed automation, crontab replacements, cleanup routines, report generation, health checks, batch processing, or any task that should run every N seconds, minutes, hours, or on a weekly/monthly calendar.
iii-http-invoked-functions
Registers external HTTP endpoints as iii functions using registerFunction(id, HttpInvocationConfig). Use when adapting legacy APIs, third-party webhooks, or immutable services into triggerable iii functions, especially when prompts ask for endpoint maps like { path, id } iterated into registerFunction calls.
iii-channels
Binary streaming between workers via channels. Use when building data pipelines, file transfers, streaming responses, or any pattern requiring binary data transfer between functions.
iii-agentic-backend
Creates and orchestrates multi-agent pipelines on the iii engine. Use when building AI agent collaboration, agent orchestration, research/review/synthesis chains, or any system where specialized agents hand off work through queues and shared state.
iii-engine-config
Configures the iii engine via iii-config.yaml — workers, adapters, queue configs, ports, and environment variables. Use when deploying, tuning, or customizing the engine.
Didn't find tool you were looking for?