default to per-project instead of global

This commit is contained in:
Wendy Smoak 2026-02-14 18:51:53 -05:00
parent 62e0b0ba52
commit 79855b2c4c
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ class CodexSetup extends BaseIdeSetup {
}; };
} }
getCodexSkillsDir(projectDir = null, location = 'global') { getCodexSkillsDir(projectDir = null, location = 'project') {
if (location === 'project' && projectDir) { if (location === 'project' && projectDir) {
return path.join(projectDir, '.agents', 'skills'); return path.join(projectDir, '.agents', 'skills');
} }