@@ -202,6 +202,9 @@ def display_help():
202202 commands_table .add_row ("/quit" , "Exit the application" )
203203 commands_table .add_row ("/exit" , "Exit the application" )
204204 commands_table .add_row ("/new" , "Start a new conversation" )
205+ commands_table .add_row ("/history" , "Browse and resume past sessions" )
206+ commands_table .add_row ("/history clear" , "Delete all session history" )
207+ commands_table .add_row ("/history delete" , "Delete a specific session" )
205208 commands_table .add_row ("/switch" , "Switch between AI providers" )
206209 commands_table .add_row ("/update" , "Update to the latest version" )
207210 commands_table .add_row ("/about" , "Show information about Shello CLI" )
@@ -277,6 +280,7 @@ def print_welcome_banner(user_info, version):
277280 console .print (" [bold bright_blue]/about[/bold bright_blue] [bright_black]─[/bright_black] [white]Show information about Shello CLI[/white]" )
278281 console .print (" [bold bright_blue]/quit[/bold bright_blue] [bright_black]─[/bright_black] [white]Exit the application[/white]" )
279282 console .print (" [bold bright_blue]/new[/bold bright_blue] [bright_black]─[/bright_black] [white]Start a new conversation[/white]" )
283+ console .print (" [bold bright_blue]/history[/bold bright_blue] [bright_black]─[/bright_black] [white]Browse and resume past sessions[/white]" )
280284 console .print (" [bold bright_blue]/switch[/bold bright_blue] [bright_black]─[/bright_black] [white]Switch between AI providers[/white]" )
281285 console .print (" [bold bright_blue]/help[/bold bright_blue] [bright_black]─[/bright_black] [white]Show keyboard shortcuts and help[/white]" )
282286 console .print (" [bold bright_blue]↑/↓[/bold bright_blue] [bright_black]─[/bright_black] [white]Navigate command history[/white]" )
0 commit comments