Report Generator
PassAudited by ClawScan on May 1, 2026.
Overview
This skill coherently generates local reports from user-provided data, with only minor setup and local file-execution considerations.
This appears safe to use for local report generation. Before installing or invoking it, make sure you are comfortable running the included Python script, process only the intended data files, and install any needed Python dependencies from trusted sources.
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.
The agent may run local Python code to process your selected data file and create report output files.
The skill explicitly directs use of a local Python helper. This is expected for deterministic report generation and the included script is aligned with the stated purpose.
Use `scripts/generate_report.py` for deterministic report generation.
Use it in a project folder you trust, review the generated output path, and avoid running it on files you did not intend to process.
If the required Python packages are missing, the skill may fail or require you to install dependencies separately.
The helper relies on third-party Python packages, while no install specification or dependency declaration is provided. This is a setup/provenance notice rather than evidence of malicious behavior.
import matplotlib.pyplot as plt import pandas as pd
Install any needed Python packages from trusted package sources and consider using a virtual environment.
