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.

What this means

The agent may run local Python code to process your selected data file and create report output files.

Why it was flagged

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.

Skill content
Use `scripts/generate_report.py` for deterministic report generation.
Recommendation

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.

What this means

If the required Python packages are missing, the skill may fail or require you to install dependencies separately.

Why it was flagged

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.

Skill content
import matplotlib.pyplot as plt
import pandas as pd
Recommendation

Install any needed Python packages from trusted package sources and consider using a virtual environment.