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