add-check

Installation
SKILL.md

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:

Installs
17
GitHub Stars
3
First Seen
Jan 27, 2026
add-check — frizzle-chan/mudd