You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Increase doctor volume detection depth from 4 to 8 to catch nested projects
- Add git safe directory doctor check with immediate fix (no rebuild needed)
- Auto-detect and register all git repos as safe.directory on container startup
- Add `codeforge mount add <path>` command for manual volume registration
- Extract shared mounts.json utilities to dedicated module
- Standardize rebuild messaging with specific VS Code and CLI instructions
- Add rebuildType field to FixAction for normal vs full rebuild guidance
@@ -104,7 +82,7 @@ export async function checkVolumeCandidates(
104
82
const{ stdout, exitCode }=awaitspawn("find",[
105
83
workspaceRoot,
106
84
"-maxdepth",
107
-
"4",
85
+
"8",
108
86
"-type",
109
87
"d",
110
88
"(",
@@ -161,6 +139,7 @@ export async function checkVolumeCandidates(
161
139
detail: `Registers ${relPath} in .codeforge/mounts.json so CodeForge can mount it as a Docker volume instead of a bind mount, significantly improving I/O performance.`,
162
140
impact: "requires rebuild",
163
141
requiresRebuild: true,
142
+
rebuildType: "normal",
164
143
apply: async(): Promise<{
165
144
applied: boolean;
166
145
message: string;
@@ -193,11 +172,7 @@ export async function checkVolumeCandidates(
0 commit comments