cqrs-event-sourcing-architect

cqrs-event-sourcing-architect is a skill for Claude Code from curiositech/windags-skills. It costs 70 tokens per session (1,143 once invoked), scanned A, original, no licence file.

A guide to CQRS and event sourcing: separating write commands from read models and recording changes as a history of events.

In plain words
What is it for?
It is for event stores, projections, aggregates, domain events, and command handlers in backend applications.
Why use it?
It helps design systems that need different write and read paths, rebuildable data views, and eventually consistent results.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit It is for event stores, projections, aggregates, domain events, and command handlers in backend applications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/curiositech/windags-skills/cqrs-event-sourcing-architect
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add curiositech/windags-skills --skill cqrs-event-sourcing-architect
Clone the repo
git clone --depth 1 https://github.com/curiositech/windags-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cqrs-event-sourcing-architect

README.md
[![agentmods](https://agentmods.dev/badge/skills/curiositech/windags-skills/cqrs-event-sourcing-architect/github.svg)](https://agentmods.dev/skills/curiositech/windags-skills/cqrs-event-sourcing-architect)
Your own site
<a href="https://agentmods.dev/skills/curiositech/windags-skills/cqrs-event-sourcing-architect"><img src="https://agentmods.dev/badge/skills/curiositech/windags-skills/cqrs-event-sourcing-architect/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cqrs-event-sourcing-architect

Your own site · 80×15
<a href="https://agentmods.dev/skills/curiositech/windags-skills/cqrs-event-sourcing-architect"><img src="https://agentmods.dev/badge/skills/curiositech/windags-skills/cqrs-event-sourcing-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,143 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin unknown No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00070 $0.01143
Opus 5 $0.00035 $0.00571
Sonnet 5 $0.00014 $0.00229
Haiku 4.5 $0.00007 $0.00114

Measured 9d ago against content hash 2a00d472d67f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

cqrs-event-sourcing-architect scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/cqrs-event-sourcing-architect/SKILL.md · 129 lines

The source is not reproduced here

A licence we could not identify

The repository carries a LICENSE file, but it is custom or dual enough that GitHub cannot name it and neither can this catalogue. Unknown terms are not permission, so the body is not copied here. Read the licence at the source and decide for yourself.

Read it on GitHub

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 129 lines · 70 tokens per session scan A 2a00d472d67f

Subscribe to this mod's changes

cqrs-event-sourcing-architect is a skill published in the GitHub repository curiositech/windags-skills (10 stars, last pushed 1mo ago), with no licence file. It adds 70 tokens to every session and 1,143 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

architecture-paradigm-cqrs-es

Applies CQRS and Event Sourcing for read/write separation and audit trails. Use when designing systems with complex domain logic or full state-change history.

athola/claude-night-market · 39 tokens

cratis-arc-ef-core-migration

Change an Entity Framework Core schema in a Cratis Arc application — the DbContext base types Arc provides, the cross-database column helpers, JSON columns, how a migration is created and applied, and how an EF Core read model becomes injectable into a command. Use when adding or changing a table, column…

Cratis/AI · 93 tokens

cratis-chronicle-event-type-migration

Evolve a Chronicle event schema without breaking replay - add a generation and an EventTypeMigration so stored events upcast into the new shape. Use when an event needs a new required property, a renamed or split property, a structural change, or a changed enum value after events of the prior shape already exist. Do…

Cratis/AI · 93 tokens

cratis-chronicle-read-model

Create a Chronicle read model and its query surface - past-tense event types, the read-model record and its key, choosing a projection or a reducer to build it, snapshot versus observable queries, and reading an instance directly through IReadModels. Use when creating a read model from scratch; for changing how an…

Cratis/AI · 81 tokens

cratis-chronicle-projection

Add Chronicle projection behavior to an existing read model - model-bound attributes first, the fluent IProjectionFor builder when they cannot express the shape. Covers AutoMap, keys, children and nested types, counters, event-sequence selection, and the startup-crash traps. Use when populating a read model from…

Cratis/AI · 98 tokens

cratis-chronicle-reducer

Write a Chronicle IReducerFor when model-bound projection attributes and the fluent IProjectionFor builder cannot express a read-model state transition. Covers the admission test, the exact accepted method signatures, the nullable-current requirement, deletion, passivity and event filtering. Use only after the…

Cratis/AI · 82 tokens