One Pager Cheat Sheet
technical debtcompounds silently and, while it can accelerate delivery if managed with a pay-down plan, unmanaged debt slows teams, increases outage risk, and must be seen, priced, prioritized, and paid down to avoid blocking the roadmap.- Martin Fowler’s
Technical Debt Quadrantclassifies debt by intent (deliberate vs. inadvertent) and judgment (prudent vs. reckless), helping teams explain why shortcuts happened and pick remedies — e.g., knowinglyhardcodingconfigis deliberate/prudent if there’s a follow-up ticket and owner, otherwise reckless. - The
Technical Debt Quadrantclassifiestechnical debtalong the orthogonal dimensions of intent (either deliberate or inadvertent) and judgment (either prudent or reckless), so every debt instance can be labeled to explain why it exists and guide appropriate remedies, ownership, and prioritization. principalis the one-time work to remediate debt,interestis the recurring extra work you pay every time you touch the area,interest rateis how quickly that extra work grows, and adebt itemis a trackable unit describing location, impact, and remediation.- In the software-debt analogy,
interestis the recurring extra work you pay every time you touch the area, distinct from the one-time work to remediate the debt (principal); theinterest ratemeasures how that per-touch cost grows and adebt itemtracks whereprincipalandinterestlive so you can decide whether to pay them down. - Technical debt is not just “ugly code”; it’s any design or implementation shortcut that increases future change cost—for example missing
tests, unclear ownership, outdatedlibraries, “temporarily” bypassedchecks, or accidental complexity inarchitecture—and while bugs ≠ debt, a pattern of quick fixes that bypass root causes is debt. - Software debt commonly arises from deliberate pressures like deadlines and feature demands, inadvertent causes such as knowledge gaps or changing requirements, architecture drift as systems evolve, and tooling/infra lag (e.g.
versions,build pipelines), and SEI emphasizes it often comes from process and context, not justcode. - False — Not all technical debt is intentional:
technical debtincludes deliberate trade-offs (e.g.,TODO,prototype,hackpromoted to production) and inadvertent issues from changing requirements, knowledge gaps, and process/context, and should be handled differently—document and schedule intentional debt; root-cause fix inadvertent debt—becauseintereststill accrues and you should track it inissuesand budget time to pay it down. - Technical debt raises toil, on-call pages, and change-failure rates, so SREs should use
error budgetsand risk tradeoffs to justify refactors that reduce alert volume and improveMTTR, aligning with reliability goals. - Make debt visible by recording
technical debtin your shared backlog alongside features and bugs—tagged and prioritized per Atlassian—while capturinglocation,symptoms(interest),owners,proposed fix,size,risk, and adefinition of doneso tradeoffs are transparent. - Making
technical debtvisible in the shared backlog with impact fields (e.g.,interest,size,risk,owners,proposed fix,definition of done) creates transparency, enables data-driven prioritization, assigns ownership, reduces rework, and lowers risk by turning hiddendebt items into actionable, reportable work. - Estimate Principal as
person-daysto implement the fix and Interest as the extrahours per sprintcaused by the debt (e.g.,test flakiness≈ 2h/wk), track both and review monthly — Fowler frames this extra effort as the interest you pay. - Use a simple score —
Priority = (Interest × Frequency × Risk) ÷ (Principal), whereInterestis extra effort per touch,Frequencyis how often the area changes,Riskis outage/compliance/security exposure, andPrincipalis estimated remediation effort — to compare debt items and order the debt column in your backlog alongside product value. - Combine
Debt Budget (Tax)— reserve a fixed 10–20% of each sprint for debt — withRefactor Fridays/20% Time— scheduled cleanup cadence — plusOpportunistic Refactor(theBoy Scout Rule) — leave any file you touch in better shape — andThematic Cleanup— focus on one cross-cutting issue per quarter. - Architecture debt stems from design shortcuts like
shared DBs,tight coupling, andambiguous boundaries, creating systemic drag that can be mitigated by domain decomposition and clear contracts to reduce “spiderweb” dependencies, and — as SEI notes — the debt spans artifacts beyond code. - Automated tests and fast CI lower the
interest rateby making changes safer and cheaper;SREmonitoring of thegolden signals—latency,traffic,errors,saturation—reveals debt that harms reliability you can use to justify investment, and addingstatic analysis,coverage gates, andupgrade botshelps stop new debt from sneaking in. - Follow the sequence capture (make the debt visible and assign an owner) → quantify (estimate
principalandinterestusinglogs/metrics) → prioritize (score by impact, ROI and risk with frameworks likeRICE/WSJF) → schedule into a sprint, because this traceable, data‑driven flow turns qualitative problems into measurable tradeoffs and ensures fixes are timeboxed and actually reduce the organization's effectiveinterest rate. - Tailor updates: show Engineers
before/aftercycle timeanddefect trends; explain to PMs how cleanup affectsroadmap velocity(e.g., "feature X ships 2 sprints sooner"); and brief Execs inrisk/costterms (e.g.,N engineer-days/quarter, payback ≤2 quarters), using concise artifacts likeRFCs,risk registers, anddecision memos. - Implement
Definition of Donethat requirestests,monitoring, anddocs, enforce architecture reviews for cross-team impacts, adopt version policies (e.g.,N-1forframeworks) with scheduled upgrade windows, and gate changes with CIlint/type checksto prevent avoidable debt. - Track before/after using
lead time for changes,change failure rate,incident counts/MTTR,flaky tests,CI duration, anddeploy frequencyas your core throughput/reliability metrics to validate returns on debt work (see SRE monitoring chapters for guidance on signals). - Prefer incremental refactors with steady business value; only undertake a rewrite when the interest on technical debt far exceeds the principal, the architecture is fatally misaligned with product direction, and you can run old and new in parallel via the
strangler pattern, keeping milestones small and reversible.


