๐Ÿ”ง Where my dotfiles lives in harmony and peace, most of the time

๐Ÿ“ Update modern-python skill guidance

+3 -1
+3 -1
agents/skills/modern-python/SKILL.md
··· 1 1 --- 2 2 name: modern-python 3 - description: Work with Python (`uv` instead of `python`, modern type syntax, linting, formatting, etc.) properly! 3 + description: Use when writing, reviewing, or refactoring Python to ensure adherence to modern best practices (type syntax, `uv` instead of `python`, linting, formatting, etc.) 4 4 --- 5 5 6 6 - Never use `python`. Use `uv` instead of `python` ··· 11 11 - Format with `uvx ruff format .` 12 12 - Lint with `uvx ruff check .` and `uvx ty check` 13 13 - Look before you leap (check conditions before acting) 14 + - Default to no backwards compatibility preservation 15 + - Declare variables close to use