AgentSkillsCN

python

Python 语言的编码规范、设计模式与工具链。在处理 Python 源文件(.py)、pyproject.toml 文件,或编写 Python 脚本时,应运用此技能。

SKILL.md
--- frontmatter
name: python
description: Python language conventions, patterns, and tooling. This skill should be used when working with Python source files (.py), pyproject.toml, or writing Python scripts.

Python

Tooling

  • Formatter/linter: ruff
  • Package manager: uv

Inline Script Dependencies

For single-file scripts, use uv inline script dependencies instead of a separate requirements file:

python
# /// script
# dependencies = ["requests", "rich"]
# ///