ワンクリックで
format-converter
Convert files between formats. Use for Document conversion, Image format conversion, and Audio/Video format conversion.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Convert files between formats. Use for Document conversion, Image format conversion, and Audio/Video format conversion.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | format-converter |
| description | Convert files between formats. Use for Document conversion, Image format conversion, and Audio/Video format conversion. |
| metadata | {"displayName":"Convert Master","icon":"play.tv.fill","color":"pink","placeholder":"Upload a file to convert"} |
Run format conversion commands in the local VM environment by default. Do not perform conversion work on local macOS or a cloud VM unless the user explicitly asks for that environment.
| Task | Tool | Reference |
|---|---|---|
| Document conversion | pandoc | document-convert.md |
| Image format conversion | Python (Pillow) | image-convert.md |
| Audio/video conversion | ffmpeg | av-convert.md |
Read references/document-convert.md for detailed workflow.
Key points:
--pdf-engine=weasyprint (lightweight, auto-installed)# PDF from markdown
pandoc input.md -o output.pdf --pdf-engine=weasyprint
# DOCX from HTML
pandoc input.html -o output.docx
Read references/image-convert.md for detailed workflow.
Key points:
Image.LANCZOS for any resize operation (prevents color banding/aliasing)# Dependencies
apt install python3-pil python3-pillow-heif
Read references/av-convert.md for detailed workflow.
Key points:
-c copy when only changing container format (fast, lossless)flags=lanczos in scale filters for best quality-crf for quality-based encodingCheck ffmpeg available before using it.
Create user-facing App Store release notes by collecting and summarizing all user-impacting changes since the last git tag (or a specified ref). Use when asked to generate a comprehensive release changelog, App Store "What's New" text, or release notes based on git history or tags.
Analyze Bridge agent execution logs from ~/.bridge/sessions, reconstruct the agent's actual runtime behavior, and explain tool execution, failures, retries, and artifacts from persisted session files.
End-to-end GitHub issue fix workflow using gh, local code changes, builds/tests, and git push. Use when asked to take an issue number, inspect the issue via gh, implement a fix, run XcodeBuildMCP builds/tests, commit with a closing message, and push.
Analyze and optimize React component performance issues (slow renders, re-render thrash, laggy lists, expensive computations). Use when asked to profile or improve a React component, reduce re-renders, or speed up UI updates in React apps.
Swift Concurrency review and remediation for Swift 6.2+. Use when asked to review Swift Concurrency usage, improve concurrency compliance, or fix Swift concurrency compiler errors in a feature or file.
Expert guidance on Swift Concurrency best practices, patterns, and implementation. Use when developers mention: (1) Swift Concurrency, async/await, actors, or tasks, (2) "use Swift Concurrency" or "modern concurrency patterns", (3) migrating to Swift 6, (4) data races or thread safety issues, (5) refactoring closures to async/await, (6) @MainActor, Sendable, or actor isolation, (7) concurrent code architecture or performance optimization, (8) concurrency-related linter warnings (SwiftLint or similar; e.g. async_without_await, Sendable/actor isolation/MainActor lint).