Coverage for src / moai_adk / cli / commands / __init__.py: 100.00%
5 statements
« prev ^ index » next coverage.py v7.12.0, created at 2025-11-20 20:52 +0900
« prev ^ index » next coverage.py v7.12.0, created at 2025-11-20 20:52 +0900
1"""CLI command module
3Core commands:
4- init: initialize the project
5- doctor: run system diagnostics
6- status: show project status
7- update: update templates to latest version
9Note: restore functionality is handled by checkpoint system in core.git.checkpoint
10"""
12from moai_adk.cli.commands.doctor import doctor
13from moai_adk.cli.commands.init import init
14from moai_adk.cli.commands.status import status
15from moai_adk.cli.commands.update import update
17__all__ = ["init", "doctor", "status", "update"]