スキル一覧に戻る
Row0902

verify-project-health

by Row0902

0🍴 0📅 2026年1月21日
GitHubで見るManusで実行

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

  1. Type Check:

    • Mentally verify: "Are all arguments typed?" "Is Any avoided?"
    • (Future) uv run mypy src
  2. Linting (Strict):

    • Command: uv run ruff check src
    • Action: Fix ALL errors. No ignore comments unless absolutely critical.
  3. Formatting:

    • Command: uv run ruff format src
  4. Testing:

    • Command: uv run pytest
    • Action: If tests fail, FIX them. Do not comment them out.

Troubleshooting Common Issues

  • Ruff/Import Errors: Check pyproject.toml configuration.
  • Version Mismatch: Run uv sync to ensure lockfile matches environment.
  • Missing Dependencies: Use uv add [lib] instead of pip 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

レビュー

💬

レビュー機能は近日公開予定です