Python Coding Guidelines
AdvisoryAudited by Static analysis on Apr 30, 2026.
Overview
No suspicious patterns detected.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
NoteHigh Confidence
ASI02: Tool Misuse and ExploitationWhat this means
The agent may suggest or run normal Python project maintenance commands that can update source files or dependencies if the user permits it.
Why it was flagged
The skill recommends local development commands, including a linter auto-fix command that may modify project files. This is consistent with Python coding guidance, but users should be aware before allowing file-changing commands.
Skill content
ruff check . --fix 2>/dev/null || python -m black --check . 2>/dev/null
Recommendation
Review proposed commands before execution, especially formatting/lint auto-fixes and dependency installation commands.
