Remove extra method param

This commit is contained in:
Wendy Smoak 2026-02-20 07:03:30 -05:00
parent 0f280e590e
commit f0fc78407c
1 changed files with 1 additions and 1 deletions

View File

@ -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, 'project'); const destDir = this.getCodexSkillsDir(projectDir);
// 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$/, '');