Handles Python project dependency management and environment setup.

Install

mkdir -p .claude/skills/poetry && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13323" && unzip -o skill.zip -d .claude/skills/poetry && rm skill.zip

Installs to .claude/skills/poetry

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Manage Python dependencies, lock files, and project environments using Poetry.
78 charsno explicit “when” trigger
Beginner

Key capabilities

  • Add or remove Python packages
  • Sync the project environment with `poetry.lock`
  • Regenerate the `poetry.lock` file
  • Run commands within the project's virtual environment
  • Initialize a new Poetry-managed project
  • Migrate projects from `requirements.txt`

How it works

The skill manages Python dependencies and project environments using Poetry, handling tasks like adding/removing packages, syncing environments, regenerating lock files, and running commands within virtual environments. It adapts to different Poetry versions for safe operations.

Inputs & outputs

You give it
Poetry commands (e.g., `poetry add <package>`, `poetry install`, `poetry run pytest`)
You get back
Updated `pyproject.toml` and `poetry.lock` files, installed/uninstalled packages, or command execution results

When to use poetry

  • Managing python dependencies
  • Installing project environments
  • Running tests in venv

About this skill

What I do

I handle the full Poetry dependency-management lifecycle:

  • Add or remove packages — update pyproject.toml and poetry.lock in one step
  • Sync the environment — install exactly what the lock file specifies
  • Regenerate the lock file — after you edit pyproject.toml, safely re-resolve without unintended upgrades
  • Run commands in the project environment — no manual venv activation needed
  • Initialise a new project — scaffold a new Poetry-managed project or migrate from pip/requirements.txt

When to use me

  • Use this skill when the project is Poetry-managed (for example, poetry.lock exists, or the team standard is Poetry).
  • You want to add, update, or remove a dependency
  • You pulled a branch and need the environment to match the updated lock file
  • You edited pyproject.toml directly and need the lock file regenerated
  • You want to run a script, test suite, or tool inside the project's virtual environment
  • You are starting a new Python project with Poetry, or migrating from pip/requirements.txt

Use Instead [if available]

  • Use uv when the project is uv-managed (for example, uv.lock is the lockfile of record).
  • Use ci-fix when your primary goal is diagnosing/remediating a failing CI run instead of general dependency work.

Example usage

/poetry add requests
/poetry add --dev pytest
/poetry remove httpx
/poetry install
/poetry lock
/poetry run pytest
/poetry init

Workflow

Adding and removing dependencies

Add a runtime dependency (goes into [tool.poetry.dependencies] in pyproject.toml):

poetry add <package>           # e.g. poetry add requests
poetry add "<package>>=2.0"    # with version constraint

Add a dev dependency (goes into [tool.poetry.group.dev.dependencies] — Poetry 1.2+ group syntax):

poetry add --group dev <package>    # e.g. poetry add --group dev pytest ruff

Dev dependencies are installed in the development environment only and excluded from production installs (poetry install --no-dev or poetry install --without dev). Use --group dev for test runners, linters, and formatters.

Remove a dependency:

poetry remove <package>        # removes from pyproject.toml and updates poetry.lock
poetry remove --group dev <package>    # remove a dev dependency

After every add or remove, Poetry automatically:

  1. Updates pyproject.toml
  2. Resolves all constraints and regenerates poetry.lock
  3. Installs or uninstalls the package in the active virtual environment

Version resolution summary: Poetry prints the resolved version and any transitive changes. If a conflict is detected, it reports the conflicting constraints — fix the version bounds in pyproject.toml and retry.


Syncing the environment

poetry install installs exactly what poetry.lock specifies — no more, no less. It is the canonical way to bring an environment into alignment with the lock file.

poetry install

When to use it:

  • After git pull when teammates updated poetry.lock
  • After checking out a branch with different lock file state
  • After cloning a repository for the first time
  • After manually editing pyproject.toml followed by poetry lock

Already in sync: If the environment already matches the lock file, poetry install exits cleanly. It is safe to run on every git pull.

Dev vs production install:

poetry install --without dev    # skip dev dependency groups (production-like)
poetry install --only dev       # install only dev dependencies

Regenerating the lock file

Use poetry lock after editing pyproject.toml directly — for example, changing a version constraint, adding a dependency entry by hand, or removing one.

Version-aware safe regeneration:

Poetry versionSafe commandNotes
2.x (current)poetry lockSafe by default — existing resolved versions preserved; --no-update flag removed
1.x (legacy)poetry lock --no-updateRequired to prevent upgrading all deps; plain poetry lock in 1.x upgrades everything

Check your Poetry version: poetry --version

Detect which command to use:

# Poetry 2.x — safe by default:
poetry lock

# Poetry 1.x — must pass --no-update for safe regen:
poetry lock --no-update

If --no-update is not recognised (Poetry 2.x), use plain poetry lock.

