ac-tools-single-file-uv-scripter

ac-tools-single-file-uv-scripter is a skill for Claude Code from WaterplanAI/agentic-config. It costs 71 tokens per session (1,222 once invoked), scanned A, original, MIT.

A skill for creating self-contained Python scripts that declare their required packages inside the file and run with uv, a Python tool runner.

In plain words
What is it for?
Use it to create standalone Python scripts with PEP 723 dependency metadata, optional Python-version requirements, and reproducible uv settings.
Why use it?
It avoids separate setup files and lets uv install the declared dependencies automatically when the script runs.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the agentic-config plugin — 49 skills, 1 plugin shipped together

Good fit Use it to create standalone Python scripts with PEP 723 dependency metadata, optional Python-version requirements, and reproducible uv settings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/waterplanai/agentic-config/ac-tools-single-file-uv-scripter
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add WaterplanAI/agentic-config --skill ac-tools-single-file-uv-scripter
Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config

Made for: Claude Code.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 1 plugin.

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 ac-tools-single-file-uv-scripter

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-single-file-uv-scripter/github.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-single-file-uv-scripter)
Your own site
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-single-file-uv-scripter"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-single-file-uv-scripter/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 ac-tools-single-file-uv-scripter

Your own site · 80×15
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-single-file-uv-scripter"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-single-file-uv-scripter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,222 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 original No closer match found 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.00071 $0.01222
Opus 5 $0.00036 $0.00611
Sonnet 5 $0.00014 $0.00244
Haiku 4.5 $0.00007 $0.00122

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

Security

Grade A, and why

ac-tools-single-file-uv-scripter 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.

packages/pi-ac-tools/skills/ac-tools-single-file-uv-scripter/SKILL.md · 184 lines

How it starts

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

Single-File UV Scripter

Creates self-contained Python scripts with inline dependency declarations per PEP 723. Scripts execute via uv run script.py with automatic dependency resolution.

Inline Metadata Format

# /// script
# dependencies = [
#   "package-name",
#   "package>=1.0,<2.0",
# ]
# requires-python = ">=3.12"
# ///

Syntax Rules

Element Format Required
Open marker # /// script Yes
Close marker # /// Yes
Dependencies TOML array, each line # prefixed Yes (can be empty [])
Python version requires-python = ">=3.X" Recommended

UV-Specific Extensions

# /// script
# dependencies = ["requests"]
# requires-python = ">=3.12"
# [tool.uv]
# exclude-newer = "2024-01-15T00:00:00Z"
# ///
  • exclude-newer: RFC 3339 timestamp for reproducible builds (pins to releases before date)
  • index: Alternative PyPI index URL

Template

#!/usr/bin/env -S uv run
# /// script
# dependencies = [
#   "DEPENDENCY",
# ]
# requires-python = ">=3.12"
# ///
"""One-line description of script purpose."""
from __future__ import annotations

# imports here

def main() -> None:
    """Entry point."""
    pass

if __name__ == "__main__":
    main()

Commands

Action Command
Initialize uv init --script name.py --python 3.12
Add dep uv add --script name.py 'pkg>=1.0'
Run uv run name.py [args]
Make executable chmod +x name.py then ./name.py

Shebang Options

#!/usr/bin/env -S uv run                    # Standard
#!/usr/bin/env -S uv run --quiet            # Suppress UV output
#!/usr/bin/env -S uv run --python 3.12      # Pin Python version

Common Patterns

CLI with Arguments

#!/usr/bin/env -S uv run
# /// script
# dependencies = ["typer>=0.9", "rich"]
# requires-python = ">=3.12"
# ///
import typer
app = typer.Typer()

@app.command()
def main(name: str) -> None:
    print(f"Hello {name}")

if __name__ == "__main__":
    app()

Read the full file on GitHub · 184 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 · 184 lines · 71 tokens per session scan A fe29c9962d6b

Subscribe to this mod's changes

ac-tools-single-file-uv-scripter is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 71 tokens to every session and 1,222 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

temporal-python-testing

Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.

wshobson/agents · 45 tokens

langgraph

LangGraph 1.x (LTS) Python workflow patterns for state management, delta channels, resilience (node timeouts, error handlers, graceful drain), routing, parallel execution, supervisor-worker, tool calling, checkpointing, human-in-loop, streaming (v2 format), subgraphs, and functional API. Use when building LangGraph…

yonatangross/orchestkit · 80 tokens

telnyx-numbers-python

Search, order, and manage phone numbers by location, features, and coverage.

team-telnyx/ai · 23 tokens

telnyx-ai-outbound-voice-python

End-to-end setup for making a Telnyx AI assistant call a phone number. Covers provisioning a phone number, creating a TeXML application, assigning the number, configuring telephony settings, whitelisting destination countries, and triggering outbound calls via scheduled events. Use this skill (not…

team-telnyx/ai · 97 tokens

telnyx-stt-python

Transcribe audio to text via the OpenAI-compatible transcription endpoint. Supports multiple models, languages, and keyword biasing. Also lists available speech-to-text providers and service types.

team-telnyx/ai · 42 tokens

telnyx-tts-python

Generate speech from text using Telnyx and third-party TTS providers (AWS, Azure, ElevenLabs, MiniMax, Resemble, Rime, xAI). Returns base64-encoded audio or a binary stream. Also lists available voices per provider.

team-telnyx/ai · 60 tokens