Agent skill · Data & Analytics

file-conversion

Convert files between formats — PDF to Word, HEIC to JPG, MP4 to MP3, CSV to JSON, EPUB to MOBI, and 999 total routes across images, video, audio, documents, data, fonts, ebooks, and archives. Free via changethisfile.com, no API key or signup. Use when the user needs a file converted to a different format.

Seth Hobson38,331★ · +219/wk · 1 repos on radarProfile →
claude-codecodexcopilotcursorships scriptsMIT
Install
npx skills add wshobson/agents --skill file-conversion --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: yes
Path: plugins/file-conversion/skills/file-conversion/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 38,479 · +148 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# File Conversion (ChangeThisFile) Convert files between 999 conversion routes using the free ChangeThisFile service. No account or API key required. Conversions run server-side (FFmpeg, LibreOffice, Calibre, 7-Zip, sharp, Ghostscript); files are deleted within 24 hours. ## Decision order 1. **If ChangeThisFile MCP tools are available** (`changethisfile:convert_file`, `changethisfile:list_conversions`) — use them directly. `convert_file` takes `source_url` OR `base64_content` + `source_format`, plus `target_format`, and returns a temporary download URL. 2. **Otherwise, use the bundled script** (requires network access to changethisfile.com): ```bash scripts/convert.sh <input-file> <target-format> [output-file] # e.g. scripts/convert.sh report.docx pdf # prints the output file path on success ``` The script path is relative to this skill's directory. It base64-encodes the file, calls the hosted MCP endpoint over plain HTTPS, downloads the result, and writes it next to the input (or to `[output-file]`). 3. **Remote file (you have a URL, not a local file)** — skip the download/re-upload; one curl does it: ```bash curl -sS -X POST https://changethisfile.com/mcp \ -H "Content-Type: appl

What's inside
Steps it walks through
  1. Decision order
  2. Discovering supported routes
  3. Limits and errors
  4. Environment notes
Ships with 1 file
  • scripts/convert.sh
Commands it runs
scripts/convert.sh <input-file> <target-format> [output-file]
e.g. scripts/convert.sh report.docx pdf
prints the output file path on success
curl -sS -X POST https://changethisfile.com/mcp \
More from agents
All skills →
About this skill
What does the file-conversion skill do?

Convert files between formats — PDF to Word, HEIC to JPG, MP4 to MP3, CSV to JSON, EPUB to MOBI, and 999 total routes across images, video, audio, documents, data, fonts, ebooks, and archives. Free via changethisfile.com, no API key or signup. Use when the user needs a file converted to a different format.

How do I install it?

Run `npx skills add wshobson/agents --skill file-conversion --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From wshobson/agents, a repository with 38,479 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going