A collection of Claude skills for working with OpenDocument Format (ODF) files. Compatible with the Claude web interface and Claude Code.
A set of Claude skills for creating, editing, and converting OpenDocument Format files. ODF is an open ISO standard used by LibreOffice, Google Docs, OpenOffice, and other software for text documents (.odt), presentations (.odp), spreadsheets (.ods), and more.
Written with Claude Code and Claude.ai. Nothing special — just putting this out there for the public benefit.
Patches welcome.
| Skill | Format | Description |
|---|---|---|
odt |
.odt |
Create, read, edit, and convert OpenDocument Text files |
odp |
.odp |
Create, read, edit, and convert OpenDocument Presentation files |
ods |
.ods |
Create, read, edit, and convert OpenDocument Spreadsheet files |
Download the zip for the skill you want from the latest release, then extract it to your personal skills directory:
unzip odt-skill.zip -d ~/.claude/skills/The skill will be available in all your Claude Code sessions automatically.
To install for a single project only, extract into .claude/skills/ inside that project instead.
First, ensure Code Execution and File Creation are enabled under Settings > Capabilities.
Then go to Customize > Skills, click +, choose Upload a skill, and upload the zip. The skill will be available across all your conversations automatically.
make odt-skill.zipTag a commit to trigger an automatic GitHub Release with all skill zips attached:
git tag v1.0.0
git push origin v1.0.0- Create a directory named after the format (e.g.,
odp/) - Add
odp/SKILL.mdfollowing the same structure asodt/SKILL.md - Add any helper scripts under
odp/scripts/ - Add
odpto theSKILLSlist inMakefile - Commit, tag, and push