Code Complete vs Refactoring.Guru
May 10, 2026 · View on GitHub
Status: reviewed Research basis: mini-only
Verdict: ✅ Complementary
Conflict: 12% Overlap: 38% Complementarity: 78%
Loading Decision
Use together when changing existing code: one rule set controls safe change sequencing while the other defines the target design, construction, architecture, data, or production quality.
Book A Pressure
- Code Complete should drive tasks where defect reduction, data clarity, defensive checks, evidence-based debugging, and reviewability dominate.
- Evidence:
code-complete/code-complete.mini.mdlines 3-5: applies to implementation, change, review, debugging, refactoring, and tuning of production code.
Book B Pressure
- Refactoring.Guru should drive tasks where smell diagnosis, smallest treatment choice, behavior verification, and stop conditions dominate.
- Evidence:
refactoring-guru/refactoring-guru.mini.mdlines 3-5: applies when code smells, technique choice, behavior preservation, and cleanup scope control matter.
Complementary Forces
- Claim: Code Complete contributes defect-reduction, data-clarity, defensive-check, evidence-based-debugging, and reviewability pressure; Refactoring.Guru contributes smell-diagnosis, smallest-treatment, behavior-verification, and stop-condition pressure. Together they are useful only where both scopes are active.
- Evidence:
code-complete/code-complete.mini.mdlines 35-47: fires when solution-first coding, hard-to-name routines, hidden data meaning, trust boundaries, complex control flow, repeated mappings, god objects, weak tests, guess-based debugging, risky refactoring, performance work, stale comments, or local style drift appear.refactoring-guru/refactoring-guru.mini.mdlines 13-37: requires separating behavior changes, diagnosing smell/cost/scope/end state/verification/stop condition, smallest treatment first, runnable small transformations, checks after risky moves, Rule of Three, debt paid by current cost, smell categories, bloaters/switch/change/coupler/dispensable treatments, comments vs code fixes, behavior with data, no getter/setter-only encapsulation, no speculative abstractions, public compatibility, extraction/movement/condition/data/generalization prechecks, and deliberate exceptions.
Overlap
- Claim: They overlap where both affect safe existing-code change, tests, behavior preservation, ownership, and stopping before speculative cleanup; the overlap score reflects how often an agent would receive similar pressure from both.
- Evidence:
code-complete/code-complete.mini.mdlines 51-56: checks requirements, architecture fit, construction approach, readable code structure, deliberate inputs/errors/invariants, inspectable flow, evidence-based validation, and reviewable change size.refactoring-guru/refactoring-guru.mini.mdlines 57-64: checks work type, diagnosed smell/cost, smallest treatment, behavior preservation, smell reduction, no speculative pattern use, public/state/ownership checks, and documented untreated smells.
Conflicts
- Claim: The tension is scope creep: design or architecture improvements must not override behavior preservation, characterization, or the current-smell stop condition.
- Evidence:
code-complete/code-complete.mini.mdlines 7-9: corrects accidental construction by choosing lower defect risk and easier reasoning over clever idioms.refactoring-guru/refactoring-guru.mini.mdlines 7-9: corrects treating refactoring as general cleanup or pattern application instead of smell-driven treatment with verification and stop condition.
Use Together When
- Use together when existing code must be reshaped toward Code Complete goals without changing observable behavior or turning cleanup into redesign.
Prefer One When
- Prefer the refactoring rule set when observable behavior must stay unchanged; prefer the other book when designing new behavior rather than reshaping existing structure.
Source Basis
code-complete/code-complete.mini.mdlines 3-5: applies to implementation, change, review, debugging, refactoring, and tuning of production code.code-complete/code-complete.mini.mdlines 7-9: corrects accidental construction by choosing lower defect risk and easier reasoning over clever idioms.code-complete/code-complete.mini.mdlines 35-47: fires when solution-first coding, hard-to-name routines, hidden data meaning, trust boundaries, complex control flow, repeated mappings, god objects, weak tests, guess-based debugging, risky refactoring, performance work, stale comments, or local style drift appear.code-complete/code-complete.mini.mdlines 51-56: checks requirements, architecture fit, construction approach, readable code structure, deliberate inputs/errors/invariants, inspectable flow, evidence-based validation, and reviewable change size.refactoring-guru/refactoring-guru.mini.mdlines 3-5: applies when code smells, technique choice, behavior preservation, and cleanup scope control matter.refactoring-guru/refactoring-guru.mini.mdlines 7-9: corrects treating refactoring as general cleanup or pattern application instead of smell-driven treatment with verification and stop condition.refactoring-guru/refactoring-guru.mini.mdlines 13-37: requires separating behavior changes, diagnosing smell/cost/scope/end state/verification/stop condition, smallest treatment first, runnable small transformations, checks after risky moves, Rule of Three, debt paid by current cost, smell categories, bloaters/switch/change/coupler/dispensable treatments, comments vs code fixes, behavior with data, no getter/setter-only encapsulation, no speculative abstractions, public compatibility, extraction/movement/condition/data/generalization prechecks, and deliberate exceptions.refactoring-guru/refactoring-guru.mini.mdlines 57-64: checks work type, diagnosed smell/cost, smallest treatment, behavior preservation, smell reduction, no speculative pattern use, public/state/ownership checks, and documented untreated smells.
Review Notes
- External context was not used as decisive evidence for Code Complete vs Refactoring.Guru; the verdict is based on the cited local
miniline ranges.