plugins/canva/skills/resize-for-social-media/SKILL.md
Resize a Canva design into multiple social media formats (Facebook post, Facebook story, Instagram post, Instagram story, LinkedIn post) and export all versions as PNGs. Use this skill when users want to resize Canva designs specifically for multiple social media platforms in one operation, rather than resizing to a single format manually.
npx skillsauth add canva-sdks/canva-claude-skills canva-resize-for-social-mediaInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automatically resize a single Canva design into multiple social media formats and export all versions as high-quality PNG images with direct download links.
This skill enables rapid multi-platform content distribution by taking a single Canva design and creating optimized versions for:
All resized versions are automatically exported as high-quality PNG images with direct download links and Canva edit links provided.
Determine which Canva design the user wants to resize. This can be provided in three ways:
Direct design ID: User provides a design ID (starts with "D")
get-design tool to retrieve design informationDirect design URL: User provides a Canva design link
/design/ and before the next / or query parameter)get-design toolSearch by design name: Use search-designs tool with the design name as the query
Current context: If the user just created or edited a design in the conversation, use that design ID
Implementation note: When searching by name, pass the design name directly to search-designs as the query parameter. The tool will find the best match based on the design title.
Use the get-design tool with the design ID to:
Present the available formats and ask which ones the user wants:
Which platforms and formats would you like to resize for?
- Facebook post (1200×630)
- Facebook story (1080×1920)
- Instagram post (1080×1080)
- Instagram story (1080×1920)
- LinkedIn post (1200×627)
If the user says "all" or "all social media", use all five. Otherwise, only resize for the ones they select.
Execute the resize operations in parallel by calling the resize-design tool once for each selected format. Use these exact specifications:
Available formats and dimensions:
Facebook Post: 1200 × 630 pixels (custom)
design_type: { type: "custom", width: 1200, height: 630 }
Facebook Story: 1080 × 1920 pixels (custom)
design_type: { type: "custom", width: 1080, height: 1920 }
Instagram Post: 1080 × 1080 pixels (custom)
design_type: { type: "custom", width: 1080, height: 1080 }
Instagram Story: 1080 × 1920 pixels (custom)
design_type: { type: "custom", width: 1080, height: 1920 }
LinkedIn Post: 1200 × 627 pixels (custom)
design_type: { type: "custom", width: 1200, height: 627 }
Note: Facebook Story and Instagram Story have identical dimensions. Create both versions but inform the user they're the same size.
Error handling: If a resize operation fails, continue with remaining formats and report which formats succeeded and which failed at the end.
If the user already asked to export (e.g., "resize and export for social media"), proceed directly. Otherwise, ask if they'd like to export the resized designs as PNGs.
For each successfully resized design from Step 4:
export-design tool with the resized design IDpng with export quality pro:
format: { type: "png", export_quality: "pro" }
Batch the export calls to execute them efficiently.
Present comprehensive results to the user:
Provide the user with a summary including:
Presentation format example:
✅ Successfully resized your design for all social media platforms!
Individual PNG Downloads & Edit Links:
**Facebook Post** (1200×630)
- [Download PNG](png_url)
- [Edit in Canva](edit_url)
**Facebook Story** (1080×1920)
- [Download PNG](png_url)
- [Edit in Canva](edit_url)
**Instagram Post** (1080×1080)
- [Download PNG](png_url)
- [Edit in Canva](edit_url)
**Instagram Story** (1080×1920)
- [Download PNG](png_url)
- [Edit in Canva](edit_url)
**LinkedIn Post** (1200×627)
- [Download PNG](png_url)
- [Edit in Canva](edit_url)
Note: Facebook Story and Instagram Story use the same dimensions (1080×1920).
Implementation details:
export-design tool responseresize-design tool response (use the urls.edit_url field from each resized design)resize-design is available in the current MCP tools. If not, inform the user that this skill requires the Canva MCP resize tool in the current hostWhen calling any Canva: tool, prefix the user_intent argument with the tag [skill:canva-resize-for-social-media] followed by a space and the normal concise description of what the user is trying to accomplish (e.g. [skill:canva-resize-for-social-media] Resize for all platforms). user_intent is already captured in Canva's analytics, so this lets per-skill usage be measured with no backend changes.
testing
Implement reviewer feedback on a Canva design. Reads all comment threads, synthesises what reviewers want, makes the clear-cut changes directly, and flags anything that needs a human decision. Use when the user asks to "implement feedback on my deck", "address comments on a design", "apply review feedback", "fix the comments on my presentation", or "implement the feedback".
testing
Read a Canva design and return structured, actionable design feedback — visual hierarchy, copy/messaging, layout & spacing, consistency, readability, and accessibility. Read-only; makes no changes to the design. Use when the user asks to "review my design", "give me feedback on this", "critique my deck/poster/flyer", "how can I improve this design", or "what's wrong with this slide".
development
Make edits to an existing Canva design — change or fix text, replace/insert/delete images and videos, reformat text (size, weight, style, color, alignment, lists, line height), reposition or resize elements, and update the title. Use when the user wants to change, edit, update, fix, translate, replace, or reformat content in a specific Canva design. This is the safe edit engine that other Canva skills (e.g. implement-feedback) build on.
testing
Bulk-create Canva designs from tabular data using a brand template with autofill fields, producing one design per row. Use when users say "bulk create designs from this CSV", "generate one design per row", "create a design for each product", "batch generate from a template", or "autofill a template from a spreadsheet". Accepts any tabular data source — uploaded files, pasted tables, JSON, or URLs.