Loading...
Loading...
Review and verify Python code against PEP 8 using flake8, and optionally apply safe formatting fixes with black after explicit user confirmation. Use when users ask to check style compliance, lint Python files, or fix PEP 8 issues in a target folder.
npx skill4agent add grupoyacck/gy-agent-skills python-pep8-coachflake8blackreferences/pep-0008.mdflake8 --versionblack --versionpyproject.tomlsetup.cfg.flake8tox.iniflake8 <target> --max-line-length 79 --exclude=.venv,build,dist,__pycache__black --check --line-length 88 <target>flake8 <target> --max-line-length 88 --extend-ignore=E203,W503 --exclude=.venv,build,dist,__pycache__black --line-length 88 <target>flake8 <target> --max-line-length 79 --exclude=.venv,build,dist,__pycache__black --check --line-length 88 <target>flake8 <target> --max-line-length 88 --extend-ignore=E203,W503 --exclude=.venv,build,dist,__pycache__E203W503flake8.venvbuilddistflake8blackscript.pyflake8 script.py --max-line-length 79script.pyflake8src/black --check --line-length 88 src/
flake8 src/ --max-line-length 88 --extend-ignore=E203,W503black --line-length 88 src/src/flake8 src/ --max-line-length 79