Help us improve
Share bugs, ideas, or general feedback.
From quorum
Zero-token scanner detects code anti-patterns like 'as any', @ts-ignore, hardcoded values, empty catches, console.logs, and TODOs using ripgrep regex matching for pre-commit checks and quick reviews.
npx claudepluginhub berrzebb/quorum --plugin quorumHow this agent operates — its isolation, permissions, and tool access model
Agent reference
quorum:agents/knowledge/references/consensus-tools/audit-scanThe summary Claude sees when deciding whether to delegate to this agent
Zero-token pattern scanner. Detects anti-patterns without LLM reasoning — pure regex matching via `rg` (ripgrep). - Pre-commit quality check — find `as any`, `@ts-ignore`, `console.log` before submission - Evidence preparation — scan for issues that audit will flag - Code review — quick sweep for common anti-patterns | Param | Required | Default | Description | |-------|----------|---------|---...
Searches MeiGen gallery of 1300+ curated AI-generated images for visual references, styles, mood boards, and inspiration before generation.
Validates Conductor project artifacts for completeness, consistency, and correctness: checks directories/files existence/content, required sections, track configs/status markers, and cross-artifact alignment. Delegate after setup, for diagnostics, or pre-implementation.
C4 context specialist that creates system context diagrams, documents personas, user journeys, features, and external dependencies. Synthesizes container/component docs into high-level architecture.
Share bugs, ideas, or general feedback.
Zero-token pattern scanner. Detects anti-patterns without LLM reasoning — pure regex matching via rg (ripgrep).
as any, @ts-ignore, console.log before submission| Param | Required | Default | Description |
|---|---|---|---|
--pattern | No | all | Scan category: all, type-safety, hardcoded, console |
--path | No | src/ | Target directory to scan |
| Category | What it finds |
|---|---|
type-safety | as any, @ts-ignore, @ts-expect-error |
hardcoded | localhost, 127.0.0.1, redis://, port numbers |
empty-catch | catch {} blocks with no error handling |
todo | TODO, FIXME, HACK comments |
all | All of the above |
# Full scan
quorum tool audit_scan
# Type-safety issues only
quorum tool audit_scan --pattern type-safety
# Scan specific directory
quorum tool audit_scan --pattern hardcoded --path src/config/
=== Type Safety Issues (as any, @ts-ignore, @ts-expect-error) ===
src/utils/parser.ts:45: const data = response as any
src/api/handler.ts:12: // @ts-ignore
=== Hardcoded Values (localhost, ports, Redis URLs) ===
(none found)
Requires rg (ripgrep) to be installed and available in PATH. Falls back gracefully if not found.