bug-check
Run automated tests and build checks first, then agent code review. For each bug found, propose or document a regression test.
Execute a comprehensive quality gate check (lint, test, build, format) before allowing code to merge.
> /plugin marketplace add yeaight7/agent-powerupsHow it fires
How this command gets triggered: by you, by Claude, or both.
/quality-checkContext preview
What this command does when you run it.
Execute a comprehensive quality gate check (lint, test, build, format) before allowing code to merge.
description: "Execute a comprehensive quality gate check (lint, test, build, format) before allowing code to merge." argument-hint: "[--strict] [--fix]"
You MUST follow these rules exactly. Violating any of them is a failure.
1. **Execute checks sequentially.** Do NOT skip checks unless explicitly instructed. 2. **Halt on failure.** If any check fails and cannot be automatically fixed, STOP immediately. Present the error. 3. **Use local tools.** Rely on the project's configured tools (e.g., npm run lint, cargo test, etc.). 4. **Never enter plan mode autonomously.** Execute the quality gate directly.
Identify the project type and available quality scripts (e.g., in package.json, Makefile, etc.). Determine if `--strict` (fail on warnings) or `--fix` (attempt auto-fix) flags are present in `$ARGUMENTS`.
1. Run the project's formatting check (e.g., Prettier, rustfmt).
2. Run the project's linting tool (e.g., ESLint, Clippy).
1. Run the unit test suite. 2. Verify that all tests pass. 3. Check code coverage metrics if configured. Ensure they meet the project's baseline.
1. Run type checking (e.g., tsc --noEmit) if applicable. 2. Run a trial build to ensure compilation succeeds without errors.
Generate a final quality gate report:
# Quality Gate Results ## Summary - **Status**: [PASS | FAIL] - **Linting**: [X errors, Y warnings] - **Testing**: [X passed, Y failed] - **Type Check / Build**: [PASS | FAIL] ## Details [List specific failures or areas of concern] ## Next Steps [Provide exact commands or recommendations to resolve any failures]
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.