Vulture and deadcode - Dead Code Detection Tools for finding unused Python code including functions, classes, variables, imports, and attributes. When to Use This Skill | Use this skill when... | Use another tool instead when... | |------------------------|----------------------------------| | Detecting unused functions, classes, variables | Finding unused imports only (use ) | | Cleaning up dead code in a codebase | Checking type correctness (use basedpyright) | | Enforcing code hygiene in CI | Formatting code (use ruff format) | | Generating whitelists for false positives | Running general…