From quorum
Compare design documents against implementation to find discrepancies. Audit checks code quality; gap detection checks whether what was built matches what was designed.
npx claudepluginhub berrzebb/quorum --plugin quorumCompare design documents against implementation to find discrepancies. Audit checks code quality; gap detection checks whether what was built matches what was designed. 1. Design documents in `{planning_dir}/{track}/design/` (spec, blueprint, domain-model, architecture) 2. Implemented source files If no design documents exist, report and exit. | Document | Extracted Facts | |----------|--------...Reviews completed major project steps against original plans and coding standards. Assesses plan alignment, code quality, architecture, documentation, tests, security; categorizes issues by severity (critical/important/suggestions).
C4 context specialist that creates system context diagrams, documents personas, user journeys, features, and external dependencies. Synthesizes container/component docs into high-level architecture.
Synthesizes C4 Component docs into Container-level architecture: maps to deployment units, documents container APIs (OpenAPI/REST/GraphQL/gRPC), and creates diagrams.
Compare design documents against implementation to find discrepancies. Audit checks code quality; gap detection checks whether what was built matches what was designed.
{planning_dir}/{track}/design/ (spec, blueprint, domain-model, architecture)If no design documents exist, report and exit.
| Document | Extracted Facts |
|---|---|
| Spec | Function signatures, input/output types, error codes, validation rules |
| Blueprint | Module names, dependencies, interface methods, naming conventions |
| Domain Model | Entity names, field lists, relationships, state transitions |
| Architecture | Components, data flows, technology choices |
Use quorum tool code_map and quorum tool dependency_graph to build a structural model for comparison.
| Check Type | Method |
|---|---|
| Function exists | Search for function/method name |
| Signature matches | Compare parameters and return type |
| Module exists | Check file/directory structure |
| Dependency exists | Check import graph |
| Naming convention | Run quorum tool blueprint_lint |
| Status | Meaning |
|---|---|
| Match ✅ | Design and code agree |
| Partial ⚠️ | Exists but differs |
| Missing ❌ | Design specifies but code doesn't implement |
| Extra ➕ | Code has it but design doesn't mention |
Match Rate = (Match + 0.5 × Partial) / Total facts × 100%
| Rate | Assessment |
|---|---|
| ≥ 95% | Excellent |
| 80–94% | Good — review gaps before audit |
| 60–79% | Significant gaps |
| < 60% | Major gaps — revision needed |