Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

managing-python-projects-with-uvmanaging Python projects with UV 测试

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

618

周安装

26

GitHub Stars

2

下载量

216
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:managing-python-projects-with-uv(managing Python projects with UV 测试)
来源仓库:https://github.com/ai-helpers/ai-skills-curated
仓库路径:skills/managing-python-projects-with-uv
安装命令:
npx skills add https://github.com/ai-helpers/ai-skills-curated --skill managing-python-projects-with-uv
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ai-helpers/ai-skills-curated --skill managing-python-projects-with-uv

简介

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。

  • 适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令或分析数据处理逻辑。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认虚拟环境和依赖版本。
  • 涉及执行脚本、读写文件或调用外部 API 时,应先明确运行目录和输入输出范围。
  • 避免误改生产数据,建议在测试环境中验证后再应用到生产系统。

SKILL.md

Managing Python Projects with uv

Overview

This skill helps you work with Python projects managed by uv, an extremely fast Python package and project manager written in Rust. Use this skill for:

  • Initializing new Python projects
  • Managing dependencies and virtual environments
  • Running scripts and applications
  • Building and publishing packages
  • Optimizing Python workflows with uv's speed
  • There are several ways to install and use Python and the ecosystem built upon Python.

- PyEnv has been available for a while and is now mature enough to be widely used by the majority of users. PyEnv is the solution be default used in these cheat sheets - uv is the new, shiny, kid on the block, and may appeal to those seeking to be on the edge of technological trends. There is at least a very specific use case where uv proves useful, it is to power standalone Python scripts: it is enough to add the magic #!/usr/bin/env -S uv command as the first line of any Python script, and that latter becomes standalone, self-served on any platform, any where, whithout requiring the users to install anything like dependencies (apart uv itself, obviously)

When to Use This Skill

Use this skill when:

  • Setting up a new Python project from scratch
  • Converting an existing project to use uv
  • Managing dependencies (adding, removing, updating packages)
  • Working with virtual environments
  • Running Python scripts or applications in a uv project
  • Building distributions for PyPI
  • The user asks about uv commands or workflows
  • You need to check which Python version or packages are installed

Additional Resources

Assets for this skill

  • Makefile — Example of Makefile excerpts with relevant targets
  • pyproject.toml — Example of Python project file, compatible with uv
  • README.md — Example of relevant excerpts in the README file
  • main.py — Example of working standalone main.py file, to be copied in the src/<project>/ directory (if not existing, be sure to create that directory, adapting to your project)
  • test_main.py — Example of working test_main.py Python test script, to be copied in the tests/ directory (if not existing, be sure to create that directory)
  • .gitignore - Example of relevant excerpts in the .gitignore file, Git-ignoring Python-/uv-related files
  • ci.yml - Example of relevant excerpts in the ci.yml CI/CD (GitHub Actions) dev pipeline, to be copied into the .github/workflows/ directory (if not existing, be sure to create that directory)
  • publish.yml - Example of relevant excerpts in the publish.yml CI/CD (GitHub Actions) release pipeline, to be copied into the .github/workflows/ directory

Data Engineering Helpers

- Cheat sheet for how to set up and use Python, especially detailing the installation and use of uv

uv

Quick Reference

- Makefile - pyproject.toml - README.md - main.py - test_main.py - .gitignore - ci.yml - publish.yml

Quick start

- Either globally:

npx skills add https://github.com/ai-helpers/ai-skills-curated \
    --skill managing-python-projects-with-uv -g
  • Or locally:
npx skills add https://github.com/ai-helpers/ai-skills-curated \
    --skill managing-python-projects-with-uv
  • Create an empty directory, initilize it with Git and open VS Code:
mkdir -p ~/tmp/my-new-python-project && cd ~/tmp/my-new-python-project
git init
code .
  • Prompt the AI agent with something like
With the managing-python-projects-with-uv skill, create a Python project, with testing, CI/CD and publishing capability on Pypi"
  • Stage in Git the just created resources:
git add pyproject.toml Makefile .github .gitignore src tests README.md
  • If not already done so, install a specific Python version for uv:
make init-uv-python PYTHON_VERSION=3.13
  • Clean all previous work:
make clean
  • Note that uv is expecting that the Python source code be in the src/<project>/ sub-directory

- The <project> name is specified in the pyproject.toml Python project specification file. Change it to reflect your project name - For the next commands to work, that source directory should at least contain a Python script. If need, copy the main.py into the src/<project>/ directory:

mkdir -p src/<project> tests .github/workflows
cp assets/main.py src/<project>/
cp assets/test_main.py tests/
cp assets/*.yml .github/workflows/
git add src/<project>/main.py tests/test_main.py .github/workflows/*.yml
  • Initialize the Python environment with uv:
make init # update
  • Run the Python script:
make run

Useful commands

  • Build the artifact (Python wheel):
make build
  • Check (with the linter and type checkers) that there is no Python issue:
make check
  • Test the Python package:
make test
  • Publish the artifact (Python wheel):
make publish

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.37%
按下载量换算81

Claude

31.42%
按下载量换算68

Cursor

19.38%
按下载量换算42

Gemini CLI

9.13%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills