bug-check
Run automated tests and build checks first, then agent code review. For each bug found, propose or document a regression test.
Run formatter, linter, and type checks for a file or directory. Report remediation steps.
> /plugin marketplace add yeaight7/agent-powerupsHow it fires
How this command gets triggered: by you, by Claude, or both.
/quality-gateContext preview
What this command does when you run it.
Run formatter, linter, and type checks for a file or directory. Report remediation steps.
description: Run formatter, linter, and type checks for a file or directory. Report remediation steps.
Run format, lint, and type checks on demand. Mirror the checks that CI would run.
`/quality-gate [path|.] [--fix] [--strict]`
1. **Detect tooling** — infer language and tools from project config (`package.json`, `pyproject.toml`, etc.) 2. **Format check** — run formatter in check mode (`prettier --check`, `ruff format --check`, `gofmt -l`) 3. **Lint / type check** — run linter and type checker (`eslint`, `tsc --noEmit`, `mypy`, `clippy`) 4. **Report** — list failing checks with file, line, and fix instruction
Quality Gate — <path> Formatter: PASS / FAIL (<N> issues) Linter: PASS / FAIL (<N> issues) Types: PASS / FAIL (<N> issues) Remediation: <file>:<line> — <message> Fix: <exact command or change>
Return exit 0 only when all checks pass (or `--strict` warnings are absent).
$ARGUMENTS:
Curated power-ups for coding agents: skills, slash commands, MCP configs, hooks, AGENTS.md templates, and workflows for serious software engineering. Claude Code, Codex, Antigravity CLI, Cursor and more
Repo: yeaight7/agent-powerups
Run automated tests and build checks first, then agent code review. For each bug found, propose or document a regression test.
Use when a build, type check, or test suite is failing and needs to be unblocked with a minimal change.