@@ -16,7 +16,7 @@ class SlashCommand:
1616
1717 command : str
1818 description : str
19- aliases : List [str ] = None
19+ aliases : Optional [ List [str ] ] = None
2020
2121 def matches (self , query : str ) -> bool :
2222 """Check if command matches query."""
@@ -75,12 +75,16 @@ class CommandSuggestions(Vertical):
7575 SlashCommand ("/auth" , "Authenticate with Claude personal account" ),
7676 SlashCommand ("/auto" , "Execute prompt autonomously with tools" ),
7777 SlashCommand ("/backend" , "Switch AI backend (claude/openai/embedded)" ),
78- SlashCommand ("/bug" , "Submit feedback about Hanzo REPL" ),
78+ SlashCommand ("/branch" , "List or create git branches" ),
79+ SlashCommand ("/bug" , "Submit feedback about Hanzo Dev" ),
7980 SlashCommand ("/clear" , "Clear session history and start fresh" ),
8081 SlashCommand ("/code" , "Implement with consensus from multiple review passes" ),
82+ SlashCommand ("/commit" , "Commit staged changes" ),
83+ SlashCommand ("/commit-push-pr" , "Commit, push, and create PR" ),
8184 SlashCommand ("/compact" , "Compact session keeping a summary in context" ),
8285 SlashCommand ("/config" , "Show loaded configuration files" , ["theme" ]),
8386 SlashCommand ("/cost" , "Show total cost and duration of current session" ),
87+ SlashCommand ("/diff" , "Show working tree diff" ),
8488 SlashCommand ("/doctor" , "Check the health of your Hanzo installation" ),
8589 SlashCommand ("/exit" , "Exit the REPL" , ["quit" ]),
8690 SlashCommand ("/export" , "Export conversation to file" ),
@@ -104,12 +108,14 @@ class CommandSuggestions(Vertical):
104108 SlashCommand ("/resume" , "Load saved session from JSON file" ),
105109 SlashCommand ("/run" , "Run a shell command" ),
106110 SlashCommand ("/search" , "Search for content using MCP tools" ),
111+ SlashCommand ("/stash" , "Manage git stash (pop/list)" ),
107112 SlashCommand ("/session" , "List or switch saved sessions" ),
108113 SlashCommand ("/solve" , "Race multiple approaches, present best solution" ),
109114 SlashCommand ("/status" , "Model, session info, token usage" ),
110115 SlashCommand ("/tools" , "Show available MCP tools" ),
111116 SlashCommand ("/version" , "Show version info" ),
112117 SlashCommand ("/voice" , "Enable voice mode for bidirectional communication" ),
118+ SlashCommand ("/worktree" , "Manage git worktrees" ),
113119 ]
114120
115121 selected_index = reactive (0 )
0 commit comments