Python Typing Checker
AdvisoryAudited by Static analysis on May 1, 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
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.
