Estimating technical debt payoff work

Derek Singh
Derek Singh · Nov 21, 2025 at 10:30 AM

Our codebase has accumulated a lot of technical debt. We need to refactor the authentication module - it's slowing down all new user features.

How do you estimate refactoring stories? Our product owner doesn't understand why we need to spend a whole sprint on "rewriting code that already works." How do you communicate the value and estimate the complexity?

Tech Lead Veteran
Tech Lead Veteran Best Answer · Nov 21, 2025 at 11:45 AM

Estimating Tech Debt:

Estimate refactoring stories the same way as features - based on complexity, not time. Use story points for all work that consumes capacity.

  • 3-5 points: Small refactoring (extract functions, rename variables)
  • 8-13 points: Module refactoring (redesign authentication logic)
  • 21+ points: Architectural changes (migrate database, rewrite core service)

Communicating Value to Non-Technical Stakeholders:

Never say "refactor for code quality." Frame it in business outcomes:

  • ❌ "We need to refactor auth module" (means nothing to PO)
  • ✅ "This refactoring enables us to add SSO integration 3x faster" (feature enablement)
  • ✅ "Reduces production login failures from 12/week to 1/week" (reliability)
  • ✅ "New developers can onboard 2 days faster" (team efficiency)

The 15-20% Rule:

Reserve 15-20% of each sprint for technical debt. This is a running budget, not negotiable. If you wait for "dedicated refactoring sprints", they never happen.

Example: Team velocity is 50 points

  • 40 points: Features
  • 10 points: Tech debt

Breaking Down Large Refactoring:

Don't propose a full sprint of refactoring. Break it into incremental improvements:

  • Sprint 1: Refactor auth middleware (8 points)
  • Sprint 2: Migrate to new session handling (8 points)
  • Sprint 3: Add comprehensive tests (5 points)

Stakeholders see progress on features every sprint, while tech debt gets addressed gradually.

Product Manager
Product Manager · Nov 21, 2025 at 12:30 PM

As a PO, I appreciate when tech debt is framed as "investment" not "cost". Show me the ROI: "We invest 10 points this sprint, save 15 points on future features."

That's a business case I can sell to stakeholders.

Derek Singh
Derek Singh OP · Nov 21, 2025 at 1:15 PM

The "frame it in business outcomes" advice is gold. I'll propose breaking our auth refactoring into 3 sprints instead of asking for a dedicated sprint. Thanks!

Eng Director
Eng Director · Nov 21, 2025 at 2:00 PM

We track "tech debt ratio" as a metric: (tech debt points / total points). Healthy teams: 15-25%. If you're below 10%, you're accumulating debt. Above 40%, you're over-rotating on tech and under-delivering features.

Related Discussions