odp

odp is a skill for Claude Code from leiverkus/open-document-skills. It costs 73 tokens per session (6,115 once invoked), scanned A, original, MIT.

A tool for creating, reading, editing, converting, repairing, and inspecting OpenDocument presentations. An ODP file is an open presentation format similar to a PowerPoint file.

In plain words
What is it for?
It helps build branded presentations, extract text, preserve existing templates, convert between ODP and PowerPoint, and inspect slides as PDFs or images.
Why use it?
It handles presentation package details and format conversion while supporting checks of the rendered slides.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is zip -0 -X ../output.odp mimetype.

Part of the open-document-skills plugin — 4 skills shipped together

Good fit It helps build branded presentations, extract text, preserve existing templates, convert between ODP and PowerPoint, and inspect slides as PDFs or images.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/leiverkus/open-document-skills
agentmods
npx agentmods add skills/leiverkus/open-document-skills/odp

Made for: Claude Code.

Or install open-document-skills, the plugin that ships this one along with the rest of its 4 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for odp

README.md
[![agentmods](https://agentmods.dev/badge/skills/leiverkus/open-document-skills/odp/github.svg)](https://agentmods.dev/skills/leiverkus/open-document-skills/odp)
Your own site
<a href="https://agentmods.dev/skills/leiverkus/open-document-skills/odp"><img src="https://agentmods.dev/badge/skills/leiverkus/open-document-skills/odp/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for odp

Your own site · 80×15
<a href="https://agentmods.dev/skills/leiverkus/open-document-skills/odp"><img src="https://agentmods.dev/badge/skills/leiverkus/open-document-skills/odp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,115 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00073 $0.06115
Opus 5 $0.00036 $0.03057
Sonnet 5 $0.00015 $0.01223
Haiku 4.5 $0.00007 $0.00611

Measured 8d ago against content hash 5ad21df8ce2a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

odp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 24 executable files (scripts/add_animation.py, scripts/add_image.py, scripts/add_transition.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/odp/SKILL.md · 608 lines

How it starts

The opening of the file, as written. The whole thing — 608 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ODP creation, editing, and analysis

Overview

An .odp file is an OpenDocument ZIP package for presentations. Important package files:

  • mimetype - should be the first ZIP entry and stored uncompressed as application/vnd.oasis.opendocument.presentation
  • content.xml - slides, shapes, text boxes, images, speaker notes
  • styles.xml - presentation, drawing, and text styles
  • meta.xml - document metadata
  • settings.xml - application settings
  • META-INF/manifest.xml - package manifest
  • Pictures/... - embedded media

Quick Reference

Task Preferred approach
Create branded deck Start from an .odp template, clone slides/masters, edit XML
Create simple structured deck Generate ODP package XML directly
Convert PPTX/HTML/SVG to ODP Use LibreOffice only when the source already exists or interoperability requires it
Extract text Use scripts/extract_text.py or parse content.xml
Preserve template layout Edit the existing ODP package XML and media references
Visual QA Convert to PDF or slide images and inspect every slide

Tool Checks

Before starting a real ODP task, check available tools:

which pandoc

Resolve the LibreOffice command as described in docs/soffice-resolver.md.

LibreOffice is the preferred engine for ODP conversion and rendering. Pandoc is not a full ODP authoring or inspection tool.

Reading and Inspecting

For raw inspection:

unzip -l input.odp
python -m zipfile -e input.odp unpacked_odp

Slide content is usually in content.xml under draw:page elements. Extract text with an XML parser, keeping namespace handling explicit.

Bundled scripts for common inspection tasks:

# Extract visible slide text and speaker notes.
python scripts/extract_text.py input.odp
python scripts/extract_text.py input.odp --json

# Inspect package files, media references, slide metadata, notes, and master pages.
python scripts/inspect_package.py input.odp

Read the full file on GitHub · 608 lines

Files

What ships with it

38 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 608 lines · 73 tokens per session scan A 5ad21df8ce2a

Subscribe to this mod's changes

odp is a skill published in the GitHub repository leiverkus/open-document-skills (3 stars, last pushed 1mo ago), licensed MIT. It adds 73 tokens to every session and 6,115 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

pydicom

Use pydicom to read, inspect, write, transform, and safely preflight local DICOM datasets and pixel data. Applies to DICOM metadata, transfer syntaxes, compression plugins, frames, private elements, JSON, and bounded de-identification review.

K-Dense-AI/scientific-agent-skills · 56 tokens

venue-templates

Prepare journal manuscripts, conference papers, research posters, and grant documents using venue-specific formatting guidance and bundled LaTeX scaffolds. Use when selecting an official template, checking current page or anonymity rules, adapting academic writing to a venue, or inspecting a submission PDF.

K-Dense-AI/scientific-agent-skills · 57 tokens

xlsx

Create, edit, analyze, or convert Excel spreadsheets (.xlsx, .xlsm, .xltx) where the workbook file is the primary deliverable. Use for formulas, formatting, financial models, multi-sheet workbooks, and tabular cleanup exported to Excel. Also applies to .csv/.tsv when the user wants spreadsheet output. Do NOT use for…

K-Dense-AI/scientific-agent-skills · 94 tokens

convert-documents-to-markdown

Convert an attached Word document, presentation, spreadsheet, OpenDocument file, RTF, EPUB, CSV, or text-based PDF into local Markdown. Use when a message supplies a local attachment path that must be read without uploading it to an external parser.

nanocoai/nanoclaw · 57 tokens

baoyu-youtube-transcript

A tool for downloading the written captions, subtitles, chapter information, speaker labels, and cover image from a YouTube video using its URL or ID.

JimLiu/baoyu-skills · 107 tokens

pdf-design

Designs PDF reports and proposals from HTML with previews and branding. Use to create, export, or securely upload a PDF.

jamditis/claude-skills-journalism · 28 tokens