Excel Studio

Security checks across malware telemetry and agentic risk

Overview

This appears to be a coherent Excel-generation helper, with the main user-visible caution that it uses local Python commands and unpinned spreadsheet libraries.

This skill looks appropriate for creating Excel files. Before installing or using it, be aware that it may require installing Python packages and running generated Python locally; review those commands and avoid running them in directories where accidental file overwrites would matter.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

Installing the dependencies may fetch current package versions from the package index, which could behave differently in the future.

Why it was flagged

The skill documents installing external Python packages without version pins or an install spec. These packages are expected for Excel generation, but unpinned dependencies can change over time.

Skill content
dependencies: "pip install openpyxl xlwt"
Recommendation

Prefer pinned, reviewed dependency versions if using this in a sensitive environment.

#
ASI05: Unexpected Code Execution
Info
What this means

The agent may run a local Python script to create spreadsheet files on the user's machine.

Why it was flagged

The skill instructs use of a local Python here-document script to generate spreadsheets. This is central to the stated purpose and is disclosed, but it is still local code execution.

Skill content
```python
python3 << 'PYEOF'
import os
from openpyxl import Workbook
Recommendation

Review the generated command and output location before running it, especially when handling important or sensitive spreadsheet data.