Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

ia-presenteria 主持人

Agent Skill

ia-presenter 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

353

周安装

15

GitHub Stars

1

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/spm1001/claude-suite --skill ia-presenter

简介

ia-presenter 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕仓库状态和变更进行整理。

  • 适用于需要查询提交历史、分支状态或协作事项的场景,如代码审查和版本管理。
  • Agent 可返回仓库概览、变更摘要和协作建议,供进一步操作参考。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

iA Presenter Markdown

Write and edit markdown files for iA Presenter, which generates beautiful slides from plain text.

What is iA Presenter?

iA Presenter is a macOS/iOS/iPadOS app from Information Architects (iA) — the same company that makes iA Writer. It takes markdown files and renders them as presentation slides with automatic responsive layout. The app emphasizes story-first presentation design: you write your script, and the design adapts to your content rather than forcing content into templates.

Key differentiator: visible/speaker notes separation is controlled by indentation, not by a separate notes panel. This means your markdown file contains both what you show and what you say, distinguished only by whether lines are tab-indented.

The Core Insight: Visible vs Speaker Notes

iA Presenter's key innovation is separating what the audience sees from what you say (speaker notes/teleprompter). This is controlled by indentation:

ElementVisibilityHow to Write
HeadingsALWAYS visible#, ##, ### at line start
Tab-indented textVisible on slide⇥Text here (literal tab character)
Plain paragraphsSpeaker notes onlyNo indent — audience never sees this
Images/videos/tablesVisible by defaultURL or path on its own line
ListsVisible only if tabbed⇥1. Item or ⇥- Item

The tab character is load-bearing. A leading tab makes body text visible to the audience. Without it, the text becomes speaker notes (shown in teleprompter, hidden from audience).

File Format

iA Presenter uses .iapresenter bundles (directories), not plain .md files:

MyPresentation.iapresenter/
├── assets/          # Images, media (optional)
├── info.json        # Metadata
└── text.md          # The markdown content

info.json template:

{
  "creatorIdentifier" : "net.ia.presenter",
  "net.ia.presenter" : {},
  "transient" : false,
  "type" : "net.daringfireball.markdown",
  "version" : 2
}

To create a new presentation programmatically:

  1. Create MyPresentation.iapresenter/ directory
  2. Create assets/ subdirectory (can be empty)
  3. Create info.json with the template above
  4. Create text.md with your markdown content

When to Use

  • Creating new presentations in iA Presenter format
  • Editing existing .presenter or .md files for iA Presenter
  • Validating that markdown will render correctly as slides
  • Converting standard markdown to iA Presenter format
  • Working in the iCloud~net~ia~presenter folder

When NOT to Use

  • Standard markdown files (no iA Presenter involvement)
  • PowerPoint or Google Slides (use pptx skill instead)
  • Reveal.js, Marp, or other slide frameworks (different syntax)
  • HTML/CSS slide decks

Slide Structure

Slide Separation

Content for slide 1

---

Content for slide 2

Three dashes (---) on their own line create a new slide.

Heading Hierarchy

# Title Slide Heading (H1 - largest)
## Section Heading (H2 - major sections)
### Content Heading (H3 - within slides)

Headings are ALWAYS visible. Use them for the key message the audience must see.

Basic Slide Pattern

### Visible Heading
	Visible subtitle or key point (TAB-indented)

Speaker notes go here without indentation. The audience never sees this.
You can write as much context as you need for yourself.

---

Text Visibility Examples

Title Slide

	Fast and Focused
# Main Title
	Subtitle line

This introductory paragraph is speaker notes - invisible to audience.

Result: Three visible lines stacked (subtitle, title, subtitle), with speaker notes in teleprompter.

Content Slide

### The Key Point
	The heart of a great presentation is the message. Get the script right before anything else.

Most presentation tools ask you to choose a design first. iA Presenter flips the process. You focus on what matters: your story.

Result: Heading + one visible paragraph. The longer explanation is speaker notes.

Multi-Column Layout

### Column One
	Description for the first column goes here.

### Column Two
	Description for the second column goes here.

Speaker notes for this slide.

Result: Auto-arranges as two columns side-by-side.

Visible Lists

### Table of Contents
	1. Write
	2. Structure
	3. Iterate
	4. Design
	5. Action

The numbered list above is visible because each line is tab-indented.

Images

Basic Image

https://example.com/image.jpg

Or a local path:
/Theme/image.webp

Images are visible by default. Just put the URL or path on its own line.

Image with Metadata

https://example.com/screenshot.png
x: left
y: top
title: "Caption text"

