mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
refactor: Complete V4 Beta framework restructuring
Major reorganization of SuperClaude V4 Beta directories: - Moved SuperClaude-Lite content to Framework-Hooks/ - Renamed SuperClaude/ directories to Framework/ for clarity - Created separate Framework-Lite/ for lightweight variant - Consolidated hooks system under Framework-Hooks/ This restructuring aligns with the V4 Beta architecture: - Framework/: Full framework with all features - Framework-Lite/: Lightweight variant - Framework-Hooks/: Hooks system implementation Part of SuperClaude V4 Beta development roadmap. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
49
Framework/Config/features.json
Normal file
49
Framework/Config/features.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"components": {
|
||||
"core": {
|
||||
"name": "core",
|
||||
"version": "3.0.0",
|
||||
"description": "SuperClaude framework documentation and core files",
|
||||
"category": "core",
|
||||
"dependencies": [],
|
||||
"enabled": true,
|
||||
"required_tools": []
|
||||
},
|
||||
"commands": {
|
||||
"name": "commands",
|
||||
"version": "3.0.0",
|
||||
"description": "SuperClaude slash command definitions",
|
||||
"category": "commands",
|
||||
"dependencies": ["core"],
|
||||
"enabled": true,
|
||||
"required_tools": []
|
||||
},
|
||||
"mcp": {
|
||||
"name": "mcp",
|
||||
"version": "3.0.0",
|
||||
"description": "MCP server integration (Context7, Sequential, Magic, Playwright, Morphllm, Serena)",
|
||||
"category": "integration",
|
||||
"dependencies": ["core"],
|
||||
"enabled": true,
|
||||
"required_tools": ["node", "claude_cli"]
|
||||
},
|
||||
"serena": {
|
||||
"name": "serena",
|
||||
"version": "3.0.0",
|
||||
"description": "Semantic code analysis and intelligent editing with project-aware context management",
|
||||
"category": "integration",
|
||||
"dependencies": ["core", "mcp"],
|
||||
"enabled": true,
|
||||
"required_tools": ["uvx", "python3", "claude_cli"]
|
||||
},
|
||||
"hooks": {
|
||||
"name": "hooks",
|
||||
"version": "2.0.0",
|
||||
"description": "Enhanced Task Management System - Hook Infrastructure",
|
||||
"category": "integration",
|
||||
"dependencies": ["core"],
|
||||
"enabled": true,
|
||||
"required_tools": ["python3"]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user