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