5 Claude Code Terminal Commands You Might Be Missing
A senior dev who's been using Claude Code in the terminal for 6+ months shares five commands that significantly improved their daily workflow. These aren't flashy features, but practical friction-removers.
1. Customize your statusline with /statusline
Adds a persistent status bar at the bottom of your terminal. You can ask Claude to display model name, git branch, context usage percentage, or anything else you need at a glance.
2. Run shell commands with !
Prefix any command with ! to execute it directly from the chat. The output stays in the conversation, so you can follow up without copy-pasting. Use Ctrl+B while a ! command is running to send long-running commands to the background.
3. Mention files with @
Type @ + filename to trigger path autocomplete. This is much faster than letting Claude search your repo for the right file.
4. Expand working context with /add-dir
Add another directory to the session. Perfect for projects split across multiple repos — you can work with both simultaneously.
5. Start a side conversation with /btw
Ask a quick question without interrupting Claude's current task. For longer side discussions, use /branch to spin off a new session.
These commands may seem simple, but the author found they removed a lot of friction from daily use.
📖 Read the full source: r/ClaudeAI
👀 See Also
Slash Agent Start-Up Tokens by 60%: Clean Up Your Bot's Workspace
One developer dropped start-up tokens from 80k to 31k by having an LLM audit and restructure workspace files—removing bloat, deduplicating info, and organizing tool docs into separate files.

Multi-model routing reduces OpenClaw API costs by 50%
A developer cut OpenClaw API costs by 50% by routing different tasks through different models: Claude for complex reasoning, DeepSeek for file operations and test generation, and Gemini or GPT for mid-range tasks.

Verification Harness Fixes Claude's Plan Execution Problem
A developer built a 30-50 line bash or Python verification layer that checks whether Claude actually executes each step of its own plans by verifying artifacts like file existence, API responses, and config changes.

Routing cuts OpenClaw Max usage cost by 85%: $200/mo to $30/mo with API routing
A user tracked token usage and found only 15% of tasks need Opus. By routing routine work to Sonnet via API, monthly cost dropped from $200 to $30 with identical output quality.