🔧 Where my dotfiles lives in harmony and peace, most of the time

✨ Add modern-python skill

+13
+13
agents/skills/modern-python/SKILL.md
··· 1 + --- 2 + name: modern-python 3 + description: How to work with Python (`uv` instead of `python`, modern type syntax, linting, formatting, etc.) 4 + --- 5 + 6 + - Use `uv` instead of `python` 7 + - `uv add package-name` 8 + - `uv run script.py` 9 + - Don't use `from __future__ import annotations` 10 + - Use modern type syntax (`list[str], str | None`) 11 + - Format with `uvx ruff format .` 12 + - Lint with `uvx ruff check .` and `uvx ty check` 13 + - Look before you leap (check conditions before acting)