guard against missing project directory
This commit is contained in:
parent
b318d9242e
commit
64e5a9c696
|
|
@ -321,6 +321,9 @@ class CodexSetup extends BaseIdeSetup {
|
||||||
if (location === 'project' && projectDir) {
|
if (location === 'project' && projectDir) {
|
||||||
return path.join(projectDir, '.agents', 'skills');
|
return path.join(projectDir, '.agents', 'skills');
|
||||||
}
|
}
|
||||||
|
if (location === 'project' && !projectDir) {
|
||||||
|
throw new Error('projectDir is required for project-scoped skill installation');
|
||||||
|
}
|
||||||
return path.join(os.homedir(), '.agents', 'skills');
|
return path.join(os.homedir(), '.agents', 'skills');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue