Stats
Actions
Tags
From quorum
Verifies code for concurrency issues: race conditions, deadlocks, async coordination, TOCTOU patterns, worker communication using dependency graphs.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
quorum:agents/knowledge/domains/concurrencyThe summary Claude sees when deciding whether to delegate to this agent
**Primary tool**: `dependency_graph` 1. **Race conditions** — shared state without synchronization 2. **Deadlock potential** — circular lock dependencies 3. **Async coordination** — Promise.all error handling, cancellation 4. **TOCTOU patterns** — check-then-act without atomicity 5. **Worker communication** — message passing correctness, shared memory - [ ] CONC-1: Shared mutable state protecte...
Primary tool: dependency_graph
npx claudepluginhub berrzebb/quorum --plugin quorumExpert Go code reviewer that analyzes diffs, runs go vet and staticcheck, and checks for idiomatic Go, concurrency bugs, error handling, and security issues.