Project Files
src / repair / repairProject.ts
export async function repairProject(projectPath: string, maxIterations = 10) {
return {
projectPath,
maxIterations,
status: "scaffold",
workflow: ["inspect","build","repair","verify"]
};
}