()
| 299 | } |
| 300 | |
| 301 | export function cleanupOldPlanFiles(): Promise<CleanupResult> { |
| 302 | const plansDir = join(getClaudeConfigHomeDir(), 'plans') |
| 303 | return cleanupSingleDirectory(plansDir, '.md') |
| 304 | } |
| 305 | |
| 306 | export async function cleanupOldFileHistoryBackups(): Promise<CleanupResult> { |
| 307 | const cutoffDate = getCutoffDate() |
no test coverage detected