uv
How to Install
Claude Code:
git clone --depth 1 https://github.com/mwathiben/hush-private-bookmarks.git && cp hush-private-bookmarks/.claude/skills/uv ~/.claude/skills/uv -r---
name: uv
description: "Use `uv` instead of pip/python/venv. Run scripts with `uv run script.py`, add deps with `uv add`, use inline script metadata for standalone scripts."
---
## Quick Reference
```bash
uv run script.py # Run a script
uv run --with requests script.py # Run with ad-hoc dependency
uv add requests # Add dependency to project
uv init --script foo.py # Create script with inline metadata
```
## Inline Script Dependencies
```python
# /// script
# requires-python = ">=3.12"
# dependencies = ["requests"]
# ///
```
See [scripts.md](scripts.md) for full details on running scripts, locking, and reproducibility.
## Build Backend
Use `uv_build` for pure Python packages:
```toml
[build-system]
requires = ["uv_build>=0.9.28,<0.10.0"]
build-backend = "uv_build"
```
See [build.md](build.md) for project structure, namespaces, and file inclusion.
Details
| Category | AI/ML → prompt |
| Source | mwathiben/hush-private-bookmarks |
| SKILL.md | View on GitHub → |
| Repo Stars | N/A |
| Est. per Skill | N/A (shared across 97 skills from this repo) |
| Difficulty | Intermediate |
| Risk Level | Safe |
Related Skills
sred-project-organizer
SRED Project Organization SRED expects projects to be presented in a particular format. Take the lis
claude-archive-search
--- name: claude-archive-search description: Use when searching your own past conversations, memory,
bmad-init
--- name: bmad-init description: "Initialize BMad project configuration and load config variables. U
bmad-shard-doc
--- name: bmad-shard-doc description: 'Splits large markdown documents into smaller, organized files
Works Well With
Skills from the same repository — often designed to work together
templates
Tool Skill Template Use this template for static analysis tools (Semgrep, CodeQL) and similar standa
workflows
Designing a Workflow Skill A 6-phase process for creating a workflow-based skill from scratch. --- P
mui
--- name: mui description: Material-UI v7 component library patterns including sx prop styling, them