Skip to main content

python-code-review

Provides comprehensive Python code review guidelines focusing on security, performance, and style to enhance code quality.

Install this skill

or
75/100

Security score

The python-code-review skill was audited on Feb 28, 2026 and we found 5 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

medium line 29

System command execution

SourceSKILL.md
29os.system(f"grep {user_input} /var/log/app.log")
medium line 29

Python os.system command execution

SourceSKILL.md
29os.system(f"grep {user_input} /var/log/app.log")
medium line 30

Python subprocess execution

SourceSKILL.md
30subprocess.run(f"convert {filename} output.png", shell=True)
medium line 33

Python subprocess execution

SourceSKILL.md
33subprocess.run(["grep", user_input, "/var/log/app.log"])
medium line 34

Python subprocess execution

SourceSKILL.md
34subprocess.run(["convert", filename, "output.png"], check=True)
Scanned on Feb 28, 2026
View Security Dashboard