surfaces/adapter/max/handlers/help.py
Vladislav Yashnov eed1533cdc max first steps
2026-05-06 00:24:47 +03:00

26 lines
No EOL
630 B
Python

"""Help handler for MAX surface."""
HELP_TEXT = """
Available commands:
Chat management:
!new [name] — Create a new chat
!chats — List active chats
!rename <name> — Rename current chat
!archive — Archive current chat
!clear / !reset — Reset chat context
Attachments:
!list — Show attachment queue
!remove <n> — 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()