Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Office Thumbnail Skill

ASecurity

Thumbnail grids and image conversion from Office files (PPTX/DOCX/XLSX) via LibreOffice and Poppler. Use for 'show me thumbnails' or visual review of document pages.

6 stars
0 votes
0 copies
0 views
Added 9/20/2026
designpythongobashcode-reviewdocumentation

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add darellchua2/opencode-config-template --skill office-thumbnail-skill --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Office Thumbnail Skill?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Office Thumbnail Skill
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/darellchua2-office-thumbnail-skill/badge)](https://www.skillsdirectory.com/skills/darellchua2-office-thumbnail-skill)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: office-thumbnail-skill
description: >-
  Thumbnail grids and image conversion from Office files (PPTX/DOCX/XLSX) via
  LibreOffice and Poppler. Use for 'show me thumbnails' or visual review of
  document pages.
license: Apache-2.0
compatibility: opencode
category: Office Utilities
---

## What I do

I convert Office files to images for **visual analysis** — thumbnail grids, individual page images, or PDF intermediates. This is the visual-review companion to the OOXML editing and slide-generation skills.

- **Thumbnail grids** — multi-page Office files → single grid image for quick overview (`thumbnail.py`)
- **PDF conversion** — Office file → PDF via headless LibreOffice (`soffice.py`)
- **Image conversion** — PDF pages → individual JPEG/PNG images via Poppler

## When to use me

Use this skill when the user wants:
- "Show me thumbnails" / "visual analysis of this deck"
- "Convert slides to images"
- "Generate a visual grid for review"
- Any task needing to visually inspect Office document pages

Also used internally by:
- `pptx-specialist-subagent` Stage 5 (visual verification via `image-analyzer-subagent`) — renders each generated slide to PNG for vision-model sizing verification
- `code-review-subagent` / `uiux-reviewer-subagent` — visual evidence capture

## Prerequisites

- **LibreOffice** (`soffice`) — headless PDF conversion
  ```bash
  sudo apt-get install libreoffice
  ```
- **Poppler** (`pdftoppm`) — PDF to image conversion
  ```bash
  sudo apt-get install poppler-utils
  ```
- **Python 3.9+**

## Workflow

### Thumbnail grid generation
```bash
python scripts/thumbnail.py presentation.pptx [output_prefix]
```
- Creates `thumbnails.jpg` (or `thumbnails-1.jpg`, `thumbnails-2.jpg` for large decks)
- Default: 5 columns, max 30 slides per grid (5×6)
- Custom columns: `--cols 4` (range 3-6)

### Convert to PDF (intermediate)
```bash
python scripts/soffice.py --headless --convert-to pdf presentation.pptx
```
The `soffice.py` wrapper handles the AF_UNIX socket restriction in sandboxed VMs.

### Convert PDF to images
```bash
pdftoppm -jpeg -r 150 presentation.pdf slide
```
Creates `slide-1.jpg`, `slide-2.jpg`, etc.

## Scripts

| Script | Purpose |
|--------|---------|
| `thumbnail.py` | Generate visual thumbnail grids from any Office file |
| `soffice.py` | LibreOffice wrapper — handles sandbox AF_UNIX socket restrictions |

## Use cases

- **Template analysis**: Quickly understand slide layouts and design patterns
- **Content review**: Visual overview of entire presentation
- **Quality check**: Verify all slides are properly formatted
- **Visual verification**: Render generated slides for `image-analyzer-subagent` sizing checks (BT-142 Phase 2.4b)
- **Documentation**: Include slide images in reports or PR reviews

Attribution

darellchua2darellchua2
View sourceMore from darellchua2 →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Responsive Design

Implement modern responsive layouts using container queries, fluid typography, CSS Grid, and mobile-first breakpoint strategies. Use when building adaptive interfaces, implementing fluid layouts, or creating component-level responsive behavior.

393432 votes

Mermaid Diagrams

Creating and refining Mermaid diagrams with live reload. Use when users want flowcharts, sequence diagrams, class diagrams, ER diagrams, state diagrams, or any other Mermaid visualization. Provides best practices for syntax, styling, and the iterative workflow using mermaid_preview and mermaid_save tools.

2032 votes

sleek-design-mobile-apps

Use when the user wants to design a mobile app, create screens, build UI, or interact with their Sleek projects. Covers high-level requests ("design an app that does X") and specific ones ("list my projects", "create a new project", "screenshot that screen").

5711 votes

swiftui-design-skill

SwiftUI frontend visual design skill. Creates beautiful, distinctive iOS/macOS interfaces that avoid generic AI slop patterns. Covers design direction, layout systems, typography, color, spacing, brand integration, and design review. Use when designing new SwiftUI views, reviewing UI quality, creating iOS prototypes, choosing visual styles, improving app aesthetics, or when the UI looks generic or AI-generated.

1801 votes

Ios Hig

Use when designing iOS interfaces, implementing accessibility (VoiceOver, Dynamic Type), handling dark mode, ensuring adequate touch targets, providing animation/haptic feedback, or requesting user permissions. Apple Human Interface Guidelines for iOS compliance.

761 votes
View all in design →