Full Quality Gate Review

SkillDev tools

Run Houndarr's full quality gate (ruff lint, ruff format check, mypy, bandit, pytest) and report results in a single table. Use when the user asks to run quality gates, check the code, run all checks, or invokes /check. Trigger phrases include quality gate, check, lint, run all checks.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Full Quality Gate Review skill

What this skill tells your AI

The instructions your AI receives, as published by av1155/houndarr in .agents/skills/check/SKILL.md and read by ahel’s review.

Run every quality check in sequence. Report results clearly. Stop and fix if any check fails.

1. Lint

.venv/bin/python -m ruff check src/ tests/

Report: pass or fail with error count.

2. Format Check

.venv/bin/python -m ruff format --check src/ tests/

If files are unformatted, run .venv/bin/python -m ruff format src/ tests/ to fix, then re-check.

3. Type Check

.venv/bin/python -m mypy src/

Report: pass or fail with error count and locations.

4. SAST

.venv/bin/python -m bandit -r src/ -c pyproject.toml

Report: pass or fail with any findings.

5. Tests

.venv/bin/pytest

Report: total tests, passed, failed, skipped.

Summary

Present a single table:

CheckResultDetails
Lint (ruff)......
Format (ruff)......
Type check (mypy)......
SAST (bandit)......
Tests (pytest)......

If all pass, say "All quality gates pass." and nothing else. If any fail, list the specific failures and suggest fixes. Do NOT recite exact test counts in a reporting style.

Signals

GitHub stars
283
Forks
4
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
check-av1155
Source
github.com/av1155/houndarr