From f0fc78407c20481370a07c862808a4f3ef510f40 Mon Sep 17 00:00:00 2001 From: Wendy Smoak Date: Fri, 20 Feb 2026 07:03:30 -0500 Subject: [PATCH] Remove extra method param --- tools/cli/installers/lib/ide/codex-skills.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cli/installers/lib/ide/codex-skills.js b/tools/cli/installers/lib/ide/codex-skills.js index dd6284749..692f3c26b 100644 --- a/tools/cli/installers/lib/ide/codex-skills.js +++ b/tools/cli/installers/lib/ide/codex-skills.js @@ -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$/, '');