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

OpenClaw Plugin Minimalism: Core Tools Handle 95% of Tasks
A developer running OpenClaw in production reports that disabling non-essential plugins and replacing critical ones with simple scripts resulted in 40% faster startup, 60% less memory usage, and zero breaking updates over four months.

Loading Every MCP Server on Every Prompt Quietly Destroys Token Budget
A user with 5–6 MCP servers found each prompt loaded all servers, causing massive token waste. Implementing a routing layer to load only relevant servers per prompt drastically reduced token usage and improved response times.

How a /loop Command Burned $6,000 in Claude API Overnight
A developer's unattended /loop command running every 30 minutes on claude-opus-4-7 consumed $6,000 in one night due to prompt caching expiration and growing context — a cautionary tale for AI agent automation.

OpenClaw Drift Fix: Four Operator Skills to Harden Agent Workflows
A developer shares four operator skills — Outcome Guard, Direction Clarifier, Routing Enforcer, Completion Verifier — to stop agents from drifting and calling tasks done prematurely.