SuperClaude V4 Beta: Major framework restructuring

- Restructured core framework components
- Added new Agents, MCP servers, and Modes documentation
- Introduced SuperClaude-Lite minimal implementation
- Enhanced Commands with session management capabilities
- Added comprehensive Hooks system with Python integration
- Removed legacy setup and profile components
- Updated .gitignore to exclude Tests/, ClaudeDocs/, and .serena/
- Consolidated configuration into SuperClaude/Config/
- Added Templates for consistent component creation

This is the initial commit for the V4 Beta branch containing all recent framework improvements and architectural changes.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
NomenAK
2025-08-05 13:59:17 +02:00
parent ebeee4e6cb
commit 1d03832f2d
177 changed files with 35002 additions and 10971 deletions

View File

@@ -1,18 +0,0 @@
"""
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"
PROFILES_DIR = PROJECT_ROOT / "profiles"
# Installation target
DEFAULT_INSTALL_DIR = Path.home() / ".claude"