← Back to list

install-dependencies
by craigtkhill
Agentic Terminal User Interface tools, agents and configs following a Spec-Test-Driven Development process
⭐ 0🍴 0📅 Jan 13, 2026
SKILL.md
name: install-dependencies description: Use when adding project dependencies. Defines dependency management rules and language-specific patterns.
Install Dependencies
Philosophy
Core Principle: Let package managers handle version resolution automatically. Never specify version numbers unless absolutely necessary.
Why This Approach
- Package managers are smarter: Modern package managers (uv, npm, cargo) resolve compatible versions automatically
- Avoid version conflicts: Manual version specifications often create dependency hell
- Get latest features: Always use the newest compatible versions
- Simpler maintenance: No need to manually track and update versions
- Trust the ecosystem: Package managers understand semver and compatibility better than manual pinning
Universal Rules
✅ DO:
- Add dependency names without version numbers
- Let the package manager resolve versions
- Trust the lock file (package-lock.json, Cargo.lock, uv.lock)
- Update dependencies regularly through the package manager
❌ DON'T:
- Specify version numbers (>=, ^, ~, =)
- Manually pin versions without good reason
- Override package manager decisions
- Commit version specifications to dependency files
Exception Case
The ONLY time to specify a version is when there's a known breaking change or compatibility issue that requires pinning to a specific version.
Requirements for version pinning:
- Must be documented with a comment explaining why
- Must be treated as temporary until the issue is resolved
- Should include link to issue/ticket tracking the problem
Example:
dependencies = [
"problematic-lib", # Pinned to v1.2.3 due to breaking change in v1.3.0 (see issue #123)
]
Language-Specific Details
For language-specific syntax and examples:
- Python: See PYTHON.md
- TypeScript/JavaScript: See TYPESCRIPT.md
- Rust: See RUST.md
Workflow
- Add dependency: Add dependency name only (no version)
- Let package manager resolve: Run the appropriate install/sync command
- Verify: Check that dependency was resolved and installed
- Commit lock file: Always commit the updated lock file
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon