Use when Python-specific typing, async behavior, packaging, pytest, ruff/mypy, scripting, or performance quality is central to the request. Do not trigger for generic small code edits merely written in Python.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add BlueSkyXN/Codex-is-all-you-need --skill dev-python-quality --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dev Python Quality?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/blueskyxn-dev-python-quality-codex-is-all-you-need)More formats (shields.io, HTML) on the badges page.
---
name: dev-python-quality
description: Use when Python-specific typing, async behavior, packaging, pytest, ruff/mypy, scripting, or performance quality is central to the request. Do not trigger for generic small code edits merely written in Python.
metadata:
version: "0.4"
updated: "2026-07-26"
---
# Python quality workflow
Use this workflow when Python code, packaging, tests, scripts, or modernization are the main task.
## Steps
1. Read project conventions.
- `pyproject.toml`, `setup.cfg`, `setup.py`, `requirements*.txt`, `uv.lock`, `poetry.lock`
- Test layout
- Lint/type tools
- Supported Python versions
- Existing style patterns
2. Define the Python change.
- API/service code
- CLI/script
- Data processing
- Async/concurrency
- Packaging
- Modernization
- Performance
3. Implement idiomatically.
- Clear function boundaries
- Type hints on public interfaces
- Context managers for resources
- Structured exceptions
- Dataclasses or typed models when useful
- Async only when it matches the I/O model
4. Validate.
- Smallest relevant `pytest`
- `ruff` or project linter
- `mypy` or type checks when configured
- Package/build checks if packaging changed
- Performance check if performance was the goal
5. Keep compatibility explicit.
- Python version
- Dependency changes
- Public API behavior
- Script output and exit codes
## Output
Return:
1. Python scope
2. Implementation summary
3. Compatibility notes
4. Checks run
5. Remaining risk
## Do not
- Do not impose a formatter or type checker that the project does not use unless asked.
- Do not add heavy dependencies without approval.
- Do not rewrite working code just to match a preferred style.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!