From code-quality-orchestrator
Run all quality gates and generate comprehensive report.
npx claudepluginhub markus41/claude --plugin code-quality-orchestrator# /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. *...
/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.
/quality-checkRun comprehensive but advisory quality validation on code changes. This check provides suggestions but NEVER blocks - the user always has final say on shipping code.
/quality-check内容质量评估工具,从冲突强度、情绪密度、期待感、节奏控制、钩子设计五个维度评估小说内容吸引力。当用户说"质量检查"、"内容检查"、"综合评估"、"检查质量"、"小说质量"时自动激活。
/quality-checkQuick quality assessment of recent work using the analyzing-response-quality skill
/quality-checkRun full code quality suite (PHPCS, PHPStan, Drupal Check) on custom Drupal code.
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 ║
╚══════════════════════════════════════════════════════════════╝