← Back to list

python
by i9wa4
⭐ 6🍴 0📅 Jan 24, 2026
SKILL.md
name: python description: | Python environment and execution guide. Use when:
- Running Python scripts
- Working with uv, poetry, venv
Python Skill
1. Python-specific Rules
- NEVER: Do not add shebang lines (
#!/usr/bin/env python3) - NEVER: Do not set execute permission on Python files
- YOU MUST: Always execute with explicit
pythoncommand
2. Virtual Environment Usage
2.1. When uv.lock Exists
Use uv to execute Python commands:
uv run dbt debug --profiles-dir ~/.dbt --no-use-colors
2.2. When poetry.lock Exists
Create virtual environment with uv referring to the blog article:
2.3. When uv.lock Does Not Exist
-
Activate the virtual environment
source .venv/bin/activate -
Execute Python commands
dbt debug --profiles-dir ~/.dbt --no-use-colors
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