AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL unreviewed Apache-2.0 Self-run

Uv

skill-jskherman-engg-skills-uv · by jskherman

>-

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-jskherman-engg-skills-uv

Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures
  • high Pipes remote content directly into a shell (remote code execution).

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.

View the full security report →

Reliability & compatibility

Not yet reviewed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Uv? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

uv (Python runner)

Overview

Every other skill in this repository runs its scripts via uv run (PEP-723 inline dependency declaration). This skill is a one-page check: "is uv on PATH, and if not, how do you install it?"

When to Use

  • Setting up the environment for the first time.
  • A skill invocation has failed with uv: command not found.

Don't use for

  • Any engineering calculation.
  • Authoring a new skill (use engineering-skill-creator instead).

Setup

If uv is missing, install it from https://docs.astral.sh/uv/ . The common path on Linux/macOS:

curl -LsSf https://astral.sh/uv/install.sh | sh

On Windows (PowerShell):

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Then verify:

uv --version

Conventions

  • Every script in this repository is invoked as

uv run /scripts/.py -- --output /tmp/.json.

  • The script header declares dependencies inline (PEP-723); uv run will

install them the first time and cache for subsequent runs.

  • Stdout is reserved for a single success message; results live in the

JSON file at --output.

Procedure

  1. Read this SKILL.md and any referenced files needed for the task.
  2. Use scripts from scripts/ when a deterministic calculation or check is available.
  3. Preserve stated assumptions, warnings, and scope limits in the final answer.

Pitfalls

  • Trying to python a script directly rather than uv run; the script

header won't be respected.

  • Running scripts from a different working directory than the skill folder

— works, but path-based imports resolve engg_skills_common from the sibling skills/engg-skills-common folder, which is robust.

Verification

  • Run uv --version and confirm it prints a version.
  • Run a representative skill script with uv run ... --output and confirm the JSON output file is created.

References

  • https://docs.astral.sh/uv/
  • https://github.com/astral-sh/uv

Anti-Patterns

  • Installing uv globally with sudo; let the install script handle it.
  • Pinning uv versions in skill scripts; the PEP-723 dependencies pin the

Python deps, and uv itself should be free to update.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.