← Back to list

add-check
by frizzle-chan
MUDD: Multi User Dungeon (Discord)
⭐ 2🍴 0📅 Jan 24, 2026
SKILL.md
name: add-check description: Add a new code quality check to CI, justfile, and pre-commit hooks. Use when adding linters, formatters, type checkers, or other code quality tools to the project.
Adding a New Check
When adding a new code quality check (linter, formatter, type checker, etc.), update these three locations:
1. justfile
Add a new recipe and include it in the default target:
default: lint format typecheck your-check
your-check:
uv run YOUR_COMMAND
2. .github/workflows/ci.yaml
Add a step to the verify job after the existing checks:
- name: Run YOUR_CHECK
run: uv run YOUR_COMMAND
3. lefthook.yml
Add a job to the pre-commit.jobs list:
- name: YOUR_CHECK
glob: "*.py"
run: YOUR_COMMAND {staged_files}
If the tool can auto-fix issues, add stage_fixed: true.
Checklist
- Add dev dependency to
pyproject.tomlif needed - Add justfile recipe and update
defaulttarget - Add CI workflow step
- Add lefthook pre-commit job
- Run
justto verify all checks pass
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
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon
