<p>For some developers, that's exactly right. They want to see their token burn rate at a glance. They want to know they're at 73% context capacity before they hit the wall.</p><p>For others, it's noise. They know what model they're using. They don't need to see <code>$0.042</code> tick up with every response. The context percentage creates a low-grade anxiety that doesn't help them code better. They just want a clean terminal.</p><p>v0.5.13 adds <code>/footer</code> to toggle between the two.</p><h2>The command</h2><pre><code>/footer
</code></pre><p>That's it. One command, no arguments. It toggles between full and minimal. Type it again to switch back.</p><p><strong>Full footer</strong> (the default, unchanged):</p><pre><code>~/Code/myapp (main) • auth-refactor
↑42.1k ↓8.9k R38.1k W4.2k $0.184 73.2%/200k (auto)    claude-sonnet-4-20250514 • medium
</code></pre><p><strong>Minimal footer</strong> after <code>/footer</code>:</p><pre><code>~/Code/myapp (main) • auth-refactor
claude-sonnet-4-20250514
</code></pre><p>The minimal footer keeps the working directory, git branch, session name, and model. Everything else is gone.</p><h2>When minimal makes sense</h2><p><strong>Presentations and demos.</strong> If you're showing Elyra to someone, the token stats are distracting. They don't need to see your API costs scrolling by. Minimal footer keeps the focus on what the agent is doing.</p><p><strong>Small terminal windows.</strong> On a laptop screen with a split terminal, the full footer competes for space. Two clean lines instead of two dense ones makes a difference.</p><p><strong>Long coding sessions.</strong> After three hours, you know you're spending tokens. You don't need a constant reminder. If you want to check cost, <code>/cost</code> is always there.</p><p><strong>Personal preference.</strong> Some developers just prefer a cleaner interface. The information in the full footer is available through other commands (<code>/cost</code>, <code>/session</code>) whenever you need it. It doesn't have to be permanent.</p><h2>When full makes sense</h2><p><strong>Budget-conscious work.</strong> If you're tracking spend carefully, the live cost display is useful. Seeing <code>$0.80</code> and knowing your session budget is $1 matters.</p><p><strong>Context management.</strong> When you're in a long session editing many files, watching the context percentage climb from 60% to 75% to 85% tells you when to compact. Without it, you might hit the wall unexpectedly.</p><p><strong>Debugging token usage.</strong> If cache read numbers look low, that's a signal something is wrong with your prompt structure. The footer makes this visible without running a separate command.</p><h2>The setting persists</h2><p>Your choice sticks across sessions. Toggle once, and every future session starts with the same footer mode. No configuration file to edit. If you change your mind, <code>/footer</code> toggles it back.</p><p>The setting is stored globally (not per-project), so it follows you everywhere.</p><h2>It's not about hiding information</h2><p>Everything the full footer shows is still accessible. <code>/cost</code> gives you a detailed breakdown of tokens and cost. <code>/session</code> shows session stats. The model name is always visible even in minimal mode.</p><p><code>/footer</code> is about choosing what deserves permanent screen real estate versus what you check on demand. For some developers, token stats are background noise. For others, they're critical context. Now you pick.</p>