mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-18 02:06:36 +00:00
- Remove profiles/ directory with all profile JSON files - Update install.py to remove profile CLI options and simplify flow - Make interactive two-stage selection (MCP → Components) the default - Remove ConfigManager.load_profile() method - Update documentation to reflect simplified installation process - Add CLAUDEMdManager for intelligent CLAUDE.md import management - Components now install to root directory with organized @imports - Preserve user customizations while managing framework imports This simplifies the installation experience while providing users direct control over what gets installed through the intuitive two-stage selection process. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
363 B
Python
17 lines
363 B
Python
"""
|
|
SuperClaude Installation Suite
|
|
Pure Python installation system for SuperClaude framework
|
|
"""
|
|
|
|
__version__ = "3.0.0"
|
|
__author__ = "SuperClaude Team"
|
|
|
|
from pathlib import Path
|
|
|
|
# Core paths
|
|
SETUP_DIR = Path(__file__).parent
|
|
PROJECT_ROOT = SETUP_DIR.parent
|
|
CONFIG_DIR = PROJECT_ROOT / "config"
|
|
|
|
# Installation target
|
|
DEFAULT_INSTALL_DIR = Path.home() / ".claude" |