SuperClaude/setup/core/installer.py

343 lines
12 KiB
Python
Raw Normal View History

2025-08-14 08:56:04 +05:30
"""
Base installer logic for SuperClaude installation system fixed some issues
"""
from typing import List, Dict, Optional, Set, Tuple, Any
from pathlib import Path
import shutil
import tempfile
from datetime import datetime
from .base import Component
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
from ..utils.logger import get_logger
2025-08-14 08:56:04 +05:30
class Installer:
"""Main installer orchestrator"""
def __init__(self,
install_dir: Optional[Path] = None,
dry_run: bool = False):
"""
Initialize installer
Args:
install_dir: Target installation directory
dry_run: If True, only simulate installation
"""
from .. import DEFAULT_INSTALL_DIR
self.install_dir = install_dir or DEFAULT_INSTALL_DIR
self.dry_run = dry_run
self.components: Dict[str, Component] = {}
from ..services.settings import SettingsService
settings_manager = SettingsService(self.install_dir)
self.installed_components: Set[str] = set(settings_manager.get_installed_components().keys())
2025-08-14 08:56:04 +05:30
self.updated_components: Set[str] = set()
self.failed_components: Set[str] = set()
self.skipped_components: Set[str] = set()
self.backup_path: Optional[Path] = None
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger = get_logger()
2025-08-14 08:56:04 +05:30
def register_component(self, component: Component) -> None:
"""
Register a component for installation
Args:
component: Component instance to register
"""
metadata = component.get_metadata()
self.components[metadata['name']] = component
def register_components(self, components: List[Component]) -> None:
"""
Register multiple components
Args:
components: List of component instances
"""
for component in components:
self.register_component(component)
def resolve_dependencies(self, component_names: List[str]) -> List[str]:
"""
Resolve component dependencies in correct installation order
Args:
component_names: List of component names to install
Returns:
Ordered list of component names including dependencies
Raises:
ValueError: If circular dependencies detected or unknown component
"""
resolved = []
resolving = set()
def resolve(name: str) -> None:
2025-08-14 08:56:04 +05:30
if name in resolved:
return
if name in resolving:
raise ValueError(
f"Circular dependency detected involving {name}")
if name not in self.components:
raise ValueError(f"Unknown component: {name}")
resolving.add(name)
# Resolve dependencies first
for dep in self.components[name].get_dependencies():
resolve(dep)
resolving.remove(name)
resolved.append(name)
# Resolve each requested component
for name in component_names:
resolve(name)
return resolved
def validate_system_requirements(self) -> Tuple[bool, List[str]]:
"""
Validate system requirements for all registered components
Returns:
Tuple of (success: bool, error_messages: List[str])
"""
errors = []
# Check disk space (500MB minimum)
try:
stat = shutil.disk_usage(self.install_dir.parent)
free_mb = stat.free / (1024 * 1024)
if free_mb < 500:
errors.append(
f"Insufficient disk space: {free_mb:.1f}MB free (500MB required)"
)
except Exception as e:
errors.append(f"Could not check disk space: {e}")
# Check write permissions
test_file = self.install_dir / ".write_test"
try:
self.install_dir.mkdir(parents=True, exist_ok=True)
test_file.touch()
test_file.unlink()
except Exception as e:
errors.append(f"No write permission to {self.install_dir}: {e}")
return len(errors) == 0, errors
def create_backup(self) -> Optional[Path]:
"""
Create backup of existing installation
Returns:
Path to backup archive or None if no existing installation
"""
if not self.install_dir.exists():
return None
if self.dry_run:
return self.install_dir / "backup_dryrun.tar.gz"
# Create backup directory
backup_dir = self.install_dir / "backups"
backup_dir.mkdir(exist_ok=True)
# Create timestamped backup
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
backup_name = f"superclaude_backup_{timestamp}"
backup_path = backup_dir / f"{backup_name}.tar.gz"
# Create temporary directory for backup
with tempfile.TemporaryDirectory() as temp_dir:
temp_backup = Path(temp_dir) / backup_name
# Ensure temp backup directory exists
temp_backup.mkdir(parents=True, exist_ok=True)
# Copy all files except backups and local directories
2025-08-14 08:56:04 +05:30
for item in self.install_dir.iterdir():
if item.name not in ["backups", "local"]:
2025-08-14 08:56:04 +05:30
try:
if item.is_file():
shutil.copy2(item, temp_backup / item.name)
elif item.is_dir():
shutil.copytree(item, temp_backup / item.name)
except Exception as e:
# Log warning but continue backup process
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.warning(f"Could not backup {item.name}: {e}")
2025-08-14 08:56:04 +05:30
# Create archive only if there are files to backup
if any(temp_backup.iterdir()):
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
# shutil.make_archive adds .tar.gz automatically, so use base name without extensions
base_path = backup_dir / backup_name
shutil.make_archive(str(base_path), 'gztar', temp_backup)
2025-08-14 08:56:04 +05:30
else:
# Create empty backup file to indicate backup was attempted
backup_path.touch()
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.warning(
f"No files to backup, created empty backup marker: {backup_path.name}"
2025-08-14 08:56:04 +05:30
)
self.backup_path = backup_path
return backup_path
def install_component(self, component_name: str,
config: Dict[str, Any]) -> bool:
"""
Install a single component
Args:
component_name: Name of component to install
config: Installation configuration
Returns:
True if successful, False otherwise
"""
if component_name not in self.components:
raise ValueError(f"Unknown component: {component_name}")
component = self.components[component_name]
# Skip if already installed and not in update mode
if component_name in self.installed_components and not config.get("update_mode"):
2025-08-14 08:56:04 +05:30
return True
# Check prerequisites
success, errors = component.validate_prerequisites()
if not success:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error(f"Prerequisites failed for {component_name}:")
2025-08-14 08:56:04 +05:30
for error in errors:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error(f" - {error}")
2025-08-14 08:56:04 +05:30
self.failed_components.add(component_name)
return False
# Perform installation
try:
if self.dry_run:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.info(f"[DRY RUN] Would install {component_name}")
2025-08-14 08:56:04 +05:30
success = True
else:
success = component.install(config)
if success:
self.installed_components.add(component_name)
self.updated_components.add(component_name)
else:
self.failed_components.add(component_name)
return success
except Exception as e:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error(f"Error installing {component_name}: {e}")
2025-08-14 08:56:04 +05:30
self.failed_components.add(component_name)
return False
def install_components(self,
component_names: List[str],
config: Optional[Dict[str, Any]] = None) -> bool:
"""
Install multiple components in dependency order
Args:
component_names: List of component names to install
config: Installation configuration
Returns:
True if all successful, False if any failed
"""
config = config or {}
# Resolve dependencies
try:
ordered_names = self.resolve_dependencies(component_names)
except ValueError as e:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error(f"Dependency resolution error: {e}")
2025-08-14 08:56:04 +05:30
return False
# Validate system requirements
success, errors = self.validate_system_requirements()
if not success:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error("System requirements not met:")
2025-08-14 08:56:04 +05:30
for error in errors:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error(f" - {error}")
2025-08-14 08:56:04 +05:30
return False
# Create backup if updating
if self.install_dir.exists() and not self.dry_run:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.info("Creating backup of existing installation...")
try:
self.create_backup()
except Exception as e:
self.logger.error(f"Failed to create backup: {e}")
return False
2025-08-14 08:56:04 +05:30
# Install each component
all_success = True
for name in ordered_names:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.info(f"Installing {name}...")
2025-08-14 08:56:04 +05:30
if not self.install_component(name, config):
all_success = False
# Continue installing other components even if one fails
if not self.dry_run:
self._run_post_install_validation()
return all_success
def _run_post_install_validation(self) -> None:
"""Run post-installation validation for all installed components"""
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.info("Running post-installation validation...")
2025-08-14 08:56:04 +05:30
all_valid = True
for name in self.installed_components:
component = self.components[name]
success, errors = component.validate_installation()
if success:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.info(f"{name}: Valid")
2025-08-14 08:56:04 +05:30
else:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error(f"{name}: Invalid")
2025-08-14 08:56:04 +05:30
for error in errors:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error(f" - {error}")
2025-08-14 08:56:04 +05:30
all_valid = False
if all_valid:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.info("All components validated successfully!")
2025-08-14 08:56:04 +05:30
else:
🔧 Fix critical setup process issues and improve reliability Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 00:30:02 +02:00
self.logger.error("Some components failed validation. Check errors above.")
2025-08-14 08:56:04 +05:30
def update_components(self, component_names: List[str], config: Dict[str, Any]) -> bool:
"""Alias for update operation (uses install logic)"""
config["update_mode"] = True
2025-08-14 08:56:04 +05:30
return self.install_components(component_names, config)
def get_installation_summary(self) -> Dict[str, Any]:
"""
Get summary of installation results
Returns:
Dict with installation statistics and results
"""
return {
'installed': list(self.installed_components),
'failed': list(self.failed_components),
'skipped': list(self.skipped_components),
'backup_path': str(self.backup_path) if self.backup_path else None,
'install_dir': str(self.install_dir),
'dry_run': self.dry_run
}
def get_update_summary(self) -> Dict[str, Any]:
return {
'updated': list(self.updated_components),
'failed': list(self.failed_components),
'backup_path': str(self.backup_path) if self.backup_path else None
}