@@ -2014,15 +2014,15 @@ async def on_overflow():
20142014 async def _set_bot_commands (self ):
20152015 """Set bot commands menu"""
20162016 commands = [
2017- BotCommand ("new" , "Start a new Claude Code session" ),
2018- BotCommand ("stop" , "Interrupt execution immediately " ),
2019- BotCommand ("model" , "Switch Claude Code model" ),
2020- BotCommand ("resume" , "Resume a previous session" ),
2021- BotCommand ("history" , "View recent conversation history" ),
2022- BotCommand ("revert" , "Revert to a previous conversation state " ),
2023- BotCommand ("skills" , "View available skills" ),
2024- BotCommand ("skill" , "Execute a Claude Code skill" ),
2025- BotCommand ("command" , "Execute a Claude Code command" ),
2017+ BotCommand ("new" , "New session" ),
2018+ BotCommand ("stop" , "Stop execution" ),
2019+ BotCommand ("model" , "Switch model" ),
2020+ BotCommand ("resume" , "Resume session" ),
2021+ BotCommand ("history" , "View message history" ),
2022+ BotCommand ("revert" , "Revert conversation" ),
2023+ BotCommand ("skills" , "List skills" ),
2024+ BotCommand ("skill" , "Run skill" ),
2025+ BotCommand ("command" , "Run command" ),
20262026 ]
20272027 for scope in (
20282028 BotCommandScopeAllPrivateChats (),
0 commit comments