Quality Gate

Runs the project's lint + typecheck + test gate in parallel, tabulates the results, and calls out exactly which checks failed so the caller can triage before a commit, a PR, or a release. Prefers repository-declared Taskfile targets (`task lint`, `task test`, `task typecheck`, `task check`) when they exist so project conventions and ignore lists are honoured; otherwise detects and runs the native tooling directly (ruff, pytest, eslint, tsc, vitest, go test, cargo test, and similar). Invoke when the user asks to "run the quality gate," "run lint and tests," "make sure CI will pass," "run all checks before committing," or equivalent German-language requests. Don't use for CVE scanning (`dependency-audit`) or license compliance (`license-check`), even when task lint wraps a security check and don't use for documentation builds (those are a separate concern).

nolte 54c3a32 4 files · 19.8 KB Updated

File contents

nolte/claude-shared/tree/main/plugins/nolte-engineering/skills/quality-gate commit 54c3a3290b

Frequently asked questions

npx skillmds@latest add nolte/quality-gate