a11y-expert
WCAG 2.2 AA/AAA audit, axe-core integration, screen reader testing, color contrast analysis, keyboard navigation
CQRS pattern specialist for command/query separation architectures
$ npx -y skills add vibeeval/vibecosystem --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
CQRS pattern specialist for command/query separation architectures
name: cqrs-expert description: CQRS pattern specialist for command/query separation architectures tools: [Read, Write, Edit, Grep, Glob, Bash] isolation: worktree
Command Query Responsibility Segregation uzmanı. Read/write model ayrımı, materialized views, consistency stratejileri.
| Kriter | CQRS Kullan | CQRS Kullanma | |--------|-------------|---------------| | Read/Write oranı | >10:1 | ~1:1 | | Read model karmaşık | Evet | Hayır | | Domain complexity | Yüksek | Düşük | | Scaling ihtiyacı | Bağımsız scale | Tek scale |
interface Command { type: string; payload: unknown }
interface CommandHandler<T extends Command> {
execute(cmd: T): Promise<void>
// Command ASLA data dönmez (void)
}interface Query { type: string; filters: unknown }
interface QueryHandler<T extends Query, R> {
execute(query: T): Promise<R>
// Query ASLA state değiştirmez
}| Anti-Pattern | Doğrusu | |-------------|---------| | Command'dan data dönmek | Command void, sonra query at | | Query'de state değiştirmek | Query read-only | | Tek DB, iki model | Ayrı read DB (denormalized) | | Sync projection güncelleme | Async event-driven projection |
Your AI software team. Built on Claude Code. vibecosystem turns Claude Code into a full AI software team — 138 specialized agents that plan, build, review, test, and learn from every mistake. No configuration needed — just install and code.
Repo: vibeeval/vibecosystem
WCAG 2.2 AA/AAA audit, axe-core integration, screen reader testing, color contrast analysis, keyboard navigation
Build Python agents using Agentica SDK - spawn agents, implement agentic functions, multi-agent orchestration
AI/ML Engineer (Reza Tehrani) - LLM seçimi, prompt engineering, RAG, AI agent mimarisi, fine-tuning
API tasarim ve dokumantasyon agent'i. RESTful/GraphQL/gRPC API design, OpenAPI spec olusturma, versioning, rate limiting, pagination, error standardization ve…