"""
Command handlers for the MiniMax Code CLI.

This package contains all the command implementations for the Claude-style
code CLI, organized by functionality.
"""

from .router import CommandRouter
from .base import BaseCommand
from .analyze import AnalyzeCommands
from .generate import GenerateCommands
from .edit import EditCommands
from .chat import ChatCommands
from .project import ProjectCommands

__all__ = [
    'CommandRouter',
    'BaseCommand',
    'AnalyzeCommands',
    'GenerateCommands', 
    'EditCommands',
    'ChatCommands',
    'ProjectCommands'
]
