mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com> Co-authored-by: Prashant R <rprashanth681@gmail.com>
25 lines
646 B
Python
25 lines
646 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
SuperClaude Framework Management Hub
|
|
Unified entry point for all SuperClaude operations
|
|
|
|
Usage:
|
|
SuperClaude install [options]
|
|
SuperClaude update [options]
|
|
SuperClaude uninstall [options]
|
|
SuperClaude backup [options]
|
|
SuperClaude --help
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
# Read version from VERSION file
|
|
try:
|
|
__version__ = (Path(__file__).parent.parent / "VERSION").read_text().strip()
|
|
except Exception:
|
|
__version__ = "4.1.1" # Fallback
|
|
__author__ = "NomenAK, Mithun Gowda B"
|
|
__email__ = "anton.knoery@gmail.com, mithungowda.b7411@gmail.com"
|
|
__github__ = "NomenAK, mithun50"
|
|
__license__ = "MIT"
|