Pythesis Plot
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: pythesis-plot Version: 1.0.3 The pythesis-plot skill bundle is a well-structured tool designed for scientific data analysis and publication-quality plotting. The workflow, as defined in SKILL.md and implemented in scripts/workflow.py, data_analyzer.py, and plot_generator.py, follows a safe and transparent process that includes mandatory user confirmation before generating any files. The code uses standard data science libraries (pandas, matplotlib, seaborn) and lacks any indicators of malicious intent, such as data exfiltration, unauthorized network access, or prompt injection attacks.
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.
Installing from a changing remote repository or unpinned packages could affect the local agent environment.
The installation guidance pulls a remote repository into a persistent skills directory and installs unpinned dependencies. This is normal for a Python plotting skill, but users should trust and verify the source.
git clone https://github.com/stephenlzc/pythesis-plot.git ~/.claude/skills/pythesis-plot pip install pandas matplotlib seaborn openpyxl numpy scipy
Install only from a trusted repository, prefer a virtual environment, and pin or review dependencies when possible.
Local Python code will run to create figures, which can modify files in the chosen output directory.
The skill generates and executes local Python plotting code. This is disclosed and central to the purpose, and the workflow requires user confirmation before generation.
Generate {timestamp}_plot.py (Python code)
3. Execute code to generate charts:Keep the confirmation step, run in a controlled Python environment, and review generated code if the dataset or environment is sensitive.
Sensitive or unpublished research data may remain on disk in the output folder after use.
The workflow saves a copy of uploaded data and derived artifacts such as reports and generated code. This is expected for reproducible plotting, but it creates persistent local copies.
Auto-save: Rename to `timestamp-original_filename`, save to `output/YYYYMMDD-filename/`
Use appropriate local file permissions, avoid uploading confidential data unless intended, and delete or secure output directories when finished.
