Files
SuperClaude/superclaude/__main__.py

14 lines
279 B
Python
Raw Normal View History

2025-08-14 08:56:04 +05:30
#!/usr/bin/env python3
"""
SuperClaude Framework Management Hub
Entry point when running as: python -m superclaude
2025-08-14 08:56:04 +05:30
This module delegates to the modern typer-based CLI.
2025-08-14 08:56:04 +05:30
"""
import sys
from superclaude.cli.app import cli_main
2025-08-14 08:56:04 +05:30
if __name__ == "__main__":
sys.exit(cli_main())