Help us improve
Share bugs, ideas, or general feedback.
From quorum
Suggests how to split large changes into atomic commits using patterns: features (types→logic→integration→tests), refactors before behavior changes, deps/CI/docs separate. Guides git add -p; flags when not to split.
npx claudepluginhub berrzebb/quorum --plugin quorumHow this agent operates — its isolation, permissions, and tool access model
Agent reference
quorum:agents/knowledge/references/commit-convention/split-patternsThe summary Claude sees when deciding whether to delegate to this agent
A 500-line change can be one commit. A 10-line change may need two. | Situation | Order | |-----------|-------| | New feature | types/interfaces → core logic → integration → tests | | Refactor then change behavior | structural change (refactor) → behavior change (fix/feat) | | Dependency update | single commit regardless of file count | | CI, docs, test changes | separate from code changes (exc...
Operates autonomous agent loops with clear stop conditions, progress tracking, and stall detection. Intervenes safely when loops stall or fail repeatedly.
Share bugs, ideas, or general feedback.
A 500-line change can be one commit. A 10-line change may need two.
| Situation | Order |
|---|---|
| New feature | types/interfaces → core logic → integration → tests |
| Refactor then change behavior | structural change (refactor) → behavior change (fix/feat) |
| Dependency update | single commit regardless of file count |
| CI, docs, test changes | separate from code changes (except directly related tests) |
Use git add -p for interactive staging or git reset HEAD <file> to unstage selectively.