crypto-trading-arena: Skill for Claude Code

.agents/skills/uv/SKILL.md

uv is a skill for Claude Code, Codex from ryan-yuuu/crypto-trading-arena. It costs 29 tokens per session (994 once invoked), scanned A, a copy of uv, Apache-2.0.

A guide to uv, a tool for managing Python projects, packages, virtual environments, and standalone scripts. It covers commands for running code, adding dependencies, syncing projects, and creating projects.

In plain words
What is it for?
Use it when working on Python scripts or projects, especially those with pyproject.toml or uv.lock files. It helps run scripts, manage packages, and reproduce a project's environment.
Why use it?
It gives Python work one consistent way to install dependencies and run code. It also explains when to use uv and when to keep using another manager such as Poetry or PDM.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is ryan-yuuu/crypto-trading-arena's own configuration. It tells Claude Code and Codex how to work on crypto-trading-arena itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything crypto-trading-arena configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ryan-yuuu/crypto-trading-arena. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ryan-yuuu/crypto-trading-arena/main/.agents/skills/uv/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ryan-yuuu/crypto-trading-arena

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for uv

README.md
[![agentmods](https://agentmods.dev/badge/skills/ryan-yuuu/crypto-trading-arena/uv/github.svg)](https://agentmods.dev/skills/ryan-yuuu/crypto-trading-arena/uv)
Your own site
<a href="https://agentmods.dev/skills/ryan-yuuu/crypto-trading-arena/uv"><img src="https://agentmods.dev/badge/skills/ryan-yuuu/crypto-trading-arena/uv/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for uv

Your own site · 80×15
<a href="https://agentmods.dev/skills/ryan-yuuu/crypto-trading-arena/uv"><img src="https://agentmods.dev/badge/skills/ryan-yuuu/crypto-trading-arena/uv.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 994 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.00994
Opus 5 $0.00015 $0.00497
Sonnet 5 $0.00006 $0.00199
Haiku 4.5 $0.00003 $0.00099

Measured 11d ago against content hash 6553a22dbe42, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

uv scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to uv — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/uv/SKILL.md · 183 lines

How it starts

The opening of the file, as written. The whole thing — 183 lines — stays where its author put it; the contents beside it link to each section on GitHub.

uv

uv is an extremely fast Python package and project manager. It replaces pip, pip-tools, pipx, pyenv, virtualenv, poetry, etc.

When to use uv

Always use uv for Python work, especially if you see:

  • The uv.lock file
  • uv headers in requirements* files, e.g., "This file was autogenerated by uv"

Don't use uv in projects managed by other tools:

  • Poetry projects (identifiable by poetry.lock file)
  • PDM projects (identifiable by pdm.lock file)

Choosing the right workflow

Scripts

Use when: Running single Python files and standalone scripts.

Key commands:

uv run script.py                      # Run a script
uv run --with requests script.py      # Run with additional packages
uv add --script script.py requests    # Add dependencies inline to the script

Projects

Use when: There is a pyproject.toml or uv.lock

Key commands:

uv init                   # Create new project
uv add requests           # Add dependency
uv remove requests        # Remove dependency
uv sync                   # Install from lockfile
uv run <command>          # Run commands in environment
uv run python -c ""       # Run Python in project environment
uv run -p 3.12 <command>  # Run with specific Python version

Tools

Use when: Running command-line tools (e.g., ruff, ty, pytest) without installation.

Key commands:

uvx <tool> <args>            # Run a tool without installation
uvx <tool>@<version> <args>  # Run a specific version of a tool

Important:

  • uvx runs tools from PyPI by package name. This can be unsafe - only run well-known tools.
  • Only use uv tool install only when specifically requested by the user.

Pip interface

Use when: Legacy workflows with requirements.txt or manual environment management, no uv.lock present.

Key commands:

uv venv
uv pip install -r requirements.txt
uv pip compile requirements.in -o requirements.txt
uv pip sync requirements.txt

# Platform independent resolution
uv pip compile --universal requirements.in -o requirements.txt

Read the full file on GitHub · 183 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 183 lines · 29 tokens per session scan A 6553a22dbe42

Subscribe to this mod's changes

uv is a skill published in the GitHub repository ryan-yuuu/crypto-trading-arena (126 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 29 tokens to every session and 994 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to uv, differing in 0 lines, and is treated as a copy.