---
name: yiweiren123-arch/python-style
source: https://app.decimal.ai/s/yiweiren123-arch-python-style@1/SKILL.md
source_sha256: 1d25ec85dd3c
---

# Python Style Skill

## Rules

1. Format all Python code with **Black** (line length 88).
2. Sort imports with **isort** (profile: black).
3. Add type hints to all function signatures.
4. Use `pathlib.Path` instead of `os.path` for file operations.
5. Prefer f-strings over `.format()` or `%` formatting.
6. Use `dataclasses` or `pydantic` models instead of plain dicts for structured data.