Python Coding Guidelines
PassAudited by VirusTotal on May 12, 2026.
Overview
Type: OpenClaw Skill Name: python Version: 1.0.0 The OpenClaw AgentSkills skill bundle is benign. The `SKILL.md` file provides Python coding guidelines and best practices, including standard development commands for syntax checking (`python -m py_compile`), testing (`pytest`, `unittest`), formatting (`ruff`, `black`), and dependency management (`uv`, `pip`). All instructions and commands are directly aligned with the stated purpose of enforcing coding standards and lack any indicators of malicious intent such as data exfiltration, unauthorized execution, persistence mechanisms, or prompt injection attempts to subvert the agent's core directives.
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.
The agent may suggest or run normal Python project maintenance commands that can update source files or dependencies if the user permits it.
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.
ruff check . --fix 2>/dev/null || python -m black --check . 2>/dev/null
Review proposed commands before execution, especially formatting/lint auto-fixes and dependency installation commands.
