R ggplot Quickplot
PassAudited by ClawScan on May 10, 2026.
Overview
This looks like a local CSV-to-chart tool, but verify the missing runtime files and optional Docker/R package steps before running it.
Use this skill only with CSV files you intend to process locally. Before running helper scripts, confirm the missing run_plot.R/Dockerfile/Singularity files are present from a trusted source, be aware that the local script may install ggplot2, and do not enable Docker Hub publishing unless you intend to push an image.
Findings (3)
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.
The skill may fail as packaged, or a user may end up relying on runtime files that were not included in this review.
The primary plotting script referenced by the skill is not present in the supplied file manifest/full source, so the core executable chart-generation logic could not be reviewed here.
Rscript run_plot.R input/your_data.csv
Before running, confirm that run_plot.R, Dockerfile, and any Singularity definition file are present from a trusted source and review them.
Running the local script may install external R packages and dependencies on the user's machine.
The local helper script automatically installs ggplot2 if missing, which is purpose-aligned but downloads code from the configured R package repository at runtime.
Rscript -e "if(!requireNamespace('ggplot2', quietly=TRUE)) install.packages('ggplot2')"Use a trusted CRAN mirror or a pinned/containerized environment if reproducibility or supply-chain control matters.
A user who runs the build script with Docker Hub credentials configured may publish or overwrite an image under their account.
If DOCKER_USERNAME is set, the build helper tags and pushes the image to Docker Hub using the user's Docker login/session.
docker push $FULL_IMAGE_NAME:$TAG
Only set DOCKER_USERNAME and run the publish path when you intend to publish; verify the image name and tag first.
