docs: add uv support for development installation (#427)

- Add uv installation step in development installation guide
- Update quick installation table to show uv command
- Add 'Fast installation (uv)' to advantages list
- Recommend uv as modern Python package manager for developers

Benefits:
- 10-100x faster than pip
- Better dependency resolution
- Aligns with 2025 Python best practices

Refs: Research at claudedocs/research_python_directory_naming_automation_2025.md

Co-authored-by: kazuki <kazuki@kazukinoMacBook-Air.local>
This commit is contained in:
kazuki nakai
2025-10-14 22:46:16 +09:00
committed by GitHub
parent d4a17fc341
commit 4f55fcfb50

View File

@@ -33,7 +33,7 @@
| **🐍 pipx** | `pipx install SuperClaude && SuperClaude install` | Linux/macOS | **✅ Recommended** - Isolated environment |
| **📦 pip** | `pip install SuperClaude && SuperClaude install` | All | Traditional Python setups |
| **🌐 npm** | `npm install -g @bifrost_inc/superclaude && superclaude install` | All | Node.js developers |
| **🔧 Dev** | `git clone ... && pip install -e ".[dev]"` | All | Contributors & developers |
| **🔧 Dev** | `git clone ... && uv pip install -e ".[dev]"` | All | Contributors & developers |
</div>
@@ -209,8 +209,11 @@ superclaude install
git clone https://github.com/SuperClaude-Org/SuperClaude_Framework.git
cd SuperClaude_Framework
# Install uv if not present
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install in development mode
pip install -e ".[dev]"
uv pip install -e ".[dev]"
# Test installation
SuperClaude install --dry-run
@@ -223,6 +226,7 @@ SuperClaude install --dry-run
- Latest features
- Contribute to project
- Full source access
- Fast installation (uv)
**📍 Best for:**
- Contributors