← Back to list

quality-check
by DCRepairCenter
AI 驱动的桌面宠物应用
⭐ 0🍴 1📅 Jan 1, 2026
SKILL.md
name: quality-check description: Run comprehensive quality checks including linting, type checking, and tests. Use before committing or when validating code changes.
Quality Check Skill
Execute comprehensive quality checks on the codebase.
Commands
# Python linting
make lint # ruff check (no auto-fix)
make format # ruff format (auto-fix)
# Type checking
make typecheck # mypy
# Rust checks
make rust-check # cargo clippy
# Run tests
make test # pytest full suite
make test-unit # unit tests only
make test-cov # with coverage report
# All checks at once
make check # lint + typecheck + test
Check Results Interpretation
Ruff Errors
E- pycodestyle errorsW- pycodestyle warningsF- PyflakesI- isortB- flake8-bugbearUP- pyupgrade
Mypy Errors
- Missing type annotations
- Type mismatches
- Import errors
Clippy Warnings
clippy::unwrap_used- Use?orexpect()clippy::todo- Remove before commitclippy::dbg_macro- Remove debug macros
Focus Areas
- Type annotation completeness
- Import organization
- Unused variables/imports
- Code complexity
- Test coverage gaps
Workflow
- Run
make checkto see all issues - Report errors with file:line references
- Suggest specific fixes
- Prioritize by severity (errors > warnings > style)
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
3ヶ月以内に更新
+5
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon
