Files
myagents/myclaude/commands/__init__.py
T
Zhengshou Lai afc81dcd84 feat(cli): add upgrade alias and register mail command
- Add upgrade as an alias for update
- Register mail_cmd in CLI entrypoint
2026-04-17 00:02:46 +08:00

11 lines
239 B
Python

"""CLI subcommands."""
from .chat import chat_cmd
from .mail import mail_cmd
from .update import update_cmd
# alias: upgrade is the same as update
upgrade_cmd = update_cmd
__all__ = ["chat_cmd", "mail_cmd", "update_cmd", "upgrade_cmd"]