
Poetry Uv Advisor
- 154 installs
- 2 repo stars
- Updated January 25, 2026
- jorgealves/agent_skills
Choose Poetry versus uv, configure pyproject.toml, lockfiles, virtualenvs, and CI install paths for reproducible Python service and tool projects.
About
Advises on Poetry and uv for Python projects, helping choose tooling, configure pyproject.toml and lockfiles, set up virtual environments, and align CI installs for reproducible backend and CLI builds.
- Poetry vs uv tradeoffs
- pyproject.toml setup
- Lockfile and sync strategy
- Virtualenv and CI patterns
- Migration guidance
Poetry Uv Advisor by the numbers
- 154 all-time installs (skills.sh)
- +8 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #79 of 290 Python skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jorgealves/agent_skills --skill poetry-uv-advisorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 154 |
|---|---|
| repo stars | ★ 2 |
| Last updated | January 25, 2026 |
| Repository | jorgealves/agent_skills ↗ |
What it does
Choose Poetry versus uv, configure pyproject.toml, lockfiles, virtualenvs, and CI install paths for reproducible Python service and tool projects.
Files
Poetry/uv Dependency Advisor
Purpose and Intent
Optimize pyproject.toml and resolve complex dependency trees using modern tools like Poetry or uv. Use to modernize Python project management.
When to Use
- Project Setup: When initializing a new Python project.
- Continuous Integration: As part of automated build and test pipelines.
- Legacy Refactoring: When updating older Python codebases to modern standards.
When NOT to Use
- Non-Python Projects: This tool is specialized for the Python ecosystem.
Error Conditions and Edge Cases
- Missing Requirements: If the project lacks a requirements.txt or pyproject.toml.
- Incompatible Versions: If the project uses a Python version not supported by the tools.
Security and Data-Handling Considerations
- All analysis is performed locally.
- No source code or credentials are ever transmitted externally.
name: poetry-uv-advisor
version: 1.0.0
description: Optimize pyproject.toml and resolve complex dependency trees using modern tools like Poetry or uv. Use to modernize Python project management.
inputs:
project_path:
type: string
description: Path to the Python project directory.
required: true
outputs:
report:
type: string
description: A detailed report of the analysis or actions performed.
capabilities:
- Automated analysis of Python project structure.
- Integration with standard Python tooling.
constraints:
- Requires a valid Python environment.
security:
- Operates locally on source files.
examples:
- input:
project_path: "."
output:
report: "Analysis complete. No issues found."