Upgrade all dependencies to latest compatible versions:

# Poetry 2.x:
poetry update --lock          # regenerate lock with all deps upgraded (no env install)
# or:
poetry lock --regenerate      # full re-resolution from scratch

# Poetry 1.x:
poetry update                 # upgrades and installs

Upgrade a single package:

poetry update <package>       # upgrade one package (both versions)

When to use each variant:

ScenarioPoetry 2.xPoetry 1.x
Edited constraint in pyproject.tomlpoetry lockpoetry lock --no-update
Removed a dependencypoetry lockpoetry lock --no-update
Upgrade one packagepoetry update <pkg>poetry update <pkg>
Periodic refresh of all depspoetry update --lockpoetry update

After regenerating the lock file, run poetry install to apply the changes to your environment.

Critical: The skill will never run a command that silently upgrades unrelated packages. Always use the safe-default command for your Poetry version.


Running commands in the project environment

poetry run executes any command inside the project's virtual environment — without manual activation.

poetry run <command>

Examples:

poetry run pytest                      # run tests
poetry run pytest tests/unit/ -v      # with arguments
poetry run python src/main.py         # run a script
poetry run ruff check .               # run a tool
poetry run python -m mypackage        # module invocation

Replaces manual venv activation: Use poetry run <cmd> instead of:

source $(poetry env info --path)/bin/activate

poetry run works consistently across platforms and CI environments without shell state side-effects.

Tip: To open a shell inside the venv: poetry shell (Poetry 1.x) or poetry run bash (Poetry 2.x removed poetry shell in favour of explicit activation).


Initialising a new project

Scaffold a new Poetry project (creates a directory with pyproject.toml and src layout):

poetry new my-project

Initialise in an existing directory (interactive pyproject.toml wizard):

poetry init

This prompts for project name, version, description, Python version constraint, and initial dependencies.

Set Python version:

poetry env use python3.12     # pin to a specific Python for this project

Poetry stores the selected Python in the virtualenv metadata.

Migrate from requirements.txt:

  1. Run poetry init if no pyproject.toml exists
  2. Add runtime dependencies:
    # Add each dependency from requirements.txt:
    poetry add requests click flask
    # Or read from file:
    cat requirements.txt | xargs poetry add
    
  3. Add dev dependencies:
    poetry add --group dev pytest ruff mypy
    
  4. Verify the generated poetry.lock is correct: poetry install
  5. Delete requirements.txt once migration is verified

Tips for Success

  1. Always use poetry run instead of venv activation — it works in CI without any setup steps and eliminates the risk of running commands in the wrong environment.

  2. poetry lock is safe by default in Poetry 2.x — but in Poetry 1.x you must use poetry lock --no-update to avoid upgrading unrelated packages. Check poetry --version if you're unsure.

  3. Always review the lock diff after poetry updatepoetry update can pull in breaking changes. Check git diff poetry.lock before committing and run your test suite.

  4. Use --group dev for test and lint tools — keeping pytest, ruff, mypy, and similar tools in the dev group ensures they are never installed in production (poetry install --without dev).

  5. Run poetry install after every git pull — or make it the first step in your dev environment setup script. This ensures your environment always matches the committed lock file.

  6. Check Poetry is installed: poetry --version. Install with curl -sSL https://install.python-poetry.org | python3 - or brew install poetry.

  7. Commit poetry.lock to version control — the lock file is the source of truth for reproducible environments. Never add it to .gitignore.

When not to use it

  • When the project is `uv`-managed
  • When the primary goal is diagnosing/remediating a failing CI run

Limitations

  • The skill is designed for Poetry-managed projects
  • It will never run a command that silently upgrades unrelated packages
  • Requires checking Poetry version for safe lock file regeneration in 1.x

How it compares

This skill provides a complete, automated interface for Poetry's dependency management lifecycle, ensuring consistent and safe operations across different Poetry versions, unlike manual command execution.

Compared to similar skills

poetry side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
poetry (this skill)04moReviewBeginner
telegram-bot-builder1066moReviewIntermediate
codex-cli-bridge99moReviewIntermediate
async-python-patterns122moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

telegram-bot-builder

davila7

Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategies, and scaling bots to thousands of users. Use when: telegram bot, bot api, telegram automation, chat bot telegram, tg bot.

106130

codex-cli-bridge

alirezarezvani

Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools

9180

async-python-patterns

wshobson

Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-blocking operations.

1299

modal

davila7

Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.

587

uv-package-manager

wshobson

Master the uv package manager for fast Python dependency management, virtual environments, and modern Python project workflows. Use when setting up Python projects, managing dependencies, or optimizing Python development workflows with uv.

1370

python-background-jobs

wshobson

Python background job patterns including task queues, workers, and event-driven architecture. Use when implementing async task processing, job queues, long-running operations, or decoupling work from request/response cycles.

615

Search skills

Search the agent skills registry