Files
myagents/myclaude/commands/__init__.py
T
Zhengshou Lai bebf7ba17a feat(cli): merge chat into default behavior, default cwd to workspace/
- Remove standalone chat subcommand; chat becomes default behavior
- Default --cwd resolves to workspace/ instead of repo root
- Split CLAUDE.md: repo/ for CLI dev, workspace/ for daily workflow
- Add workspace/CLAUDE.md, workspace/.gitignore for tmp files
- Ignore MCP temp artifacts (.mcp.json, .playwright-mcp/)
- Clean up removed mail subcommand files
2026-04-23 08:38:59 +08:00

9 lines
161 B
Python

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