feat: Add slash command help system (#57) #62

Merged
shoko merged 18 commits from fix/issue-57 into main 2026-04-14 04:03:29 +02:00
Showing only changes of commit 38e45b9fd0 - Show all commits

View File

@@ -144,7 +144,7 @@ def format_tool_help(tool_name: str) -> str:
f"🔍 {tool['command']} - {details['description']} ({cat_label})\n\n" f"🔍 {tool['command']} - {details['description']} ({cat_label})\n\n"
) )
message += f"**Description:** {details['description']}\n" message += f"**Description:** {details['description']}\n"
message += f"**Usage:** `{details['usage']}`\n" message += f"**Commands:**\n {details['usage']}\n\n"
message += f"**Example:**\n```\n{details['example']}\n```" message += f"**Example:**\n```\n{details['example']}\n```"
return message return message