mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
PM Agent optimization (already committed separately): - superclaude/commands/pm.md: 1652→14 lines - superclaude/agents/pm-agent.md: 735→429 lines - docs/agents/pm-agent-guide.md: new guide file Other pending changes: - setup: framework_docs, mcp, logger, remove ui.py - superclaude: __main__, cli/app, cli/commands/install - tests: test_ui updates - scripts: workflow metrics analysis tools - docs/memory: session state updates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
276 lines
11 KiB
Python
276 lines
11 KiB
Python
"""
|
|
Framework documentation component for SuperClaude
|
|
Manages core framework documentation files (CLAUDE.md, FLAGS.md, PRINCIPLES.md, etc.)
|
|
"""
|
|
|
|
from typing import Dict, List, Tuple, Optional, Any
|
|
from pathlib import Path
|
|
import shutil
|
|
|
|
from ..core.base import Component
|
|
from ..services.claude_md import CLAUDEMdService
|
|
from setup import __version__
|
|
|
|
|
|
class FrameworkDocsComponent(Component):
|
|
"""SuperClaude framework documentation files component"""
|
|
|
|
def __init__(self, install_dir: Optional[Path] = None):
|
|
"""Initialize framework docs component"""
|
|
super().__init__(install_dir)
|
|
|
|
def get_metadata(self) -> Dict[str, str]:
|
|
"""Get component metadata"""
|
|
return {
|
|
"name": "framework_docs",
|
|
"version": __version__,
|
|
"description": "SuperClaude framework documentation (CLAUDE.md, FLAGS.md, PRINCIPLES.md, RULES.md, etc.)",
|
|
"category": "documentation",
|
|
}
|
|
|
|
def get_metadata_modifications(self) -> Dict[str, Any]:
|
|
"""Get metadata modifications for SuperClaude"""
|
|
return {
|
|
"framework": {
|
|
"version": __version__,
|
|
"name": "superclaude",
|
|
"description": "AI-enhanced development framework for Claude Code",
|
|
"installation_type": "global",
|
|
"components": ["framework_docs"],
|
|
},
|
|
"superclaude": {
|
|
"enabled": True,
|
|
"version": __version__,
|
|
"profile": "default",
|
|
"auto_update": False,
|
|
},
|
|
}
|
|
|
|
def _install(self, config: Dict[str, Any]) -> bool:
|
|
"""Install framework docs component"""
|
|
self.logger.info("Installing SuperClaude framework documentation...")
|
|
|
|
return super()._install(config)
|
|
|
|
def _post_install(self) -> bool:
|
|
# Create or update metadata
|
|
try:
|
|
metadata_mods = self.get_metadata_modifications()
|
|
self.settings_manager.update_metadata(metadata_mods)
|
|
self.logger.info("Updated metadata with framework configuration")
|
|
|
|
# Add component registration to metadata
|
|
self.settings_manager.add_component_registration(
|
|
"framework_docs",
|
|
{
|
|
"version": __version__,
|
|
"category": "documentation",
|
|
"files_count": len(self.component_files),
|
|
},
|
|
)
|
|
|
|
self.logger.info("Updated metadata with framework docs component registration")
|
|
|
|
# Migrate any existing SuperClaude data from settings.json
|
|
if self.settings_manager.migrate_superclaude_data():
|
|
self.logger.info(
|
|
"Migrated existing SuperClaude data from settings.json"
|
|
)
|
|
except Exception as e:
|
|
self.logger.error(f"Failed to update metadata: {e}")
|
|
return False
|
|
|
|
# Create additional directories for other components
|
|
additional_dirs = ["commands", "backups", "logs"]
|
|
for dirname in additional_dirs:
|
|
dir_path = self.install_dir / dirname
|
|
if not self.file_manager.ensure_directory(dir_path):
|
|
self.logger.warning(f"Could not create directory: {dir_path}")
|
|
|
|
# Update CLAUDE.md with framework documentation imports
|
|
try:
|
|
manager = CLAUDEMdService(self.install_dir)
|
|
manager.add_imports(self.component_files, category="Framework Documentation")
|
|
self.logger.info("Updated CLAUDE.md with framework documentation imports")
|
|
except Exception as e:
|
|
self.logger.warning(
|
|
f"Failed to update CLAUDE.md with framework documentation imports: {e}"
|
|
)
|
|
# Don't fail the whole installation for this
|
|
|
|
return True
|
|
|
|
def uninstall(self) -> bool:
|
|
"""Uninstall framework docs component"""
|
|
try:
|
|
self.logger.info("Uninstalling SuperClaude framework docs component...")
|
|
|
|
# Remove framework files
|
|
removed_count = 0
|
|
for filename in self.component_files:
|
|
file_path = self.install_dir / filename
|
|
if self.file_manager.remove_file(file_path):
|
|
removed_count += 1
|
|
self.logger.debug(f"Removed {filename}")
|
|
else:
|
|
self.logger.warning(f"Could not remove {filename}")
|
|
|
|
# Update metadata to remove framework docs component
|
|
try:
|
|
if self.settings_manager.is_component_installed("framework_docs"):
|
|
self.settings_manager.remove_component_registration("framework_docs")
|
|
metadata_mods = self.get_metadata_modifications()
|
|
metadata = self.settings_manager.load_metadata()
|
|
for key in metadata_mods.keys():
|
|
if key in metadata:
|
|
del metadata[key]
|
|
|
|
self.settings_manager.save_metadata(metadata)
|
|
self.logger.info("Removed framework docs component from metadata")
|
|
except Exception as e:
|
|
self.logger.warning(f"Could not update metadata: {e}")
|
|
|
|
self.logger.success(
|
|
f"Framework docs component uninstalled ({removed_count} files removed)"
|
|
)
|
|
return True
|
|
|
|
except Exception as e:
|
|
self.logger.exception(f"Unexpected error during framework docs uninstallation: {e}")
|
|
return False
|
|
|
|
def get_dependencies(self) -> List[str]:
|
|
"""Get component dependencies (framework docs has none)"""
|
|
return []
|
|
|
|
def update(self, config: Dict[str, Any]) -> bool:
|
|
"""Update framework docs component"""
|
|
try:
|
|
self.logger.info("Updating SuperClaude framework docs component...")
|
|
|
|
# Check current version
|
|
current_version = self.settings_manager.get_component_version("framework_docs")
|
|
target_version = self.get_metadata()["version"]
|
|
|
|
if current_version == target_version:
|
|
self.logger.info(f"Framework docs component already at version {target_version}")
|
|
return True
|
|
|
|
self.logger.info(
|
|
f"Updating framework docs component from {current_version} to {target_version}"
|
|
)
|
|
|
|
# Create backup of existing files
|
|
backup_files = []
|
|
for filename in self.component_files:
|
|
file_path = self.install_dir / filename
|
|
if file_path.exists():
|
|
backup_path = self.file_manager.backup_file(file_path)
|
|
if backup_path:
|
|
backup_files.append(backup_path)
|
|
self.logger.debug(f"Backed up {filename}")
|
|
|
|
# Perform installation (overwrites existing files)
|
|
success = self.install(config)
|
|
|
|
if success:
|
|
# Remove backup files on successful update
|
|
for backup_path in backup_files:
|
|
try:
|
|
backup_path.unlink()
|
|
except Exception:
|
|
pass # Ignore cleanup errors
|
|
|
|
self.logger.success(
|
|
f"Framework docs component updated to version {target_version}"
|
|
)
|
|
else:
|
|
# Restore from backup on failure
|
|
self.logger.warning("Update failed, restoring from backup...")
|
|
for backup_path in backup_files:
|
|
try:
|
|
original_path = backup_path.with_suffix("")
|
|
shutil.move(str(backup_path), str(original_path))
|
|
self.logger.debug(f"Restored {original_path.name}")
|
|
except Exception as e:
|
|
self.logger.error(f"Could not restore {backup_path}: {e}")
|
|
|
|
return success
|
|
|
|
except Exception as e:
|
|
self.logger.exception(f"Unexpected error during framework docs update: {e}")
|
|
return False
|
|
|
|
def validate_installation(self) -> Tuple[bool, List[str]]:
|
|
"""Validate framework docs component installation"""
|
|
errors = []
|
|
|
|
# Check if all framework files exist
|
|
for filename in self.component_files:
|
|
file_path = self.install_dir / filename
|
|
if not file_path.exists():
|
|
errors.append(f"Missing framework file: {filename}")
|
|
elif not file_path.is_file():
|
|
errors.append(f"Framework file is not a regular file: {filename}")
|
|
|
|
# Check metadata registration
|
|
if not self.settings_manager.is_component_installed("framework_docs"):
|
|
errors.append("Framework docs component not registered in metadata")
|
|
else:
|
|
# Check version matches
|
|
installed_version = self.settings_manager.get_component_version("framework_docs")
|
|
expected_version = self.get_metadata()["version"]
|
|
if installed_version != expected_version:
|
|
errors.append(
|
|
f"Version mismatch: installed {installed_version}, expected {expected_version}"
|
|
)
|
|
|
|
# Check metadata structure
|
|
try:
|
|
framework_config = self.settings_manager.get_metadata_setting("framework")
|
|
if not framework_config:
|
|
errors.append("Missing framework configuration in metadata")
|
|
else:
|
|
required_keys = ["version", "name", "description"]
|
|
for key in required_keys:
|
|
if key not in framework_config:
|
|
errors.append(f"Missing framework.{key} in metadata")
|
|
except Exception as e:
|
|
errors.append(f"Could not validate metadata: {e}")
|
|
|
|
return len(errors) == 0, errors
|
|
|
|
def _get_source_dir(self):
|
|
"""Get source directory for framework documentation files"""
|
|
# Assume we're in superclaude/setup/components/framework_docs.py
|
|
# and framework files are in superclaude/superclaude/core/
|
|
project_root = Path(__file__).parent.parent.parent
|
|
return project_root / "superclaude" / "core"
|
|
|
|
def get_size_estimate(self) -> int:
|
|
"""Get estimated installation size"""
|
|
total_size = 0
|
|
source_dir = self._get_source_dir()
|
|
|
|
for filename in self.component_files:
|
|
file_path = source_dir / filename
|
|
if file_path.exists():
|
|
total_size += file_path.stat().st_size
|
|
|
|
# Add overhead for settings.json and directories
|
|
total_size += 10240 # ~10KB overhead
|
|
|
|
return total_size
|
|
|
|
def get_installation_summary(self) -> Dict[str, Any]:
|
|
"""Get installation summary"""
|
|
return {
|
|
"component": self.get_metadata()["name"],
|
|
"version": self.get_metadata()["version"],
|
|
"files_installed": len(self.component_files),
|
|
"framework_files": self.component_files,
|
|
"estimated_size": self.get_size_estimate(),
|
|
"install_directory": str(self.install_dir),
|
|
"dependencies": self.get_dependencies(),
|
|
}
|