Skip to content

Commit 0d00635

Browse files
committed
refactor: simplify bot command descriptions for better UX
1 parent 892f44d commit 0d00635

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

core/bot.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)