Help us improve
Share bugs, ideas, or general feedback.
From code-quality-orchestrator
Runs quality gates for static analysis (ESLint/Prettier/linters), test coverage, security scan, complexity, and dependency health; generates scored report with status, issues, and grade.
npx claudepluginhub markus41/claudeHow this command is triggered — by the user, by Claude, or both
Slash command
/code-quality-orchestrator:quality-checkThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /quality-check Run all quality gates and generate comprehensive report. ## Usage ## Options | Option | Description | Default | |--------|-------------|---------| | `--gate=<name>` | Run specific gate only | all | | `--fix` | Auto-fix issues where possible | false | | `--strict` | Fail on warnings | false | | `--changed-only` | Only check changed files | false | | `--ci` | CI mode (JSON output, exit codes) | false | | `--report=<format>` | Output format (text/json/html) | text | | `--threshold=<pct>` | Override coverage threshold | 80 | ## Examples ## Quality Gates Executed 1. *...
/qualityRuns unified code quality checks including linting, complexity analysis, security scans, and dependency audits. Produces a scored report with issues, warnings, and recommendations. Supports subcommands like lint, fix, review.
/qualityRuns code quality checks including linting, formatting, type checking, security scans, dependency audits, and metrics for JavaScript/TypeScript, Python, Go, Rust, Java projects. Supports [scope] [--fix].
/qualityRuns comprehensive quality control: executes tests with coverage, checks code standards/docs/patterns, auto-fixes issues, produces score (0-100) and trends report.
/qualityRuns multi-agent quality assessment on codebase across code quality, security, performance, testing, and documentation; generates report with prioritized recommendations. Supports --focus AREA for targeted analysis.
/quality-checkRuns comprehensive code quality checks across formatting, review, complexity, dead code, naming, patterns, security headers, and dependencies. Produces findings, recommendations, severities, overall score, and top fixes.
/code-qualityRuns code quality assessment using project-aware tool detection for linting, formatting, testing, complexity, and coverage analysis. Supports types like full, lint, format, test.
Share bugs, ideas, or general feedback.
Run all quality gates and generate comprehensive report.
/quality-check [options]
| Option | Description | Default |
|---|---|---|
--gate=<name> | Run specific gate only | all |
--fix | Auto-fix issues where possible | false |
--strict | Fail on warnings | false |
--changed-only | Only check changed files | false |
--ci | CI mode (JSON output, exit codes) | false |
--report=<format> | Output format (text/json/html) | text |
--threshold=<pct> | Override coverage threshold | 80 |
# Run all quality gates
/quality-check
# Run with auto-fix
/quality-check --fix
# Only static analysis
/quality-check --gate=static-analysis
# CI pipeline mode
/quality-check --ci --strict --report=json
# Check only changed files
/quality-check --changed-only --fix
| Code | Meaning |
|---|---|
| 0 | All gates passed |
| 1 | Gate(s) failed with errors |
| 2 | Gate(s) failed with warnings (--strict mode) |
| 3 | Configuration error |
╔══════════════════════════════════════════════════════════════╗
║ CODE QUALITY REPORT ║
║ Quality Score: 87/100 ║
╠══════════════════════════════════════════════════════════════╣
║ Gate │ Status │ Score │ Issues ║
╠══════════════════════════════════════════════════════════════╣
║ Static Analysis │ ✓ PASS │ 95 │ 3 warnings ║
║ Test Coverage │ ✓ PASS │ 82 │ 82% coverage ║
║ Security Scanner │ ✓ PASS │ 90 │ 0 vulnerabilities║
║ Complexity Analyzer │ ✓ PASS │ 78 │ 2 suggestions ║
║ Dependency Health │ ⚠ WARN │ 70 │ 5 outdated ║
╠══════════════════════════════════════════════════════════════╣
║ Overall Grade: B ║
╚══════════════════════════════════════════════════════════════╝