What problem does it solve? Setting up a Python development environment for a Reflex app involves several manual steps—checking for an existing venv, choosing between uv and pip, verifying the Python version, and installing Reflex. This Skill automates that decision tree so the environment is configured correctly the first time. ## Core Features & Use Cases - Virtual Environment Detection and Creation: Checks for an existing .venv directory and creates one with uv or python3 -m venv when missing. - Toolchain Fallback Logic: Prefers uv when available and falls back to standard python/pip, including a Python 3.10 minimum version check. - Reflex Installation: Detects whether Reflex is already installed and installs it via uv add reflex or pip install reflex. - Use Case: You clone a Reflex project on a fresh machine with no .venv. Invoke this Skill to create the environment, activate it, and install Reflex in one guided flow. ## Quick Start Set up a Python virtual environment and install Reflex for this project.