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

๐Ÿ“ Update duckdb and Python skill docs

+9 -4
+6 -1
agents/skills/duckdb/SKILL.md
··· 3 3 description: Use duckdb to run arbitrary SQL 4 4 --- 5 5 6 - You have access to the `duckdb` CLI. Run `duckdb --help` to learn about it. 6 + You have access to the `duckdb` CLI. Before running any `duckdb` command. 7 + 8 + 1. Run `duckdb --help` to learn about it. 9 + 2. Check https://blobs.duckdb.org/docs/duckdb-docs.md. 10 + 3. Write a `.sql` file with your query. 11 + 4. Run and iterate!
+2 -2
agents/skills/modern-python/SKILL.md
··· 1 1 --- 2 2 name: modern-python 3 - description: How to work with Python (`uv` instead of `python`, modern type syntax, linting, formatting, etc.) 3 + description: Work with Python (`uv` instead of `python`, modern type syntax, linting, formatting, etc.) properly! 4 4 --- 5 5 6 - - Use `uv` instead of `python` 6 + - Never use `python`. Use `uv` instead of `python` 7 7 - `uv add package-name` 8 8 - `uv run script.py` 9 9 - Don't use `from __future__ import annotations`
+1 -1
agents/skills/self-contained-python-script/SKILL.md
··· 1 1 --- 2 2 name: self-contained-python-script 3 - description: Use uv and PEP 723 to write self-installing autocontained Python scripts 3 + description: Write self-installing autocontained Python scripts using uv and PEP 723 4 4 --- 5 5 6 6 Use this to write Python tools / scripts / clis as single files.