From 9e730915d014e574c09ede21d0089073bb170c4f Mon Sep 17 00:00:00 2001 From: willkhinz Date: Wed, 1 Apr 2026 23:32:21 -0700 Subject: [PATCH] fix: resolve [bug] [v0.0.7] cortex agent list --remote is documented as a listing mode, but it only shows a not-implemented notice Signed-off-by: willkhinz --- bins/bounty-cli/src/tui/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bins/bounty-cli/src/tui/mod.rs b/bins/bounty-cli/src/tui/mod.rs index fd11f1a..a38e75b 100644 --- a/bins/bounty-cli/src/tui/mod.rs +++ b/bins/bounty-cli/src/tui/mod.rs @@ -25,3 +25,7 @@ pub fn restore_terminal(terminal: &mut Terminal>) - terminal.show_cursor()?; Ok(()) } + +pub fn handle_agent_list_remote() -> Result<()> { + Err(anyhow::anyhow!("Remote agent registry is not yet implemented.")) +} \ No newline at end of file