slide-authoring

slide-authoring is a skill for Claude Code, Codex from 1weiho/open-slide. It costs 163 tokens per session (6,078 once invoked), scanned A, original, MIT.

A reference guide for creating and editing presentation slides in an open-slide project. It covers slide files, layout, text, colours, images, speaker notes, and animations.

In plain words
What is it for?
Use it when writing or changing slide pages, including layouts, assets, notes, stepped reveals, page changes, and morph effects.
Why use it?
It gives slide edits a consistent structure and visual system, so one-off changes do not break the deck or require guessing the file format.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when writing or changing slide pages, including layouts, assets, notes, stepped reveals, page changes, and morph effects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/1weiho/open-slide/slide-authoring
About the project

open-slide is a React-based slide framework that lets coding agents create presentations from natural-language descriptions. It provides the canvas, scaling, navigation, hot reload, and presentation mode while agents write the slide components. The catalogue skills and instructions support agent-based slide authoring and revision.

1weiho/open-slide · 7,459 stars · on GitHub · open-slide.dev

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add 1weiho/open-slide --skill slide-authoring
Clone the repo
git clone --depth 1 https://github.com/1weiho/open-slide

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for slide-authoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/1weiho/open-slide/slide-authoring/github.svg)](https://agentmods.dev/skills/1weiho/open-slide/slide-authoring)
Your own site
<a href="https://agentmods.dev/skills/1weiho/open-slide/slide-authoring"><img src="https://agentmods.dev/badge/skills/1weiho/open-slide/slide-authoring/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for slide-authoring

Your own site · 80×15
<a href="https://agentmods.dev/skills/1weiho/open-slide/slide-authoring"><img src="https://agentmods.dev/badge/skills/1weiho/open-slide/slide-authoring.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 163 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,078 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00163 $0.06078
Opus 5 $0.00081 $0.03039
Sonnet 5 $0.00033 $0.01216
Haiku 4.5 $0.00016 $0.00608

Measured 9d ago against content hash 72856cae99bb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

slide-authoring scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/core/skills/slide-authoring/SKILL.md · 374 lines

How it starts

The opening of the file, as written. The whole thing — 374 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Authoring open-slide pages

This skill is the technical reference for everything that happens inside slides/<id>/index.tsx. It does not own a workflow:

  • create-slide owns "draft a new deck" — it asks the user scoping questions, then delegates the how to this skill.
  • apply-comments owns "process inspector markers" — it finds markers and applies edits, but the edits themselves follow the rules here.
  • current-slide resolves deictic references ("this page", "the slide I'm on") to a concrete slideId + pageIndex. Consult it first when the user references the current slide without naming it, then come back here for how to edit it.
  • Any ad-hoc slide edit (manual tweak, one-off fix) should also consult this skill before touching the file.

When any of those paths reach the point of writing React code for a page, this is the source of truth. Do not duplicate the knowledge below into other skills — link here instead.

Primitive references

Each framework primitive has a full reference file under references/ in this skill — contract, worked examples, and its own anti-patterns. This file keeps only the always-on rules and a short summary per primitive. Read the relevant reference file before using a primitive on a page:

Primitive Read before File
design const + var(--osd-X) tokens writing any new slide (default baseline) references/design-system.md
Assets + <ImagePlaceholder> importing images/videos or leaving a placeholder references/assets.md
Webfonts loading any non-system font references/webfonts.md
useSlidePageNumber() rendering a page-number footer references/page-numbers.md
<Steps> / <Step> staging a page's reveal references/steps.md
SlideTransition declaring any enter/exit animation references/transitions.md
MorphElement + morph morphing a shared element across pages references/morph.md

Hard rules

  • Put the slide under slides/<kebab-case-id>/.
  • Entry is slides/<id>/index.tsx. Images/videos/fonts go under slides/<id>/assets/.
  • Do not touch package.json, open-slide.config.ts, or other slides.
  • Do not add dependencies. Only react, @open-slide/core, and standard web APIs are available.
  • A slide is one index.tsx plus assets/ — nothing else. Do not create sibling .tsx/.ts files (Card.tsx, components/, helpers.ts, etc.); helper components and constants go inside index.tsx. Do not create README.md or other prose files either — speaker notes / a talk script belong in the notes export (see Speaker notes below), not in a markdown file.

Read the full file on GitHub · 374 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 374 lines · 163 tokens per session scan A 72856cae99bb

Subscribe to this mod's changes

slide-authoring is a skill published in the GitHub repository 1weiho/open-slide (7,459 stars, last pushed yesterday), licensed MIT. It adds 163 tokens to every session and 6,078 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

tmux

Remote-control tmux sessions for interactive CLIs by sending keystrokes, capturing pane output, and managing terminal multiplexer windows. Enables parallel coding-agent orchestration, background process management, and REPL interaction via sockets. Use when the agent needs to launch, monitor, or coordinate…

elizaOS/eliza · 87 tokens

notion-to-blog

Transfer a blog post from Notion to the Wasp blog. Fetches content, downloads and optimizes images, and creates a properly formatted MDX file.

wasp-lang/wasp · 37 tokens

channels-setup

Use when a developer wants to build their first CopilotKit Channels agent and get it answering in Slack or Microsoft Teams — "set up a channel", "connect my agent to Slack", "get my agent into Teams", or starting from nothing and wanting a working channel end to end. Covers the whole path: inspecting or scaffolding…

CopilotKit/CopilotKit · 147 tokens

things-mac

Manage Things 3 via the things CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database). Use when a user asks Otto to add a task to Things, list inbox/today/upcoming, search tasks, or inspect projects/areas/tags.

elizaOS/eliza · 67 tokens

obsidian

Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli. Use when the user asks about notes, vault management, PKM, knowledge base organization, wikilinks, or personal knowledge management in Obsidian.

elizaOS/eliza · 53 tokens

computer-use

Read and drive native desktop applications through the accessibility layer — list on-screen apps, snapshot one window as a numbered element tree, then click / type / set a value / scroll / drag / run a named action, by element index or by screen coordinates. Use for work in a desktop app rather than a web page. Full…

kirodotdev/KiroCrew · 105 tokens