Help us improve
Share bugs, ideas, or general feedback.
From quorum
Reference agent for conventional commit types (feat, fix, refactor, etc.), scopes, breaking changes (! notation or footers), and imperative mood tests to craft standardized git commit messages.
npx claudepluginhub berrzebb/quorum --plugin quorumHow this agent operates — its isolation, permissions, and tool access model
Agent reference
quorum:agents/knowledge/references/commit-convention/typesThe summary Claude sees when deciding whether to delegate to this agent
| Type | Use when | |------|----------| | `feat` | new feature | | `fix` | bug fix | | `refactor` | code restructure with no behavior change | | `test` | adding or updating tests | | `docs` | documentation only | | `style` | formatting, whitespace (no logic change) | | `chore` | build process, tooling, dependencies | | `perf` | performance improvement | | `ci` | CI/CD configuration | | `build` ...
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.
| Type | Use when |
|---|---|
feat | new feature |
fix | bug fix |
refactor | code restructure with no behavior change |
test | adding or updating tests |
docs | documentation only |
style | formatting, whitespace (no logic change) |
chore | build process, tooling, dependencies |
perf | performance improvement |
ci | CI/CD configuration |
build | build system changes |
revert | reverting a previous commit |
hotfix | urgent production fix (bypasses normal flow) |
Projects often extend this list (e.g., design, rename). Check CLAUDE.md.
Scope is optional but recommended for clarity:
feat(auth): add JWT refresh token support
fix(pagination): correct off-by-one in page offset
refactor(user): move UserService to services/
For monorepos, scope = package name. For single repos, scope = module or feature area.
Mark with ! after scope:
feat(api)!: change response format to JSON:API
Or add BREAKING CHANGE: footer in the body.
The subject should complete this sentence:
"If applied, this commit will [subject]"