Introduce repos.finddirty.py, a Python utility that scans a specified directory for Git repositories and reports those with uncommitted changes. The script uses pathlib for filesystem traversal, subprocess to execute git status commands, and sys for argument handling. It defines is_git_repo() to check for .git directories and is_dirty() to parse git status output for "tree clean" indicators, returning None for non-repo paths. Licensed under MIT.