Merge branch 'worktree-task-cancellation': task cancellation feature
Tests / Test passed: 926

# Conflicts:
#	packages/cloud-platform/cloud/schema.py
This commit is contained in:
2026-07-15 19:39:28 +08:00
49 changed files with 2374 additions and 63 deletions
+7 -1
View File
@@ -3,7 +3,8 @@ export type TaskStatus =
| "assigned"
| "dispatched"
| "done"
| "failed";
| "failed"
| "cancelled";
export interface TaskListItem {
id: string;
@@ -41,6 +42,11 @@ export interface TaskListResponse {
offset: number;
}
export interface TaskCancellationResponse {
task_id: string;
status: TaskStatus;
}
export interface TaskAttempt {
task_id: string;
attempt: number;