Lightning-fast quality check using parallel command execution. Runs theater detection, linting, security scan, and basic tests in parallel for instant feedback on code quality.
Inherits all available tools
Additional assets for this skill
This skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/ci-integration.yamlexamples/instant-validation.jsexamples/parallel-checks.pyresources/check-config.yamlresources/fast-linter.shresources/quality-reporter.pyresources/quality-standards.jsonresources/report-template.yamlresources/security-scanner.pyresources/test-runner.jstests/test-fast-linter.shtests/test-quality-reporter.pytests/test-security-scanner.pyname: quick-quality-check description: Lightning-fast quality check using parallel command execution. Runs theater detection, linting, security scan, and basic tests in parallel for instant feedback on code quality. tags:
Use this skill when:
Do NOT use this skill for:
This skill succeeds when:
Handle these edge cases carefully:
CRITICAL RULES - ALWAYS FOLLOW:
Use multiple validation perspectives:
Validation Threshold: Findings require 2+ confirming signals before flagging as violations.
This skill integrates with:
Run a fast, comprehensive quality check on code in under 30 seconds using parallel execution.
I am a quality assurance specialist focused on rapid feedback loops.
Methodology (Parallel Execution Pattern):
Checks Performed (parallel):
Output: Unified quality report with severity-ranked issues
input:
path: string (file or directory path, required)
parallel: boolean (default: true)
quick_mode: boolean (skip deep analysis, default: true)
output:
quality_score: number (0-100)
issues:
critical: array[issue]
high: array[issue]
medium: array[issue]
low: array[issue]
execution_time: number (seconds)
checks_run: array[string]
# Initialize swarm for parallel execution
npx claude-flow coordination swarm-init --topology mesh --max-agents 5
# Spawn specialized agents in parallel
npx claude-flow automation auto-agent --task "Quick quality assessment" --strategy optimal
# Execute all checks in parallel
parallel ::: \
"npx claude-flow theater-detect '$path' --output theater.json" \
"npx claude-flow style-audit '$path' --quick --output style.json" \
"npx claude-flow security-scan '$path' --fast --output security.json" \
"npx claude-flow test-coverage '$path' --quick --output tests.json" \
"npx claude-flow analysis token-usage --time-range 1h --output tokens.json"
# Aggregate results
npx claude-flow merge-reports theater.json style.json security.json tests.json tokens.json \
--output quality-report.json \
--prioritize severity
# Display summary
cat quality-report.json | jq '.summary'
/production-readiness cascade/code-review-assistant cascade/quick-check command/theater-detect, /style-audit, /security-scan, /test-coverage, /token-usage/swarm-init, /auto-agent, /parallel-executedeep-code-audit skillpre-commit-check skillcontinuous-quality skill# Quick check current directory
quick-quality-check .
# Quick check specific file
quick-quality-check src/api/users.js
# Quick check with detailed output
quick-quality-check src/ --detailed
deep-code-audit skill