AI SummaryUse uv exclusively for Python package management in all projects.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to add the "Carbon14 — Cursor Rules" prompt rules to my project. Repository: https://github.com/Lazza/Carbon14 Please read the repo to find the rules/prompt file, then: 1. Download it to the correct location (.cursorrules, .windsurfrules, .github/prompts/, or project root — based on the file type) 2. If there's an existing rules file, merge the new rules in rather than overwriting 3. Confirm what was added
Description
Install Python packages, access Python CLI, run python code and scripts, execute Python commands, and manage Python environments. Use uv run for all Python execution instead of direct python commands.
Python Package Management with uv
Use uv exclusively for Python package management in all projects.
Package Management Commands
• All Python dependencies must be installed, synchronized, and locked using uv • Never use pip, pip-tools, poetry, or conda directly for dependency management Use these commands • Install dependencies: uv add <package> • Remove dependencies: uv remove <package> • Sync dependencies: uv sync
Running Python Code
• Run a Python script with uv run <script-name>.py • Run Python tools like Pytest with uv run pytest or uv run ruff • Launch a Python repl with uv run python
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster
Works With
Any AI assistant that accepts custom rules or system prompts