- 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
9 lines
161 B
Python
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"]
|