Slash Command4k repo starsupdated 3d ago
budget-mode
Switch Octopus model routing to the configured budget tier
Install in Claude Code
Copymkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/nyldn/claude-octopus/HEAD/commands/budget-mode.md -o ~/.claude/commands/budget-mode.mdThen start a new Claude Code session; the slash command loads automatically.
Definition
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.More from this repository
backend-architectSubagent
Backend architect. Delegate only when the user explicitly starts an Octopus workflow.
cloud-architectSubagent
Cloud architect. Delegate only when the user explicitly starts an Octopus workflow.
code-reviewerSubagent
Code reviewer. Delegate only when the user explicitly starts an Octopus workflow.
database-architectSubagent
Database architect. Delegate only when the user explicitly starts an Octopus workflow.
debuggerSubagent
Debugger. Delegate only when the user explicitly starts an Octopus workflow.
docs-architectSubagent
Documentation architect. Delegate only when the user explicitly starts an Octopus workflow.
frontend-developerSubagent
Frontend developer. Delegate only when the user explicitly starts an Octopus workflow.
performance-engineerSubagent
Performance engineer. Delegate only when the user explicitly starts an Octopus workflow.