Skip to main content
ClaudeWave
Slash Command4k repo starsupdated 3d ago

budget-mode

Switch Octopus model routing to the configured budget tier

Install in Claude Code
Copy
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/nyldn/claude-octopus/HEAD/commands/budget-mode.md -o ~/.claude/commands/budget-mode.md
Then start a new Claude Code session; the slash command loads automatically.

budget-mode.md

# Budget Cost Mode

**Your first output line MUST be:** `🐙 Octopus Cost Mode: Budget`

This v10 compatibility command selects the Budget option from
`/octo:model-config`. It is scheduled for removal in v11.

Run this command with the Bash tool:

```bash
OCTO_ROOT="${CLAUDE_PLUGIN_ROOT:-${HOME}/.claude-octopus/plugin}"
helper="$OCTO_ROOT/scripts/helpers/octo-model-config.sh"
if [[ ! -x "$helper" ]]; then
  echo "ERROR: Claude Octopus model-config helper is unavailable. Run /octo:setup." >&2
  exit 1
fi
"$helper" cost-mode budget &&
  "$helper" cost-mode status
```

Report the helper output exactly. The selection persists in
`~/.claude-octopus/config/providers.json`; do not edit the user's shell profile.