Add force stop feature for running agents on kanban cards

This commit is contained in:
Cody Seibert
2025-12-09 01:22:53 -05:00
parent f4df08f9b4
commit ca646f2acb
4 changed files with 73 additions and 17 deletions

View File

@@ -208,10 +208,16 @@ export interface AutoModeAPI {
error?: string;
}>;
stopFeature: (featureId: string) => Promise<{
success: boolean;
error?: string;
}>;
status: () => Promise<{
success: boolean;
isRunning?: boolean;
currentFeatureId?: string | null;
runningFeatures?: string[];
error?: string;
}>;