mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-15 02:42:45 +08:00
feat: Enhance multi-cli-plan support with new synthesis types and update related components
This commit is contained in:
@@ -118,6 +118,9 @@ interface LiteTaskDetail {
|
||||
explorations: unknown[];
|
||||
clarifications: unknown | null;
|
||||
diagnoses?: Diagnoses;
|
||||
// Multi-cli-plan specific
|
||||
rounds?: RoundSynthesis[];
|
||||
latestSynthesis?: RoundSynthesis | null;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -923,6 +926,9 @@ export async function getLiteTaskDetail(workflowDir: string, type: string, sessi
|
||||
tasks: extractTasksFromSyntheses(syntheses),
|
||||
explorations,
|
||||
clarifications,
|
||||
// Multi-cli-plan specific fields
|
||||
rounds: syntheses,
|
||||
latestSynthesis,
|
||||
};
|
||||
|
||||
return detail;
|
||||
|
||||
Reference in New Issue
Block a user