Compare commits

..

1 Commits

Author SHA1 Message Date
Wendy Smoak 6a87d7328c
Merge 0f280e590e into 3dd37bc94d 2026-02-19 19:35:03 -05:00
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ const prompts = require('../../../lib/prompts');
*/
class CodexSkillsSetup extends BaseIdeSetup {
constructor() {
super('codex-skills', 'Codex (Skills)', true); // preferred IDE
super('codex-skills', 'Codex', true); // preferred IDE
}
/**
@ -337,7 +337,7 @@ class CodexSkillsSetup extends BaseIdeSetup {
* @returns {Object|null} Info about created skill
*/
async installCustomAgentLauncher(projectDir, agentName, agentPath, metadata) {
const destDir = this.getCodexSkillsDir(projectDir);
const destDir = this.getCodexSkillsDir(projectDir, 'project');
// Skill name from the dash name (without .md)
const skillName = customAgentDashName(agentName).replace(/\.md$/, '');