PPT from Template
Analysis
This skill is coherent for generating PPTs from a reference template, but users should notice that it runs local conversion/generation tools and may retain template-derived files for reuse.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Generate PptxGenJS JavaScript applying extracted style. ... Run JS to produce `.pptx`.
The workflow includes executing generated JavaScript to build the presentation. This is central to the skill's purpose, but it is still local code execution users should expect.
os.path.expanduser("~/.openclaw/skills/pptx/scripts/office/soffice.py") ... cmd = [sys.executable] + cmdIf LibreOffice is not found on PATH, the converter may run a Python helper from another local skill path. This is purpose-aligned, but its provenance depends on that separately installed pptx skill/helper.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
elem["text_preview"] = text[:80] + ("..." if len(text) > 80 else "") ... elem["sample_cell"] = cell.text.strip()[:30]The extractor records short text and table previews from the reference presentation into style data. This supports semantic layout analysis, but generated YAML may contain snippets of the source template's content.
