Install
$ agentstack add skill-liatrio-labs-ai-prompts-uv-usage ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
uv Usage
Quick start
Use uv as a fast, unified tool for Python projects:
- Initialize a project:
uv init - Add deps:
uv add - Sync env:
uv sync - Run commands:
uv run
uv add updates uv.lock automatically; use uv lock when you need to re-lock after manual pyproject.toml edits.
Inline dependencies (PEP 723 scripts)
Use inline metadata so a script runs standalone with uv run .
Steps
- Add a
# /// scriptblock at the top of the file. - Set
requires-pythonanddependencies. - Run the script with
uv run. - Add or remove inline deps with
uv add --scriptanduv remove --script.
Template
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "requests>=2.31",
# "rich>=13.0",
# ]
# ///
import requests
from rich import print
print(requests.get("https://api.github.com/repos/astral-sh/uv").status_code)
Commands
uv run script.py
uv add --script script.py beautifulsoup4
uv remove --script script.py rich
Pip-compatible commands
Use these for drop-in workflows or legacy projects:
uv pip install
uv pip install -r requirements.txt
uv pip compile requirements.in -o requirements.txt
uv pip sync requirements.txt
Python versions and environments
uv python install 3.12
uv python pin 3.12
uv venv --python 3.12
uv run --python 3.12 -- python -V
Examples
New project
uv init demo
cd demo
uv add ruff
uv run ruff check .
Standalone script with inline deps
uv run script.py
Notes
- uv offers pip-compatible commands, but behavior can differ in edge cases.
- Use
uvx(alias foruv tool run) to run tools ephemerally without installing them globally. - Prefer project workflow (
uv add,uv sync) for new work, and runuv lockwhen re-locking after manualpyproject.tomlchanges.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: liatrio-labs
- Source: liatrio-labs/ai-prompts
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.