check-dependencies

Validate Python dependencies against pixi.toml and requirements.txt constraints.

18|5|Updated Nov 3, 2025
One-click install
npx skills add https://github.com/mvillmow/ProjectOdyssey --skill check-dependencies
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: check-dependencies
Source: https://github.com/mvillmow/ProjectOdyssey/tree/main/.claude/skills/tier-2/check-dependencies
Command: npx skills add https://github.com/mvillmow/ProjectOdyssey --skill check-dependencies

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pip, pixi.

What problem does it solve?

Incompatible or missing dependencies can lead to environment setup issues, runtime errors, and CI/CD failures, wasting valuable development time.

Core Features & Use Cases

  • Installation Verification: Checks that all declared dependencies are installed and importable.
  • Version Compatibility: Confirms that installed package versions meet specified constraints.
  • Use Case: When setting up a new development environment or troubleshooting CI/CD failures, use this skill to quickly verify all required dependencies are correctly installed and compatible.

Quick Start

Use the check-dependencies skill to verify all Python dependencies with pip check and list pixi tasks.

Frequently Asked Questions about check-dependencies

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate that all my Python dependencies are installed and compatible?

Validate dependencies by running pip check to verify installed packages meet version constraints, and use pixi tooling to check dependencies declared in pixi.toml or requirements.txt against your environment.

What causes import errors during environment setup and how do I troubleshoot them?

Import errors typically stem from missing or incompatible dependencies. Check that declared packages are installed, versions satisfy constraints, and all imports are testable against your current environment.

Can I verify dependencies across both pip and pixi workflows?

Yes. This skill validates dependencies managed through both pip and pixi, checking installation status, version compatibility, and import functionality across both package managers and configuration formats.

How do I catch dependency issues before CI/CD failures occur?

Run dependency validation during environment setup to identify missing or incompatible packages early, confirming all declared dependencies are installed and version constraints are met before deployment.

What happens when package versions don't match requirements?

Version compatibility checks identify when installed packages violate specified constraints, reporting mismatches so you can resolve them before they cause runtime errors or CI/CD pipeline failures.