Added the Setup implimentation

This commit is contained in:
mithun50
2025-08-14 08:56:04 +05:30
parent 6cfd975d00
commit 41b5924934
107 changed files with 9771 additions and 504 deletions

12
profiles/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
#!/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
"""

17
profiles/developer.json Normal file
View File

@@ -0,0 +1,17 @@
{
"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
}

15
profiles/minimal.json Normal file
View File

@@ -0,0 +1,15 @@
{
"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
}

16
profiles/quick.json Normal file
View File

@@ -0,0 +1,16 @@
{
"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
}