mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
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:
@@ -1,12 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
SuperClaude Framework Management Hub
|
||||
Unified entry point for all SuperClaude operations
|
||||
|
||||
Usage:
|
||||
SuperClaude install [options]
|
||||
SuperClaude update [options]
|
||||
SuperClaude uninstall [options]
|
||||
SuperClaude backup [options]
|
||||
SuperClaude --help
|
||||
"""
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"name": "Developer Installation",
|
||||
"description": "Full installation with all components including MCP servers",
|
||||
"components": [
|
||||
"core",
|
||||
"commands",
|
||||
"mcp"
|
||||
],
|
||||
"features": {
|
||||
"auto_update": false,
|
||||
"backup_enabled": true,
|
||||
"validation_level": "comprehensive"
|
||||
},
|
||||
"target_users": ["developers", "power_users"],
|
||||
"estimated_time_minutes": 5,
|
||||
"disk_space_mb": 100
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"name": "Minimal Installation",
|
||||
"description": "Core framework files only",
|
||||
"components": [
|
||||
"core"
|
||||
],
|
||||
"features": {
|
||||
"auto_update": false,
|
||||
"backup_enabled": true,
|
||||
"validation_level": "basic"
|
||||
},
|
||||
"target_users": ["testing", "basic"],
|
||||
"estimated_time_minutes": 1,
|
||||
"disk_space_mb": 20
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"name": "Quick Installation",
|
||||
"description": "Recommended installation with core framework and essential components",
|
||||
"components": [
|
||||
"core",
|
||||
"commands"
|
||||
],
|
||||
"features": {
|
||||
"auto_update": false,
|
||||
"backup_enabled": true,
|
||||
"validation_level": "standard"
|
||||
},
|
||||
"target_users": ["general", "developers"],
|
||||
"estimated_time_minutes": 2,
|
||||
"disk_space_mb": 50
|
||||
}
|
||||
Reference in New Issue
Block a user