Compare commits

...

3 Commits

Author SHA1 Message Date
Wendy Smoak ded434febb
Merge c075d1673c into 3dd37bc94d 2026-02-20 13:13:19 +00:00
Wendy Smoak c075d1673c add skill to display name 2026-02-20 08:12:56 -05:00
Wendy Smoak f0fc78407c Remove extra method param 2026-02-20 07:03:30 -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', true); // preferred IDE
super('codex-skills', 'Codex (Skills)', 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, 'project');
const destDir = this.getCodexSkillsDir(projectDir);
// Skill name from the dash name (without .md)
const skillName = customAgentDashName(agentName).replace(/\.md$/, '');