/cqrs-implementation
Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems.
One skill from wshobson-agents.
shell
$ npx -y skills add wshobson/agents --skill cqrs-implementation --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/cqrs-implementation
Context preview
The summary Claude sees to decide when to auto-load this skill.
Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems.
Stats
Stars38,174
Forks4,092
LanguagePython
LicenseMIT
Ships with wshobson-agents
SKILL.md
cqrs-implementation.SKILL.md
--- name: cqrs-implementation description: Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems. --- # CQRS Implementation Comprehensive guide to implementing CQRS (Command Query Responsibility Segregation) patterns. ## When to Use This Skill - Separating read and write concerns - Scaling reads independently from writes - Building event-sourced systems - Optimizing complex query scenarios - Different read/write data models needed - High-performance reporting requirements ## Core Concepts ### 1. CQRS Architecture ``` โโโโโโโโโโโโโโโ โ Client โ โโโโโโโโฌโโโโโโโ โ โโโโโโโโโโโโโโดโโโโโโโโโโโโโ โ โ โผ โผ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โ Commands โ โ Queries โ โ API โ โ API โ โโโโโโโโฌโโโโโโโ โโโโโโโโฌโโโโโโโ
