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:
45
Framework-Hooks/patterns/minimal/python_project.yaml
Normal file
45
Framework-Hooks/patterns/minimal/python_project.yaml
Normal file
@@ -0,0 +1,45 @@
|
||||
# Minimal Python Project Pattern
|
||||
# Lightweight bootstrap pattern for Python projects
|
||||
|
||||
project_type: "python"
|
||||
detection_patterns:
|
||||
- "*.py files present"
|
||||
- "requirements.txt or pyproject.toml"
|
||||
- "__pycache__/ directories"
|
||||
|
||||
auto_flags:
|
||||
- "--serena" # Semantic analysis
|
||||
- "--context7" # Python documentation
|
||||
|
||||
mcp_servers:
|
||||
primary: "serena"
|
||||
secondary: ["context7", "sequential", "morphllm"]
|
||||
|
||||
patterns:
|
||||
file_structure:
|
||||
- "src/ or lib/"
|
||||
- "tests/"
|
||||
- "docs/"
|
||||
- "requirements.txt"
|
||||
|
||||
common_tasks:
|
||||
- "function refactoring"
|
||||
- "class extraction"
|
||||
- "import optimization"
|
||||
- "testing setup"
|
||||
|
||||
intelligence:
|
||||
mode_triggers:
|
||||
- "token_efficiency: context >75%"
|
||||
- "task_management: refactor|test|analyze"
|
||||
|
||||
validation_focus:
|
||||
- "python_syntax"
|
||||
- "pep8_compliance"
|
||||
- "type_hints"
|
||||
- "testing_coverage"
|
||||
|
||||
performance_targets:
|
||||
bootstrap_ms: 40
|
||||
context_size: "4KB"
|
||||
cache_duration: "45min"
|
||||
45
Framework-Hooks/patterns/minimal/react_project.yaml
Normal file
45
Framework-Hooks/patterns/minimal/react_project.yaml
Normal file
@@ -0,0 +1,45 @@
|
||||
# Minimal React Project Pattern
|
||||
# Lightweight bootstrap pattern for React projects
|
||||
|
||||
project_type: "react"
|
||||
detection_patterns:
|
||||
- "package.json with react dependency"
|
||||
- "src/ directory with .jsx/.tsx files"
|
||||
- "public/index.html"
|
||||
|
||||
auto_flags:
|
||||
- "--magic" # UI component generation
|
||||
- "--context7" # React documentation
|
||||
|
||||
mcp_servers:
|
||||
primary: "magic"
|
||||
secondary: ["context7", "morphllm"]
|
||||
|
||||
patterns:
|
||||
file_structure:
|
||||
- "src/components/"
|
||||
- "src/hooks/"
|
||||
- "src/pages/"
|
||||
- "src/utils/"
|
||||
|
||||
common_tasks:
|
||||
- "component creation"
|
||||
- "state management"
|
||||
- "routing setup"
|
||||
- "performance optimization"
|
||||
|
||||
intelligence:
|
||||
mode_triggers:
|
||||
- "token_efficiency: context >75%"
|
||||
- "task_management: build|implement|create"
|
||||
|
||||
validation_focus:
|
||||
- "jsx_syntax"
|
||||
- "react_patterns"
|
||||
- "accessibility"
|
||||
- "performance"
|
||||
|
||||
performance_targets:
|
||||
bootstrap_ms: 30
|
||||
context_size: "3KB"
|
||||
cache_duration: "60min"
|
||||
Reference in New Issue
Block a user