Python Style Skill
Rules
- Format all Python code with Black (line length 88).
- Sort imports with isort (profile: black).
- Add type hints to all function signatures.
- Use
pathlib.Pathinstead ofos.pathfor file operations. - Prefer f-strings over
.format()or%formatting. - Use
dataclassesorpydanticmodels instead of plain dicts for structured data.