← Back to list

refactoring-02-dependencies-env
by Silviase
⭐ 0🍴 0📅 Jan 15, 2026
SKILL.md
name: refactoring-02-dependencies-env description: Use when standardizing Python research code dependencies, environment setup, and lockfiles.
Refactoring 02: Dependencies and Environment
Goal
Make the environment reproducible by declaring dependencies, pinning versions, and documenting setup.
Sequence
- Order: 02
- Previous: refactoring-01-project-structure
- Next: refactoring-03-config-reproducibility
Workflow
- Inventory imports and hidden runtime assumptions (system binaries, CUDA, external tools).
- Success: Dependencies and external requirements are listed.
- Consolidate dependencies into
pyproject.toml(or the repo standard).- Success: Declared deps reflect actual imports.
- Use
uvfor add/remove/sync/lock operations in this repo.- Success: Dependency changes are made via
uvcommands.
- Success: Dependency changes are made via
- Pin the Python version and ensure a lockfile exists and is current.
- Success: Python version and lockfile are present and up to date.
- Document setup steps and required system packages in
README.md.- Success: README includes reproducible setup instructions.
Guardrails
- Prefer existing dependency management conventions in the repo.
- Avoid over-pinning transitive deps unless reproducibility demands it.
- Keep environment changes isolated from code refactors.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/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