Compare commits

..

No commits in common. "c075d1673c479e0e4bb4a615783140d772f84a50" and "0f280e590ea9ec01b7732ccda1eaa5f555b757e2" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ const prompts = require('../../../lib/prompts');
*/ */
class CodexSkillsSetup extends BaseIdeSetup { class CodexSkillsSetup extends BaseIdeSetup {
constructor() { 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 * @returns {Object|null} Info about created skill
*/ */
async installCustomAgentLauncher(projectDir, agentName, agentPath, metadata) { 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) // Skill name from the dash name (without .md)
const skillName = customAgentDashName(agentName).replace(/\.md$/, ''); const skillName = customAgentDashName(agentName).replace(/\.md$/, '');