From quorum
Scans directories or files for performance anti-patterns like nested loops, synchronous I/O, unbounded queries, heavy imports, SELECT *, dynamic regex using hybrid regex+AST (TypeScript precision).
npx claudepluginhub berrzebb/quorum --plugin quorumScan for performance anti-patterns using **hybrid scanning**: regex first pass (speed) → AST second pass (precision, TypeScript only). | Param | Type | Required | Description | |-------|------|:--------:|-------------| | `--path` | string | — | Directory or file to scan (default: cwd) | ```bash quorum tool perf_scan --path src/ ``` Uses `qualityRules.perf` from each language's `spec.perf.mjs` f...
Fills Nyquist validation gaps by generating runnable behavioral tests for phase requirements, running them adversarially, debugging failures (max 3 iterations), verifying coverage, and escalating blockers.
Share bugs, ideas, or general feedback.
Scan for performance anti-patterns using hybrid scanning: regex first pass (speed) → AST second pass (precision, TypeScript only).
| Param | Type | Required | Description |
|---|---|---|---|
--path | string | — | Directory or file to scan (default: cwd) |
quorum tool perf_scan --path src/
Uses qualityRules.perf from each language's spec.perf.mjs fragment:
See references/languages.md for full pattern format and language coverage.
For TypeScript files, perf_scan uses the AST analyzer (ast-bridge.mjs) as a second pass to refine regex matches — reducing false positives for patterns that require structural understanding.