You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there are no custom agents, the panel body itself says:
No custom agents found (Press 'n' to create one)
The /agents builder defines panel-specific hints including n new agent and Esc close, but the rendered footer does not use them. As a result, the panel hides its primary creation shortcut and labels Esc as cancel even though this view behaves like a browser/manager screen.
Error Message
Debug Logs
System Information
OS: macOS 26.3.1
Screenshots
Screen.Recording.2026-03-30.at.05.24.58.mov
Steps to Reproduce
From the Cortex repo root, create a clean temporary home:
So the footer omits the n shortcut for Create New Agent and shows Esc cancel instead of the panel-specific Esc close.
Additional Context
Relevant code paths:
src/cortex-tui/src/interactive/builders/agents.rs builds the Agents interactive state and sets custom hints including ("n", "new agent") and ("Esc", "close").
src/cortex-tui/src/interactive/renderer.rs currently renders a generic hint row in render_hints() (↑↓ navigate, Enter select, optional Type search, Esc cancel) and does not consume per-panel custom hints.
Project
cortex
Description
On the native Cortex TUI
/agentspanel, the footer renders the generic interactive hint row:This is misleading for this screen.
When there are no custom agents, the panel body itself says:
The
/agentsbuilder defines panel-specific hints includingn new agentandEsc close, but the rendered footer does not use them. As a result, the panel hides its primary creation shortcut and labelsEscascanceleven though this view behaves like a browser/manager screen.Error Message
Debug Logs
System Information
Screenshots
Screen.Recording.2026-03-30.at.05.24.58.mov
Steps to Reproduce
export CORTEX_API_KEY=dummyPress 'n' to create one).Expected Behavior
The
/agentsfooter should reflect actions that are actually available on this panel:n new agent.Esc close(or equivalent dismiss wording) for this manager view.Actual Behavior
The
/agentspanel footer stays generic:So the footer omits the
nshortcut forCreate New Agentand showsEsc cancelinstead of the panel-specificEsc close.Additional Context
Relevant code paths:
src/cortex-tui/src/interactive/builders/agents.rsbuilds theAgentsinteractive state and sets custom hints including("n", "new agent")and("Esc", "close").src/cortex-tui/src/interactive/renderer.rscurrently renders a generic hint row inrender_hints()(↑↓ navigate,Enter select, optionalType search,Esc cancel) and does not consume per-panel custom hints.