R Analyst

PassAudited by ClawScan on Apr 17, 2026.

Overview

The skill's requests and shipped script are consistent with a local CSV analysis tool using Python3; it asks for no credentials or installs and appears to only read and analyze local files.

This appears to be a straightforward local CSV analysis tool that runs Python3 on files you give it and doesn't request credentials or network access. Before installing or running: (1) Inspect the full script (the preview was truncated) to confirm there are no hidden network calls or unexpected exec/system modifications in the omitted lines. (2) Only run it on datasets you are comfortable exposing to a local process — it reads files you pass to it, so avoid giving it sensitive datasets without review. (3) Ensure python3 is up-to-date and run on a machine with resource limits for very large CSVs (the scripts do in-memory reads and could use significant RAM). (4) If you need stronger guarantees (sandboxing, no disk writes or network), run it inside a container or isolated environment. Overall, the skill looks coherent with its stated purpose but verify the truncated tail of the script before trusting it with sensitive data.