fix: remove .claude nesting from reviewer session dir path

CLAUDE_CONFIG_DIR included .claude suffix, but the container mounts
the parent directory at /home/node/.claude. This caused double nesting:
/home/node/.claude/.claude/CLAUDE.md — SDK never found the prompts.
This commit is contained in:
Eyejoker
2026-03-30 03:20:29 +09:00
parent 5b8c198e6b
commit e78f0b1968

View File

@@ -260,7 +260,6 @@ export function preparePairedExecutionContext(args: {
DATA_DIR,
'sessions',
`${group.folder}-reviewer`,
'.claude',
);
fs.mkdirSync(reviewerSessionDir, { recursive: true });
envOverrides.CLAUDE_CONFIG_DIR = reviewerSessionDir;