automating-powerpoint — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited automating-powerpoint (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
automating-mac-apps patterns.automating-mac-apps for permissions, shell, and UI scripting guidance.1) Discover dictionary terms in Script Editor (PowerPoint). 2) Prototype minimal AppleScript commands. 3) Port to JXA and add defensive checks. 4) Use explicit enums for save/export formats. 5) Use Excel interop for robust charting.
Create a new presentation with a title slide:
const powerpoint = Application('Microsoft PowerPoint');
const doc = powerpoint.documents[0] || powerpoint.documents.add();
const slide = doc.slides.add({index: 1, layout: powerpoint.slideLayouts['ppLayoutTitle']});
slide.shapes[0].textFrame.textRange.content = 'My Presentation';
doc.save({in: Path('/Users/username/Desktop/presentation.pptx')});automating-powerpoint/references/powerpoint-basics.md (core objects, application setup)automating-powerpoint/references/powerpoint-recipes.mdautomating-powerpoint/references/powerpoint-advanced.mdautomating-powerpoint/references/powerpoint-dictionary.mdautomating-powerpoint/references/powerpoint-charts.mdautomating-powerpoint/references/powerpoint-export-video.mdautomating-powerpoint/references/powerpoint-chart-copy.mdautomating-powerpoint/references/powerpoint-layouts.mdautomating-powerpoint/references/powerpoint-export-video-steps.mdautomating-powerpoint/references/powerpoint-deck-generator.mdautomating-powerpoint/references/powerpoint-chart-aware-deck.md~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.