"""Help handler for MAX surface.""" HELP_TEXT = """ Available commands: Chat management: !new [name] — Create a new chat !chats — List active chats !rename — Rename current chat !archive — Archive current chat !clear / !reset — Reset chat context Attachments: !list — Show attachment queue !remove — Remove attachment from queue !remove all — Clear attachment queue Actions: !yes — Confirm agent action !no — Cancel agent action !help — Show this help """ def get_help() -> str: return HELP_TEXT.strip()