Python Typing Checker

PassAudited by VirusTotal on May 1, 2026.

Overview

Type: OpenClaw Skill Name: python-typing-checker Version: 1.0.0 The python-typing-checker skill is a static analysis tool designed to audit Python type annotations and mypy compliance. It uses standard, read-only shell commands (grep, find, awk) to inspect code patterns and configuration files (pyproject.toml, mypy.ini) within the project directory. There are no signs of data exfiltration, malicious execution, or prompt injection; all instructions in SKILL.md are strictly aligned with the stated purpose of improving code quality.

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.

What this means

If invoked from the wrong directory, the agent could read and summarize code outside the intended project scope.

Why it was flagged

The instructions use local shell tools to enumerate and search Python files in the current directory. This is read-only and aligned with typing analysis, but it means the agent may inspect files wherever it is invoked.

Skill content
find . -name "*.py" ...; grep -rn ... --include="*.py" .
Recommendation

Run or invoke this skill only from the repository you want analyzed, and avoid using it from a home directory or other broad parent folder.