max first steps

This commit is contained in:
Vladislav Yashnov 2026-05-06 00:24:47 +03:00
parent 3340c126d6
commit eed1533cdc
10 changed files with 589 additions and 0 deletions

View file

@ -0,0 +1,26 @@
"""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()