From 6db629278a6be42cab9922b224bbf0b843e05fdf Mon Sep 17 00:00:00 2001 From: Wendy Smoak Date: Sun, 15 Feb 2026 09:49:16 -0500 Subject: [PATCH] Use /Users/wsmoak instead of ~ --- tools/cli/installers/lib/ide/codex.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/cli/installers/lib/ide/codex.js b/tools/cli/installers/lib/ide/codex.js index 02447c398..38097e6c9 100644 --- a/tools/cli/installers/lib/ide/codex.js +++ b/tools/cli/installers/lib/ide/codex.js @@ -43,7 +43,7 @@ class CodexSetup extends BaseIdeSetup { value: 'project', }, { - name: 'Global - (~/.agents/skills)', + name: 'Global - ($HOME/.agents/skills)', value: 'global', }, ], @@ -54,7 +54,7 @@ class CodexSetup extends BaseIdeSetup { if (installLocation === 'project') { await prompts.log.info('Skills installed to: /.agents/skills'); } else { - await prompts.log.info('Skills installed to: ~/.agents/skills'); + await prompts.log.info('Skills installed to: $HOME/.agents/skills'); } // Confirm the choice @@ -377,7 +377,7 @@ class CodexSetup extends BaseIdeSetup { const lines = [ 'IMPORTANT: Codex Configuration', '', - 'Skills installed globally to your HOME DIRECTORY (~/.agents/skills).', + 'Skills installed globally to your HOME DIRECTORY ($HOME/.agents/skills).', '', 'These skills reference a specific _bmad path.', "To use with other projects, you'd need to copy the _bmad dir.",