PPT Layout Matcher

PassAudited by ClawScan on May 4, 2026.

Overview

This skill appears to be a local PowerPoint layout recommender with purpose-aligned Python use and no evidence of credential access, exfiltration, persistence, or destructive behavior.

This skill looks safe for its stated purpose. Before installing, be aware that it may run local Python code and may require installing python-pptx; use trusted package sources and review the script if your environment restricts local code execution.

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 skill may run Python code on the user's machine to generate layout recommendations.

Why it was flagged

The skill explicitly asks the agent or user to execute bundled local Python code. This is expected for a local layout matcher and is not hidden, but it is still local code execution.

Skill content
Execute the bundled script to get layout recommendations:

```bash
python3 ppt_layout_matcher.py
```
Recommendation

Use it in a normal trusted workspace, and review the bundled script if you have strict local-code-execution requirements.

What this means

A user may need to install an external Python package before using the slide creation workflow.

Why it was flagged

The README documents a third-party Python dependency for PPT creation, but the registry metadata/install spec does not declare dependencies or pin package versions.

Skill content
```bash
pip install python-pptx
```
Recommendation

Install dependencies from trusted package sources, and consider pinning versions if using this in a controlled environment.