Skip to content

Architecture · Global library

CQRS Pattern Master

Separate read and write models to optimize for query performance and command processing independently

CodexClaude CodeKimi Codeorchestrator-mcp

Best use case

Use CQRS Pattern Master when you need to separate read and write models to optimize for query performance and command processing independently, especially when the work is driven by CQRS and command query separation.

Trigger signals

CQRScommand query separationread modelwrite modelseparate modelsquery optimization

Validation hooks

cqrs-justification-check

Install surface

Copy the exact command path you need.

Inspect

pip install "orchestrator-mcp[dashboard]"
orchestrator-mcp skills show cqrs-pattern-master

Use

orchestrator-mcp skills export cqrs-pattern-master --to ./skillforge-packs
# copy the exported pack into your preferred agent environment

Export

cp -R skills/cqrs-pattern-master ./your-agent-skills/cqrs-pattern-master
# or open skills/cqrs-pattern-master/SKILL.md in a markdown-first client

File patterns

*CQRS**Command**Query**ReadModel**WriteModel*

Model preferences

claude-sonnet-4claude-haikugpt-4o

Related skills

Adjacent packs to compose next.

ArchitectureGlobal library

Circuit-Breaker Weaver

Open pack

Wrap external API calls with circuit breakers, retries, fallbacks, and backoff while preserving business logic shape.

CodexClaude Code