PPT Layout Matcher
AdvisoryAudited by Static analysis on May 4, 2026.
Overview
No suspicious patterns detected.
Findings (0)
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 run Python code on the user's machine to generate layout recommendations.
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.
Execute the bundled script to get layout recommendations: ```bash python3 ppt_layout_matcher.py ```
Use it in a normal trusted workspace, and review the bundled script if you have strict local-code-execution requirements.
A user may need to install an external Python package before using the slide creation workflow.
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.
```bash pip install python-pptx ```
Install dependencies from trusted package sources, and consider pinning versions if using this in a controlled environment.
