pptx-toolkit
Audit PowerPoint (.pptx) decks for slide count, text density per slide, embedded images, embedded fonts, hidden slides, speaker notes presence, and animation density. Use when reviewing a board deck, sales deck, or conference talk before sending, or when the user mentions deck audit, pptx review, slide density, or speaker notes check.
What this skill does
# Pptx Toolkit Audit `.pptx` files using the standard library only — no `python-pptx` required. Reads OOXML directly via `zipfile` + `xml.etree`. --- ## Table of Contents - [Keywords](#keywords) - [Quick Start](#quick-start) - [Core Workflows](#core-workflows) - [Tools](#tools) - [Reference Guides](#reference-guides) - [Templates](#templates) - [Best Practices](#best-practices) --- ## Keywords pptx, PowerPoint, slide deck, presentation, board deck, sales deck, deck review, slide density, speaker notes, animation, hidden slides --- ## Quick Start ```bash python scripts/pptx_auditor.py deck.pptx ``` Outputs: slide count, hidden slide count, slides with speaker notes, words per slide (with per-slide breakdown), image and embedded-media count, animation node count, theme name. --- ## Core Workflows ### Workflow 1: Pre-Meeting Deck Review **Goal:** Catch the issues that make decks look unprofessional in the room — overstuffed slides, missing speaker notes, leftover hidden slides from prior versions. **Steps:** 1. Run audit 2. Slides with > 50 words → flag for content reduction 3. Slides without speaker notes for a board / investor deck → add notes or mark "intentionally bare" 4. Hidden slides → confirm they should ship hidden, or delete 5. Animation count > 100 across deck → likely over-animated; trim **Time Estimate:** 5-10 minutes per deck. ### Workflow 2: Board / Investor Deck Audit **Goal:** Hold a board / investor deck to a higher quality bar with a structured audit trail. **Steps:** 1. Run audit; export JSON for archival alongside the deck 2. Apply the rubric in `references/deck_density_rubric.md` 3. Flag slides over density caps; trim to one idea per slide 4. Pair with `cs-board-deck-builder` skill for narrative review **Time Estimate:** 30-60 minutes per board deck. ### Workflow 3: Pre-Conference Talk Deck Check **Goal:** Stage-ready deck — hidden / cut slides removed, speaker notes complete, animations rehearsable. **Steps:** 1. Audit; ensure slide count matches dry-run timing budget 2. Speaker notes coverage > 90% (for talks where you'll deliver from notes) 3. Animations under 50 across the talk (more invites timing accidents on stage) 4. Embedded video / audio: confirm present and play locally **Time Estimate:** 15 minutes pre-rehearsal. --- ## Tools ### pptx_auditor.py Reads a `.pptx` file as a ZIP archive and parses OOXML directly. No external dependencies. ```bash python scripts/pptx_auditor.py deck.pptx python scripts/pptx_auditor.py deck.pptx --json ``` **Reports:** - Slide count and hidden-slide count - Slides with speaker notes (count and percentage) - Words per slide (mean, max, full distribution) - Top-N densest slides - Image / embedded-media count - Animation timing node count - Theme name --- ## Reference Guides - **`references/deck_density_rubric.md`** — Words-per-slide guidance by deck purpose (board, sales, talk, training); animation philosophy; speaker-notes pattern --- ## Templates - **`assets/deck_handoff_checklist.md`** — Pre-meeting deck sign-off checklist --- ## Best Practices - **One idea per slide.** If you can't summarize the slide in one sentence, it has more than one idea. - **Speaker notes are documentation.** Slides without notes leave readers (post-meeting) guessing what the talk track was. - **Delete hidden slides before sending.** Hidden slides are often older versions left for "just in case" — they survive forever and leak narrative context. - **Animations are timing risk.** Every animation is a place where the live demo can desync from the speaker. --- ## Integration Points - Pairs with `c-level-advisor/board-deck-builder` for board / investor decks - Pairs with `marketing/launch-strategy` for launch-deck reviews - Used by `cs-pr-comms-lead` for press / partner decks
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.