mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-18 10:16:49 +00:00
* fix(orchestration): add WebFetch auto-trigger for infrastructure configuration Problem: Infrastructure configuration changes (e.g., Traefik port settings) were being made based on assumptions without consulting official documentation, violating the 'Evidence > assumptions' principle in PRINCIPLES.md. Solution: - Added Infrastructure Configuration Validation section to MODE_Orchestration.md - Auto-triggers WebFetch for infrastructure tools (Traefik, nginx, Docker, etc.) - Enforces MODE_DeepResearch activation for investigation - BLOCKS assumption-based configuration changes Testing: Verified WebFetch successfully retrieves Traefik official docs (port 80 default) This prevents production outages from infrastructure misconfiguration by ensuring all technical recommendations are backed by official documentation. * feat: Add PM Agent (Project Manager Agent) for seamless orchestration Introduces PM Agent as the default orchestration layer that coordinates all sub-agents and manages workflows automatically. Key Features: - Default orchestration: All user interactions handled by PM Agent - Auto-delegation: Intelligent sub-agent selection based on task analysis - Docker Gateway integration: Zero-token baseline with dynamic MCP loading - Self-improvement loop: Automatic documentation of patterns and mistakes - Optional override: Users can specify sub-agents explicitly if desired Architecture: - Agent spec: SuperClaude/Agents/pm-agent.md - Command: SuperClaude/Commands/pm.md - Updated docs: README.md (15→16 agents), agents.md (new Orchestration category) User Experience: - Default: PM Agent handles everything (seamless, no manual routing) - Optional: Explicit --agent flag for direct sub-agent access - Both modes available simultaneously (no user downside) Implementation Status: - ✅ Specification complete - ✅ Documentation complete - ⏳ Prototype implementation needed - ⏳ Docker Gateway integration needed - ⏳ Testing and validation needed Refs: kazukinakai/docker-mcp-gateway (IRIS MCP Gateway integration) * feat: Add Agent Orchestration rules for PM Agent default activation Implements PM Agent as the default orchestration layer in RULES.md. Key Changes: - New 'Agent Orchestration' section (CRITICAL priority) - PM Agent receives ALL user requests by default - Manual override with @agent-[name] bypasses PM Agent - Agent Selection Priority clearly defined: 1. Manual override → Direct routing 2. Default → PM Agent → Auto-delegation 3. Delegation based on keywords, file types, complexity, context User Experience: - Default: PM Agent handles everything (seamless) - Override: @agent-[name] for direct specialist access - Transparent: PM Agent reports delegation decisions This establishes PM Agent as the orchestration layer while respecting existing auto-activation patterns and manual overrides. Next Steps: - Local testing in agiletec project - Iteration based on actual behavior - Documentation updates as needed * refactor(pm-agent): redesign as self-improvement meta-layer Problem Resolution: PM Agent's initial design competed with existing auto-activation for task routing, creating confusion about orchestration responsibilities and adding unnecessary complexity. Design Change: Redefined PM Agent as a meta-layer agent that operates AFTER specialist agents complete tasks, focusing on: - Post-implementation documentation and pattern recording - Immediate mistake analysis with prevention checklists - Monthly documentation maintenance and noise reduction - Pattern extraction and knowledge synthesis Two-Layer Orchestration System: 1. Task Execution Layer: Existing auto-activation handles task routing (unchanged) 2. Self-Improvement Layer: PM Agent meta-layer handles documentation (new) Files Modified: - SuperClaude/Agents/pm-agent.md: Complete rewrite with meta-layer design - Category: orchestration → meta - Triggers: All user interactions → Post-implementation, mistakes, monthly - Behavioral Mindset: Continuous learning system - Self-Improvement Workflow: BEFORE/DURING/AFTER/MISTAKE RECOVERY/MAINTENANCE - SuperClaude/Core/RULES.md: Agent Orchestration section updated - Split into Task Execution Layer + Self-Improvement Layer - Added orchestration flow diagram - Clarified PM Agent activates AFTER task completion - README.md: Updated PM Agent description - "orchestrates all interactions" → "ensures continuous learning" - Docs/User-Guide/agents.md: PM Agent section rewritten - Section: Orchestration Agent → Meta-Layer Agent - Expertise: Project orchestration → Self-improvement workflow executor - Examples: Task coordination → Post-implementation documentation - PR_DOCUMENTATION.md: Comprehensive PR documentation added - Summary, motivation, changes, testing, breaking changes - Two-layer orchestration system diagram - Verification checklist Integration Validated: Tested with agiletec project's self-improvement-workflow.md: ✅ PM Agent aligns with existing BEFORE/DURING/AFTER/MISTAKE RECOVERY phases ✅ Complements (not competes with) existing workflow ✅ agiletec workflow defines WHAT, PM Agent defines WHO executes it Breaking Changes: None - Existing auto-activation continues unchanged - Specialist agents unaffected - User workflows remain the same - New capability: Automatic documentation and knowledge maintenance Value Proposition: Transforms SuperClaude into a continuously learning system that accumulates knowledge, prevents recurring mistakes, and maintains fresh documentation without manual intervention. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * docs: add Claude Code conversation history management research Research covering .jsonl file structure, performance impact, and retention policies. Content: - Claude Code .jsonl file format and message types - Performance issues from GitHub (memory leaks, conversation compaction) - Retention policies (consumer vs enterprise) - Rotation recommendations based on actual data - File history snapshot tracking mechanics Source: Moved from agiletec project (research applicable to all Claude Code projects) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: add Development documentation structure Phase 1: Documentation Structure complete - Add Docs/Development/ directory for development documentation - Add ARCHITECTURE.md - System architecture with PM Agent meta-layer - Add ROADMAP.md - 5-phase development plan with checkboxes - Add TASKS.md - Daily task tracking with progress indicators - Add PROJECT_STATUS.md - Current status dashboard and metrics - Add pm-agent-integration.md - Implementation guide for PM Agent mode This establishes comprehensive documentation foundation for: - System architecture understanding - Development planning and tracking - Implementation guidance - Progress visibility Related: #pm-agent-mode #documentation #phase-1 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat: PM Agent session lifecycle and PDCA implementation Phase 2: PM Agent Mode Integration (Design Phase) Commands/pm.md updates: - Add "Always-Active Foundation Layer" concept - Add Session Lifecycle (Session Start/During Work/Session End) - Add PDCA Cycle (Plan/Do/Check/Act) automation - Add Serena MCP Memory Integration (list/read/write_memory) - Document auto-activation triggers Agents/pm-agent.md updates: - Add Session Start Protocol (MANDATORY auto-activation) - Add During Work PDCA Cycle with example workflows - Add Session End Protocol with state preservation - Add PDCA Self-Evaluation Pattern - Add Documentation Strategy (temp → patterns/mistakes) - Add Memory Operations Reference Key Features: - Session start auto-activation for context restoration - 30-minute checkpoint saves during work - Self-evaluation with think_about_* operations - Systematic documentation lifecycle - Knowledge evolution to CLAUDE.md Implementation Status: - ✅ Design complete (Commands/pm.md, Agents/pm-agent.md) - ⏳ Implementation pending (Core components) - ⏳ Serena MCP integration pending Salvaged from mistaken development in ~/.claude directory Related: #pm-agent-mode #session-lifecycle #pdca-cycle #phase-2 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: disable Serena MCP auto-browser launch Disable web dashboard and GUI log window auto-launch in Serena MCP server to prevent intrusive browser popups on startup. Users can still manually access the dashboard at http://localhost:24282/dashboard/ if needed. Changes: - Add CLI flags to Serena run command: - --enable-web-dashboard false - --enable-gui-log-window false - Ensures Git-tracked configuration (no reliance on ~/.serena/serena_config.yml) - Aligns with AIRIS MCP Gateway integration approach 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * refactor: rename directories to lowercase for PEP8 compliance - Rename superclaude/Agents -> superclaude/agents - Rename superclaude/Commands -> superclaude/commands - Rename superclaude/Core -> superclaude/core - Rename superclaude/Examples -> superclaude/examples - Rename superclaude/MCP -> superclaude/mcp - Rename superclaude/Modes -> superclaude/modes This change follows Python PEP8 naming conventions for package directories. * style: fix PEP8 violations and update package name to lowercase Changes: - Format all Python files with black (43 files reformatted) - Update package name from 'SuperClaude' to 'superclaude' in pyproject.toml - Fix import statements to use lowercase package name - Add missing imports (timedelta, __version__) - Remove old SuperClaude.egg-info directory PEP8 violations reduced from 2672 to 701 (mostly E501 line length due to black's 88 char vs flake8's 79 char limit). * docs: add PM Agent development documentation Add comprehensive PM Agent development documentation: - PM Agent ideal workflow (7-phase autonomous cycle) - Project structure understanding (Git vs installed environment) - Installation flow understanding (CommandsComponent behavior) - Task management system (current-tasks.md) Purpose: Eliminate repeated explanations and enable autonomous PDCA cycles 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat(pm-agent): add self-correcting execution and warning investigation culture ## Changes ### superclaude/commands/pm.md - Add "Self-Correcting Execution" section with root cause analysis protocol - Add "Warning/Error Investigation Culture" section enforcing zero-tolerance for dismissal - Define error detection protocol: STOP → Investigate → Hypothesis → Different Solution → Execute - Document anti-patterns (retry without understanding) and correct patterns (research-first) ### docs/Development/hypothesis-pm-autonomous-enhancement-2025-10-14.md - Add PDCA workflow hypothesis document for PM Agent autonomous enhancement ## Rationale PM Agent must never retry failed operations without understanding root causes. All warnings and errors require investigation via context7/WebFetch/documentation to ensure production-quality code and prevent technical debt accumulation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * feat(installer): add airis-mcp-gateway MCP server option ## Changes - Add airis-mcp-gateway to MCP server options in installer - Configuration: GitHub-based installation via uvx - Repository: https://github.com/oraios/airis-mcp-gateway - Purpose: Dynamic MCP Gateway for zero-token baseline and on-demand tool loading ## Implementation Added to setup/components/mcp.py self.mcp_servers dictionary with: - install_method: github - install_command: uvx test installation - run_command: uvx runtime execution - required: False (optional server) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: kazuki <kazuki@kazukinoMacBook-Air.local> Co-authored-by: Claude <noreply@anthropic.com>
353 lines
12 KiB
Python
353 lines
12 KiB
Python
"""
|
|
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
|
|
from ..utils.logger import get_logger
|
|
|
|
|
|
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()
|
|
)
|
|
self.updated_components: Set[str] = set()
|
|
|
|
self.failed_components: Set[str] = set()
|
|
self.skipped_components: Set[str] = set()
|
|
self.backup_path: Optional[Path] = None
|
|
self.logger = get_logger()
|
|
|
|
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:
|
|
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
|
|
for item in self.install_dir.iterdir():
|
|
if item.name not in ["backups", "local"]:
|
|
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
|
|
self.logger.warning(f"Could not backup {item.name}: {e}")
|
|
|
|
# Always create an archive, even if empty, to ensure it's a valid tarball
|
|
base_path = backup_dir / backup_name
|
|
shutil.make_archive(str(base_path), "gztar", temp_backup)
|
|
|
|
if not any(temp_backup.iterdir()):
|
|
self.logger.warning(
|
|
f"No files to backup, created empty backup archive: {backup_path.name}"
|
|
)
|
|
|
|
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, unless component is reinstallable
|
|
if (
|
|
not component.is_reinstallable()
|
|
and component_name in self.installed_components
|
|
and not config.get("update_mode")
|
|
):
|
|
self.skipped_components.add(component_name)
|
|
self.logger.info(f"Skipping already installed component: {component_name}")
|
|
return True
|
|
|
|
# Check prerequisites
|
|
success, errors = component.validate_prerequisites()
|
|
if not success:
|
|
self.logger.error(f"Prerequisites failed for {component_name}:")
|
|
for error in errors:
|
|
self.logger.error(f" - {error}")
|
|
self.failed_components.add(component_name)
|
|
return False
|
|
|
|
# Perform installation
|
|
try:
|
|
if self.dry_run:
|
|
self.logger.info(f"[DRY RUN] Would install {component_name}")
|
|
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:
|
|
self.logger.error(f"Error installing {component_name}: {e}")
|
|
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:
|
|
self.logger.error(f"Dependency resolution error: {e}")
|
|
return False
|
|
|
|
# Validate system requirements
|
|
success, errors = self.validate_system_requirements()
|
|
if not success:
|
|
self.logger.error("System requirements not met:")
|
|
for error in errors:
|
|
self.logger.error(f" - {error}")
|
|
return False
|
|
|
|
# Create backup if updating
|
|
if self.install_dir.exists() and not self.dry_run:
|
|
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
|
|
|
|
# Install each component
|
|
all_success = True
|
|
for name in ordered_names:
|
|
self.logger.info(f"Installing {name}...")
|
|
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"""
|
|
self.logger.info("Running post-installation validation...")
|
|
|
|
all_valid = True
|
|
for name in self.updated_components:
|
|
if name not in self.components:
|
|
self.logger.warning(
|
|
f"Cannot validate component '{name}' as it was not part of this installation session."
|
|
)
|
|
continue
|
|
|
|
component = self.components[name]
|
|
success, errors = component.validate_installation()
|
|
|
|
if success:
|
|
self.logger.info(f" + {name}: Valid")
|
|
else:
|
|
self.logger.error(f" x {name}: Invalid")
|
|
for error in errors:
|
|
self.logger.error(f" - {error}")
|
|
all_valid = False
|
|
|
|
if all_valid:
|
|
self.logger.info("All components validated successfully!")
|
|
else:
|
|
self.logger.error("Some components failed validation. Check errors above.")
|
|
|
|
def update_components(
|
|
self, component_names: List[str], config: Dict[str, Any]
|
|
) -> bool:
|
|
"""Alias for update operation (uses install logic)"""
|
|
config["update_mode"] = True
|
|
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,
|
|
}
|