🎨canva-edit-design
- プラグイン
- Canva
- ソース
- GitHub で見る ↗
説明
既存のCanvaデザインを編集する — テキストの変更や修正、画像・動画の置換・挿入・削除、テキストの再フォーマット(サイズ、ウェイト、スタイル、色、配置、リスト、行間)、要素の位置変更やリサイズ、タイトルの更新が可能です。 次のような場合に使用: ユーザーが特定のCanvaデザイン内のコンテンツを変更、編集、更新、修正、翻訳、置換、または再フォーマットしたい場合。これは他のCanva skillが構築する基盤となる安全な編集エンジンです(例:implement-feedback)。
原文を表示
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.
ユースケース
- ✓Canvaデザイン内のテキストを変更・修正したい
- ✓画像や動画を置換・挿入・削除したい
- ✓テキストのサイズやカラーなど書式を変更したい
- ✓デザイン要素の位置やサイズを調整したい
- ✓デザインのコンテンツを翻訳したい
本文
Canva Design Editing
The canonical, safe way to apply edits to an existing Canva design. Every Canva skill that mutates a design should follow this exact protocol: start a transaction → perform operations → commit (with approval). Changes are draft-only until committed and are PERMANENTLY LOST if not committed.
The Transaction Protocol (always these steps, in order)
Canva:start-editing-transaction— pass thedesign_id. Remember the returnedtransaction_idand thepagesarray; both are required by later calls. ALWAYS show the user the thumbnail(s) returned here.Canva:perform-editing-operations— apply edits. Pass thetransaction_id, thepagesarray from the previous response, thepage_indexof the first page being changed, and anoperationsarray. Batch multiple operations into a single call wherever possible.Canva:commit-editing-transaction— save. See the approval gate below. After committing, thetransaction_idis invalid; a new edit needs a new transaction.Canva:cancel-editing-transaction— discard the draft instead of saving (e.g. the user rejects the preview, or you opened a transaction only to inspect the design).
Capabilities — what the API CAN and CANNOT do
CAN (operations on perform-editing-operations)
- Text content:
replace_text(whole element),find_and_replace_text(substring) - Text formatting (
format_text): font size, weight (normal/bold), style (normal/italic), color, alignment, line height, underline, strikethrough, links, list level/marker - Media:
update_fill(replace image/video),insert_fill(add image/video),delete_element - Layout:
position_element,resize_element - Metadata:
update_title - Autofill mapping:
update_autofill_field(fixed-page designs only)
CANNOT
- Change font family/typeface (only size, weight, style)
- Add new text elements (you can only insert media, not new text boxes)
- Change background colors or gradients
- Add, remove, or reorder pages/slides
- Modify animations, transitions, or element opacity (except on newly inserted fills)
- Group/ungroup elements, or restyle shapes (only text inside shapes is editable)
When a requested change is in the CANNOT list, tell the user it must be done manually in the Canva editor — don't attempt a workaround.
Responsive pages — restricted operation set
Some pages come back marked is_responsive: true. On those pages, ONLY these operations are allowed:
update_title, replace_text, update_fill, delete_element, find_and_replace_text.
Before calling perform-editing-operations, check the pages array. If any operation targets a responsive page with an unsupported op (e.g. format_text, position_element, resize_element, insert_fill), do NOT make the call — tell the user that operation isn't supported on that page and offer an alternative.
The commit approval gate (required)
commit-editing-transaction makes changes permanent. You MUST show the user exactly what changed (and the preview thumbnail) and get explicit approval before committing — e.g. "Here's the preview. Save these changes to your design?" Wait for a clear yes.
- Do NOT commit without approval.
- Do NOT tell the user changes are saved before the commit call has succeeded.
- After a successful commit, give the user a direct link to open the design in Canva.
- If a commit fails, all changes are lost — start a new transaction to retry.
Note for composing skills: a skill that already collects a single up-front approval for a batch of changes (e.g.
canva-implement-feedback) should treat that approval as covering the commit and NOT ask again. Follow that skill's own confirmation rules; the gate above is the default for direct, ad-hoc edits.
Workflow
Step 1: Resolve the design
- Short link (
canva.link/...) →Canva:resolve-shortlinkto get the URL. - Full Canva URL → extract the design ID (the segment after
/design/). - Raw design ID (starts with
D) → use directly; do NOT search. - Nothing provided → ask for the design ID or link.
Step 2: Start the transaction and inspect
Call Canva:start-editing-transaction. Show the thumbnail(s). Use the returned content to locate the exact element_ids you need to target. (If you only needed to look, call cancel-editing-transaction and stop.)
Step 3: Build and perform operations
Translate the user's request into concrete operations. Confirm scope first when a find_and_replace_text string could match in multiple places or contexts — ask which instances they mean. Batch all operations into one perform-editing-operations call when you can.
Step 4: Preview and commit
Show the resulting thumbnail and a plain-language list of what changed. Ask for approval, then commit-editing-transaction. Share the edit link.
Rules
- Always remember and reuse the
transaction_idandpagesarray within a transaction. - Never leave a transaction uncommitted without telling the user their draft was discarded.
- For destructive ops (
delete_element, largefind_and_replace_text), confirm scope before performing. - Prefer one batched
perform-editing-operationscall over many small ones.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。