NomenAK 3e40322d0a 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>
2025-08-05 15:21:02 +02:00

49 lines
1.4 KiB
JSON

{
"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"]
}
}
}