Available metadata:

  • x: — horizontal position: left, center, right
  • y: — vertical position: top, center, bottom
  • size: — sizing: contain, cover
  • background:true to place behind other elements
  • filter:lighten, darken, grayscale, sepia, blur
  • opacity:0% to 100%
  • title: — caption/alt text

Image Captions with H4

#### Caption introducing the image

/assets/photo.jpg

Or image first, caption below:

/assets/photo.jpg

#### Caption below the image

Multiple Images (Grid)

https://example.com/image1.jpg

https://example.com/image2.jpg

https://example.com/image3.jpg

https://example.com/image4.jpg

These images auto-arrange into a grid layout.

Image + Text Layout

### Heading on Left
	Visible description text that appears alongside the image.

https://example.com/image.png
x: right
y: top

Speaker notes explaining what we're showing.

Result: Text on left, image on right.

Inline Formatting

Standard markdown formatting works:

  • **bold**bold
  • *italic* — *italic*
  • ~~strikethrough~~ — strikethrough
  • ==highlight== — highlighted text
  • [link text](url) — hyperlinks
  • ` code ` — inline code
  • $x^2$ — inline LaTeX math
  • // comment — comment (only you see)

Common Patterns

Kicker (Small Text Above Title)

	Small kicker text
# Main Title
	Subtitle below

Tab-indented text directly above a title creates a "kicker" — small headline often seen above main titles.

Section Divider

## 1. Write
	Start With a Script

Brief visible tagline. Then your speaker notes expand on it below.

---

Quote/Callout Slide

	**Key insight in bold.** Additional visible context that supports the main point.

The rest of your speaking notes. Expand, give examples, tell stories.

Closing Slide

## Now go and move mountains.

Final thoughts in speaker notes. Link to resources: [How-To](https://ia.net/presenter/how-to)

Validation Checklist

When reviewing iA Presenter markdown:

  1. Tab characters exist — Visible body text MUST start with a literal tab (not spaces)
  2. Slides are separated--- between each slide
  3. One idea per slide — Keep slides focused
  4. Headings are concise — They're always visible; make them count
  5. Speaker notes are useful — Don't waste the teleprompter space
  6. Images have paths — URLs or local paths on their own lines

Common Mistakes

MistakeProblemFix
Spaces instead of tabsText won't be visibleUse literal tab character
Too much visible textStuffed slides bore audiencesMove detail to speaker notes
Missing ---Slides won't separateAdd --- between slides
Forgetting speaker notesWasting the teleprompterAdd context below visible content

Generating New Presentations

When creating iA Presenter markdown from scratch:

  1. Start with the story — Write the narrative first
  2. Identify key points — These become headings
  3. Decide what audience sees — Tab-indent only essential text
  4. Add speaker notes — Context, examples, transitions
  5. Add images last — URLs/paths with positioning metadata
  6. Review slide count--- separators should match intended slides

Example: Complete Slide

### Tell Your Story
	The heart of a great presentation is the message. Get the script right before anything else.

Most presentation tools ask you to choose a design and then adjust your story to fit it. iA Presenter flips the process.

Start with what you want to say. The design comes later, and it adapts to your content — not the other way around.

---

Visible to audience:

  • "Tell Your Story" (heading)
  • "The heart of a great presentation..." (tab-indented paragraph)

Speaker notes (teleprompter only):

  • "Most presentation tools ask you to choose..."
  • "Start with what you want to say..."

Layout Algorithm

Presenter auto-selects layouts based on:

  • Number of visual blocks (cells) in the slide
  • Types of graphics in each block
  • First heading level of each block
  • Order of blocks
ContentResult
2-3 elements separated by blank linesSide-by-side columns
4+ elementsGrid layout
H4 + imageCaption layout
Image with background: trueBackground image behind text

Cells: Content separated by blank lines goes into different cells. One element per cell usually looks better.

Anti-Patterns

PatternProblemFix
Spaces for indentationContent invisible on slidesMUST use literal tab characters
Missing --- separatorsSlides run togetherAdd --- between each slide
Empty speaker notesWasting teleprompter, no speaking contextAdd narrative below visible content
All-headings slidesHeadings are always visible — no notesBalance headings with tab-indented text
Skip validationBroken slides discovered during presentationTest in iA Presenter app before presenting
Create.md instead of.iapresenterWon't open correctly in appCreate bundle with text.md + info.json

Full Reference

See references/syntax-reference.md for complete documentation including:

  • All text formatting (highlight, superscript, subscript)
  • Footnotes and citations
  • LaTeX math
  • Code blocks with syntax highlighting
  • Tables
  • Custom themes and CSS classes
  • Layout CSS classes for theming

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.31%
按下载量换算44

Claude

30.2%
按下载量换算37

Cursor

18.32%
按下载量换算23

Gemini CLI

11.21%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills