CSV Data Explorer
Analysis
The skill appears to be a normal local CSV analysis tool, with only routine cautions around dependency installation and user-provided filter expressions.
Findings (2)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
filtered = df.query(condition, engine='python')
The filter command evaluates a user-provided condition string through pandas' Python query engine. This is central to the CSV filtering feature, but it makes filter expressions something users should review rather than blindly accept from untrusted text.
pip3 install pandas matplotlib
The skill relies on external Python packages for its core CSV and plotting functionality. The install command is user-directed and purpose-aligned, but the packages are not version-pinned in the artifact.
