From db90607378f2d149041413f1ce9c6661aed588ed Mon Sep 17 00:00:00 2001 From: Tibsfox Date: Sun, 5 Apr 2026 12:05:02 -0700 Subject: [PATCH] fix(gsd): cast milestone classification to string for type safety --- src/resources/extensions/gsd/triage-resolution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/extensions/gsd/triage-resolution.ts b/src/resources/extensions/gsd/triage-resolution.ts index 7255a34f6..270a176fc 100644 --- a/src/resources/extensions/gsd/triage-resolution.ts +++ b/src/resources/extensions/gsd/triage-resolution.ts @@ -485,7 +485,7 @@ export function executeTriageResolutions( // picks up the work naturally from its planning context. const deferrable = loadAllCaptures(basePath).filter( c => c.status === "resolved" && !c.executed && - (c.classification === "defer" || c.classification === "milestone"), + (c.classification === "defer" || (c.classification as string) === "milestone"), ); if (deferrable.length > 0) { // Group captures that reference a specific milestone — create dirs as needed.