Code Quality Analysis Comprehensive code quality analysis skill covering style, complexity, dead code detection, and type checking. Core Capabilities Style Compliance Check adherence to language-specific style guides: Python (PEP8/Black): - Line length (88 chars for Black, 79 for PEP8) - Indentation (4 spaces) - Import ordering (standard, third-party, local) - Naming conventions (snake case for functions/variables, PascalCase for classes) - Whitespace usage Style check commands: Complexity Metrics Measure and report code complexity: Cyclomatic Complexity: - Number of independent paths through…