All skills
Skillintermediate

Removal and Iteration Plan Template

- [ ] **P0**: Immediate removal needed (security risk, significant cost, blocking other work) - [ ] **P1**: Remove in current sprint - [ ] **P2**: Backlog / next iteration

Claude Code Knowledge Pack7/10/2026

Overview

Removal and Iteration Plan Template

Priority Levels

  • P0: Immediate removal needed (security risk, significant cost, blocking other work)
  • P1: Remove in current sprint
  • P2: Backlog / next iteration

Safe to Remove Now

Item: [Name/Description]

FieldDetails
Locationpath/to/file.go:line
RationaleWhy this should be removed
EvidenceUnused (no references), dead feature flag, deprecated API
ImpactNone / Low - no active consumers
Deletion steps1. Remove code 2. Remove tests 3. Remove config
VerificationRun tests, check no runtime errors, monitor logs

Defer Removal (Plan Required)

Item: [Name/Description]

FieldDetails
Locationpath/to/file.go:line
Why deferActive consumers, needs migration, stakeholder sign-off
PreconditionsFeature flag off for 2 weeks, telemetry shows 0 usage
Breaking changesList any API/contract changes
Migration planSteps for consumers to migrate
TimelineTarget date or sprint
OwnerPerson/team responsible
ValidationMetrics to confirm safe removal (error rates, usage counts)
Rollback planHow to restore if issues found

Checklist Before Removal

  • Searched codebase for all references (rg, grep)
  • Checked for dynamic/reflection-based usage
  • Verified no external consumers (APIs, SDKs, docs)
  • Feature flag telemetry reviewed (if applicable)
  • Tests updated/removed
  • Documentation updated
  • Team notified (if shared code)