← Back to list

check-dependencies
by mvillmow
Training framework written in Mojo
⭐ 11🍴 4📅 Jan 24, 2026
SKILL.md
name: check-dependencies description: "Validate and verify dependencies are available and compatible. Use when setting up environments." mcp_fallback: none category: analysis tier: 2 user-invocable: false
Check Dependencies
Verify that required dependencies are installed and compatible with the project requirements.
When to Use
- Setting up development environment
- Validating CI/CD environment configuration
- Troubleshooting import errors
- Checking version compatibility
Quick Reference
# Check Python dependencies
pip check
# Verify specific package versions
pip show package_name
# Validate pixi environment
pixi info
pixi task list
Workflow
- List requirements: Identify all declared dependencies (pixi.toml, requirements.txt)
- Verify installation: Check that all packages are installed and importable
- Check versions: Confirm version constraints are met
- Test imports: Actually import modules to detect hidden issues
- Report status: Document any missing or incompatible dependencies
Output Format
Dependency validation report:
- All declared dependencies listed
- Installation status (installed/missing)
- Installed version vs required version
- Compatibility status (compatible/incompatible)
- Issues found (if any)
References
- See CLAUDE.md > Environment Setup for Pixi configuration
- See
extract-dependenciesskill for dependency extraction - See pixi.toml in repository root for project dependencies
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon