← スキル一覧に戻る

verify-project-health
by Row0902
⭐ 0🍴 0📅 2026年1月21日
SKILL.md
name: Verify Project Health description: A quick workflow to verify linting, testing, and type safety.
🩺 Project Health Verification Skill
Context
Before any task_boundary completion or notify_user call, code must be verified.
Checklist
-
Type Check:
- Mentally verify: "Are all arguments typed?" "Is
Anyavoided?" - (Future)
uv run mypy src
- Mentally verify: "Are all arguments typed?" "Is
-
Linting (Strict):
- Command:
uv run ruff check src - Action: Fix ALL errors. No ignore comments unless absolutely critical.
- Command:
-
Formatting:
- Command:
uv run ruff format src
- Command:
-
Testing:
- Command:
uv run pytest - Action: If tests fail, FIX them. Do not comment them out.
- Command:
Troubleshooting Common Issues
- Ruff/Import Errors: Check
pyproject.tomlconfiguration. - Version Mismatch: Run
uv syncto ensure lockfile matches environment. - Missing Dependencies: Use
uv add [lib]instead ofpip install.
スコア
総合スコア
35/100
リポジトリの品質指標に基づく評価
✓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
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です