openclaw - 💡(How to fix) Fix Add TUI footer display configuration options [1 participants]

Official PRs (…)
ON THIS PAGE

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openclaw/openclaw#59909Fetched 2026-04-08 02:38:56
View on GitHub
Comments
0
Participants
1
Timeline
0
Reactions
0
Author
Participants

Code Example

# Example env var
OPENCLAW_TUI_FOOTER=session|agent|model|tokens|compact|off

# Or CLI option
openclaw tui --footer compact
RAW_BUFFERClick to expand / collapse

Problem

The TUI footer currently always shows the full session name, which can be long (e.g., agent:main:tui-e868c846-aedf-4d02-a1e4-ec73044d0141). There's no way to hide or customize which elements are displayed.

According to docs: "The current agent + session are always visible in the footer."

Proposed Solution

Add environment variable or CLI option to control footer display:

# Example env var
OPENCLAW_TUI_FOOTER=session|agent|model|tokens|compact|off

# Or CLI option
openclaw tui --footer compact

Modes:

  • compact: Show only essential info (connection state + model + tokens)
  • session: Show session name (current behavior)
  • agent: Show agent only
  • model: Show model only
  • tokens: Show token counts only
  • off: Hide footer entirely

Use Case

Users who prefer minimal UI or have long session keys want cleaner terminal output without the verbose footer.

Alternatives

  • Shorten session names in global scope
  • Add /footer slash command in TUI to toggle display modes

Additional Context

Similar to claude-hud in Claude Code, users may want to see only context/token info without session identifiers.

extent analysis

TL;DR

Implementing an environment variable or CLI option to control the TUI footer display can help users customize the information shown.

Guidance

  • Consider adding an OPENCLAW_TUI_FOOTER environment variable with modes like compact, session, agent, model, tokens, or off to control the footer display.
  • Introduce a --footer CLI option for the openclaw tui command to allow users to specify the desired footer mode.
  • Evaluate the proposed modes and their implications on the user experience to ensure they meet the requirements.
  • Assess the feasibility of alternative solutions, such as shortening session names or adding a /footer slash command, and compare their benefits and drawbacks.

Example

OPENCLAW_TUI_FOOTER=compact
openclaw tui --footer compact

Notes

The proposed solution requires changes to the TUI implementation, and the best approach may depend on the specific requirements and constraints of the project. It is essential to consider the trade-offs between different solutions and evaluate their impact on the user experience.

Recommendation

Apply workaround by implementing the proposed environment variable or CLI option, as it provides a flexible and user-friendly way to control the footer display.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

openclaw - 💡(How to fix) Fix Add TUI footer display configuration options [1 participants]