From 374083fa0e17195077f281487897a6a3a2af74e1 Mon Sep 17 00:00:00 2001 From: qwertystars <62981066+qwertystars@users.noreply.github.com> Date: Fri, 16 Jan 2026 23:42:41 +0530 Subject: [PATCH] fix(migration): correct import path for DEFAULT_CATEGORIES The import was pointing to non-existent sisyphus-task/constants, updated to delegate-task/constants where DEFAULT_CATEGORIES is defined. Co-Authored-By: Claude Opus 4.5 --- src/shared/migration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/migration.ts b/src/shared/migration.ts index ffc993c8f..69c75bc3c 100644 --- a/src/shared/migration.ts +++ b/src/shared/migration.ts @@ -107,7 +107,7 @@ export function shouldDeleteAgentConfig( config: Record, category: string ): boolean { - const { DEFAULT_CATEGORIES } = require("../tools/sisyphus-task/constants") + const { DEFAULT_CATEGORIES } = require("../tools/delegate-task/constants") const defaults = DEFAULT_CATEGORIES[category] if (!defaults) return false