feat: Implement phases 6 to 9 of the review cycle fix process, including discovery, batching, parallel planning, execution, and completion

- Added Phase 6: Fix Discovery & Batching with intelligent grouping and batching of findings.
- Added Phase 7: Fix Parallel Planning to launch planning agents for concurrent analysis and aggregation of partial plans.
- Added Phase 8: Fix Execution for stage-based execution of fixes with conservative test verification.
- Added Phase 9: Fix Completion to aggregate results, generate summary reports, and handle session completion.
- Introduced new frontend components: ResizeHandle for draggable resizing of sidebar panels and useResizablePanel hook for managing panel sizes with localStorage persistence.
- Added PowerShell script for checking TypeScript errors in source code, excluding test files.
This commit is contained in:
catlog22
2026-02-07 19:28:33 +08:00
parent ba5f4eba84
commit d43696d756
90 changed files with 8462 additions and 616 deletions

View File

@@ -175,6 +175,14 @@ export default {
"75%": { backgroundImage: "linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%)" },
"100%": { backgroundImage: "linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%)" },
},
"collapsible-slide-down": {
from: { width: "0", opacity: "0" },
to: { width: "var(--radix-collapsible-content-width)", opacity: "1" },
},
"collapsible-slide-up": {
from: { width: "var(--radix-collapsible-content-width)", opacity: "1" },
to: { width: "0", opacity: "0" },
},
},
animation: {
@@ -182,6 +190,8 @@ export default {
"accordion-up": "accordion-up 0.2s ease-out",
marquee: "marquee 30s linear infinite",
"slow-gradient": "slow-gradient-shift 60s ease-in-out infinite alternate",
"collapsible-slide-down": "collapsible-slide-down 150ms ease-out",
"collapsible-slide-up": "collapsible-slide-up 150ms ease-out",
},
},
},