add-check

When adding a new code quality check (linter, formatter, type checker, etc.), update these three locations:

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "add-check" with this command: npx skills add frizzle-chan/mudd/frizzle-chan-mudd-add-check

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

  1. .github/workflows/ci.yaml

Add a step to the verify job after the existing checks:

  • name: Run YOUR_CHECK run: uv run YOUR_COMMAND
  1. 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.toml if needed

  • Add justfile recipe and update default target

  • Add CI workflow step

  • Add lefthook pre-commit job

  • Run just to verify all checks pass

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

ruff-formatter

No summary provided by upstream source.

Repository SourceNeeds Review
General

discord-markdown

No summary provided by upstream source.

Repository SourceNeeds Review
General

postgres-migrations

No summary provided by upstream source.

Repository SourceNeeds Review