Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

keynotekeynote 搜索

Agent Skill

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

总安装

250

周安装

10

GitHub Stars

公开资料未说明

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/principalwater/pretty-agent-skills --skill keynote

简介

keynote 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 注意该技能属于研究检索类,实际功能以源码和文档为准。

SKILL.md

Keynote Skill

Quick Reference

TaskGuide
Read / analyze a .key deckpython scripts/keynote_tool.py inspect presentation.key --json
Dump text by slidepython scripts/keynote_tool.py dump-text presentation.key
Get slide countpython scripts/keynote_tool.py get-slide-count presentation.key
Read presenter notespython scripts/keynote_tool.py get-notes presentation.key --json
List master layoutspython scripts/keynote_tool.py list-masters presentation.key --json
Edit existing Keynote deckRead editing.md
Create deck from scratchRead creation.md
List available themespython scripts/keynote_tool.py list-themes
Export to PPTX / PDFpython scripts/keynote_tool.py export presentation.key --pptx out.pptx --pdf out.pdf
Render slide imagespython scripts/keynote_tool.py render-images presentation.key --out-dir rendered
Render specific slidespython scripts/keynote_tool.py render-images presentation.key --out-dir rendered --slides 3,6-8
Add a shapepython scripts/keynote_tool.py add-shape presentation.key --slide 4 --text "Kafka" --x 100 --y 200 --width 300 --height 55
Delete shape(s)python scripts/keynote_tool.py delete-shape presentation.key --slide 4 --shape 1 or --all
Delete image(s)python scripts/keynote_tool.py delete-image presentation.key --slide 6 --all
Style a shapepython scripts/keynote_tool.py style-shape presentation.key --slide 4 --shape 1 --fill "#EE7F01" --border "#000000"

Reading Content

# Inspect slide structure, layouts, and text item counts
python scripts/keynote_tool.py inspect presentation.key --json

# Dump text grouped by slide (includes layout names)
python scripts/keynote_tool.py dump-text presentation.key

# Quick slide count
python scripts/keynote_tool.py get-slide-count presentation.key

# Read presenter notes (all slides or specific)
python scripts/keynote_tool.py get-notes presentation.key --json
python scripts/keynote_tool.py get-notes presentation.key --slide 3

# List available master slide layouts (essential for template-based work)
python scripts/keynote_tool.py list-masters presentation.key --json

# Export for downstream tooling
python scripts/keynote_tool.py export presentation.key --pptx output.pptx --pdf output.pdf

Editing Workflow

Read editing.md for full details.

  1. Inspect slide structure with inspect and dump-text.
  2. Apply targeted edits with replace-text, set-text, format-text, or structural commands.
  3. Export to .pdf/.pptx and run visual/content QA.

Creating From Scratch

Read creation.md for full details.

Use when no template deck exists or when a new native .key deck is required. For template-based workflows (corporate templates), see the template section in creation.md.


Command Reference

CommandPurpose
inspectSlide count, layout names, and text-item inventory
dump-textHuman-readable text by slide with layout info
get-slide-countQuick slide count
get-notesRead presenter notes
set-notesWrite presenter notes
replace-textFind/replace text across all text items
set-textSet text of a specific text item on a specific slide
format-textSet font, size, and/or color of a text item
add-text-itemCreate a new text box on a slide with optional formatting
add-slideAdd a new slide (optional position and layout)
delete-slideDelete a slide by index
add-imageInsert an image on a slide with optional position/size
list-themesList available Keynote themes
list-mastersList master slide layouts in a document
createCreate a new empty Keynote document
exportExport .key to .pptx and/or .pdf
add-shapeCreate a shape (rectangle with text) on a slide
delete-shapeDelete shape(s) from a slide
delete-imageDelete image(s) from a slide
style-shapeApply fill/border color via GUI scripting (requires accessibility)
render-imagesSlide image rendering for QA (supports selective slides)

Design Guidelines

Color Strategy

  • Use 2-3 accent colors plus a neutral background.
  • Pick colors from the Keynote theme palette for consistency.
  • Ensure sufficient contrast between text and background (4.5:1 minimum).

Typography

ElementFont SizeWeight
Slide title36-44 ptBold
Section header28-32 ptBold
Body text18-24 ptRegular
Code blocks14-20 ptMonospace (Menlo, SF Mono)
Captions / footnotes12-14 ptRegular or Light
  • Limit each slide to 2 font families maximum.
  • Use the theme's default fonts unless there is a specific reason to override.
  • For code slides: use format-text --font "Menlo" --color "#FFFFFF" on Code master layouts.

Layout

  • Keep a 40-60 pt margin from all slide edges.
  • Align elements to a consistent grid.
  • Place one key idea per slide; avoid visual clutter.
  • Use visual elements (images, shapes, charts) on most slides to maintain engagement.

QA (Required)

  • Always export edited deck to .pdf and/or .pptx.
  • Verify text content after edits (dump-text or markitdown on exported .pptx).
  • Render slide images and inspect overlap, clipping, and spacing.
  • Use --slides to render only changed slides and conserve resources.
# Render all slides
python scripts/keynote_tool.py render-images presentation.key --out-dir rendered

# Render only specific slides (saves time and tokens)
python scripts/keynote_tool.py render-images presentation.key --out-dir rendered --slides 3,6-8

Limitations

  • Native .key editing requires macOS + Keynote.app.
  • Keynote automation is not truly headless; the app may still launch or briefly appear during operations.
  • Script avoids forced app focus (activate) to reduce UI interruption, but macOS may still surface windows.
  • Some master layouts have linked text items (e.g., Code layout links t1 and t3). Use add-text-item to create independent text boxes when needed.
  • style-shape uses GUI scripting via System Events and requires macOS accessibility permissions.
  • inspect now shows shape and image counts per slide.

Dependencies

  • Python 3.10+
  • macOS with Keynote.app
  • osascript
  • pdftoppm (optional, for image rendering)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.32%
按下载量换算27

Claude

31.67%
按下载量换算26

Cursor

19.39%
按下载量换算16

Gemini CLI

9.89%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills