Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

canva-presentation-time-fittingCanva presentation time fitting 搜索

Agent Skill

canva-presentation-time-fitting 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

297

周安装

12

GitHub Stars

28

下载量

93
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:canva-presentation-time-fitting(Canva presentation time fitting 搜索)
来源仓库:https://github.com/canva-sdks/canva-claude-skills
仓库路径:skills/canva-presentation-time-fitting
安装命令:
npx skills add https://github.com/canva-sdks/canva-claude-skills --skill canva-presentation-time-fitting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/canva-sdks/canva-claude-skills --skill canva-presentation-time-fitting

简介

canva-presentation-time-fitting 依据目标演讲时长调整演示文稿,仅通过讲稿控制节奏。

  • 读取现有文本定位重点,合理分配各页时间配额,优化整体流畅度。
  • 保持原文字不变,仅增删讲稿内容,确保视觉一致性不受干扰。
  • 首次使用前需确认设计ID有效性,长文档建议分段验证稳定性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Presentation Time-Fitting

Take an existing Canva presentation and align it with a target speaking duration using presenter notes only. Visible on-slide text is read for context and timing, but must not be changed by this skill. The flow is: confirm design + total duration (before cloning), read slide text, divide time across slides, add, replace, or trim speaker notes per slide to match each slot, write notes only back via Canva editing tools.

Primary workflow (time-balanced presenter notes)

Step 1: Collect design and duration (before other Canva tool calls)

  • Gather everything you need before calling Canva:resize-design, Canva:get-design-content or other editing/content tools:

- Design: link (canva.link), full Canva URL, design ID, or design name (see Step 2 for how each maps to design_id) - Total speaking time for delivering the deck (e.g. "15 minutes", "45 min", "1 hour"). Parse to total seconds (or minutes as a decimal). If the user is vague, confirm the total minutes they want for speaking through the slides (include Q&A in that total only if they say so)

  • If either design or duration is missing, ask and wait before proceeding

Step 2: Resolve the design

  • If the user provides a short link (canva.link), call Canva:resolve-shortlink to get the design URL
  • If the user provides a full Canva URL, extract the design ID (https://www.canva.com/design/{design_id}/...)
  • If the user provides a design ID directly (typically starts with D, e.g. DABcd1234ef), use it as design_id; do not use Canva:search-designs for a raw ID
  • If the user provides a design name (not an ID), use Canva:search-designs; if multiple matches, ask for clarification
  • If you still cannot resolve a design, ask for the design ID or link

Step 3: Work on a copy (required)

  • Use Canva:resize-design with the same dimensions as the source to clone the presentation; do not modify the original

Step 4: Read slide content

  • Call Canva:get-design-content on the copy to extract visible text per slide/page (headings, bullets, body)
  • Build a per-slide summary: slide index or title, text content, and whether speaker notes already exist if the payload includes them
  • Slide count = number of content-bearing pages from this response (use for the division in Step 5)

Step 5: Calculate time per slide

  • Target speaking time per slide = total_duration ÷ number_of_slides (equal split unless the user asks to weight title/closing differently; then adjust and state the assumption)
  • Derive a word budget per slide using ~150 words/minute as a guide: target_words ≈ (target_minutes_per_slide) × 150 (floor/round sensibly; treat as guidance, not a hard cap)
  • Show the user a small table: slide count, total duration, seconds (or mm:ss) per slide, approximate word budget per slide

Step 6: Generate speaker notes (in this session)

  • Generate the notes directly in this response; no external API call is required. For each slide, using that slide’s text from Step 4 plus the per-slide time/word budget from Step 5, compose presenter notes (this is the only content you may author or edit for timing):

- Aim to fill roughly the allocated time when spoken aloud - Expand thin slides with context, transitions, and delivery cues in the notes; shorten notes if the budget is small (do not shorten on-slide text) - Stay faithful to the slide’s visible messages; do not invent facts

  • If a slide is visual-heavy with little text, write notes that describe what to say about the visual in the allotted time

Step 7: Write notes back to Canva

  • Call Canva:get-design-pages on the copy to obtain page_id (or equivalent) for each slide that needs notes
  • Call Canva:start-editing-transaction on the copy if not already active; use the returned transaction_id for edits
  • Optional ordering: start the editing transaction soon after you have the copy’s design ID (e.g. right after Step 4 or right after get-design-pages) so the session is open before you spend a long time composing notes in chat; some environments time out less often when the transaction is not deferred. If the connector allows one long-lived transaction for the whole flow, prefer opening it once and reusing transaction_id for Step 7 edits
  • Call Canva:perform-editing-operations using only the operation type the Canva MCP exposes for presenter/speaker notes (name may vary by connector; use the schema for updating notes per page). Do not call replace_text, find_and_replace_text, or any operation that changes visible on-slide text. Apply all note updates, batched in as few calls as allowed
  • Call Canva:commit-editing-transaction to save

Step 8: Hand off

  • Share the link to the copy of the design and a one-line recap: total target time and per-slide time allocation
  • Remind the user that pace (~150 wpm) varies by speaker and that equal split is a default; they can ask for a different weighting in a follow-up

Scope: notes only

  • In scope: Read on-slide text via get-design-content. Create, update, lengthen, or shorten presenter/speaker notes only, using the MCP’s note operation per page.
  • Out of scope: Do not change visible slide content (replace_text, find_and_replace_text, formatting, media, layout, title, etc.). If the user asks to cut or pad the slides themselves, say this skill only adjusts notes; they can edit slides in Canva or use another skill/workflow.
  • Slide count: The API cannot add or remove pages. If the time target is unrealistic for the amount of on-slide material (e.g. 60 minutes of talking from two dense slides), say so and suggest splitting or simplifying slides in the editor, or revising the target duration. You may still write notes that acknowledge the squeeze (e.g. “prioritise X, skim Y”) without changing slide text.

When start-editing-transaction fails or times out

Cause (usually not the skill text): Canva or the MCP gateway can abort with *“The operation was aborted due to timeout”* when the design is large (many pages/assets), the network is slow, or servers are under load. That is an infrastructure / product limit, not something fixed by editing SKILL.md.

What to do in the session:

  1. Retry once Canva:start-editing-transaction after a short pause (e.g. 15–30 seconds). Transient failures often succeed on a second attempt.
  2. Open the transaction earlier in the flow (see Step 7 bullet) so a long note-generation stretch in chat does not sit between “ready to edit” and “start transaction.”
  3. If it still fails: tell the user clearly this is a Canva/MCP timeout, not a logic error in the skill. Suggest they try again later, use a stable network / VPN per org policy, or test on a smaller copy of the deck (fewer pages) to confirm the pipeline works.
  4. Fallback: paste the generated speaker notes into the chat grouped by slide (Slide 1: …, Slide 2: …) so the user can enter them manually in Canva’s presenter notes if automation keeps timing out.

Rules

  • Always clone with Canva:resize-design (same dimensions) before edits
  • Read with Canva:get-design-content; resolve page IDs with Canva:get-design-pages before writing notes
  • Primary path: confirm duration early → per-slide budget → generate notes → note-only perform-editing-operationscommit
  • Never edit on-slide text in this skill; only presenter/speaker notes (see Scope: notes only)
  • On start-editing-transaction timeout: retry once, then explain and offer the manual notes fallback (see When start-editing-transaction fails or times out)
  • Batch editing operations where possible

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.7%
按下载量换算33

Claude

28.36%
按下载量换算26

Cursor

19.06%
按下载量换算18

Gemini CLI

10.84%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills