2626from datetime import datetime
2727from contextlib import contextmanager
2828from pathlib import Path
29- from typing import Any
3029
3130from dotenv import load_dotenv
3231
9089from rich .console import Console
9190from rich .table import Table
9291from rich .panel import Panel
93- from rich .prompt import Prompt
9492from rich import box
9593
96- from google .adk .events .event import Event
97- from google .adk .events .event_actions import EventActions
98- from google .genai import types as gen_types
9994
10095from .agent import FuzzForgeAgent
101- from .agent_card import get_fuzzforge_agent_card
10296from .config_manager import ConfigManager
10397from .config_bridge import ProjectConfigManager
104- from .remote_agent import RemoteAgentConnection
10598
10699console = Console ()
107100
@@ -243,7 +236,7 @@ def print_banner(self):
243236 )
244237 )
245238 if self .agent .executor .agentops_trace :
246- console .print (f "Tracking: [medium_purple1]AgentOps active[/medium_purple1]" )
239+ console .print ("Tracking: [medium_purple1]AgentOps active[/medium_purple1]" )
247240
248241 # Show skills
249242 console .print ("\n Skills:" )
@@ -320,7 +313,7 @@ async def cmd_register(self, args: str) -> None:
320313 url = args .strip (),
321314 description = description
322315 )
323- console .print (f " [dim]Saved to config for auto-registration[/dim]" )
316+ console .print (" [dim]Saved to config for auto-registration[/dim]" )
324317 else :
325318 console .print (f"[red]Failed: { result ['error' ]} [/red]" )
326319
@@ -346,9 +339,9 @@ async def cmd_unregister(self, args: str) -> None:
346339 # Remove from config
347340 if self .config_manager .remove_registered_agent (name = agent_to_remove ['name' ], url = agent_to_remove ['url' ]):
348341 console .print (f"✅ Unregistered: [bold]{ agent_to_remove ['name' ]} [/bold]" )
349- console .print (f " [dim]Removed from config (won't auto-register next time)[/dim]" )
342+ console .print (" [dim]Removed from config (won't auto-register next time)[/dim]" )
350343 else :
351- console .print (f "[yellow]Agent unregistered from session but not found in config[/yellow]" )
344+ console .print ("[yellow]Agent unregistered from session but not found in config[/yellow]" )
352345
353346 async def cmd_list (self , args : str = "" ) -> None :
354347 """List registered agents"""
@@ -699,7 +692,7 @@ async def cmd_artifacts(self, args: str = "") -> None:
699692 )
700693
701694 console .print (table )
702- console .print (f "\n [dim]Use /artifacts <id> to view artifact content[/dim]" )
695+ console .print ("\n [dim]Use /artifacts <id> to view artifact content[/dim]" )
703696
704697 async def cmd_tasks (self , args : str = "" ) -> None :
705698 """List tasks or show details for a specific task."""
0 commit comments