# Deptry

> Use this skill when the user wants to check Python project dependencies for unused or missing packages, or audit dependency health.

- Skill: `javimosch/deptry` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/deptry`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/deptry/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/deptry

---


# deptry Plugin

Find unused, missing, and obsolete dependencies in Python projects.

## Commands

### Project
- `deptry project check` — Check project for dependency issues

## Usage Examples
- "Check my Python project for unused dependencies"
- "Find missing dependencies"
- "Audit dependency health"

## Installation

```bash
pip install deptry
```

## Examples

```bash
# Check current directory
deptry .

# Check specific directory
deptry /path/to/project

# Ignore certain packages
deptry . --ignore my-package

# Exclude specific directories
deptry . --exclude tests

# JSON output
deptry . --json
```

