slides-to-site

slides-to-site is a skill for Claude Code from psd401/psd-claude-plugins. It costs 73 tokens per session (1,983 once invoked), scanned A, original, MIT.

A conversion tool that turns a Google Slides presentation into a presentation page for the psd401.ai website.

In plain words
What is it for?
Use it to publish presentations from Google Slides by reading their contents and generating the matching website files.
Why use it?
It avoids manually copying slide content, collecting metadata, and creating the site's required markdown page and thumbnail files.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; names the AskUserQuestion tool.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/hagelk/non-ic-code/psd401.ai.

Part of the psd-productivity plugin — 38 skills, 1 command, 1 agent shipped together

Good fit Use it to publish presentations from Google Slides by reading their contents and generating the matching website files.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add psd401/psd-claude-plugins
Claude Code
/plugin install psd-productivity

Made for: Claude Code.

Or install psd-productivity, the plugin that ships this one along with the rest of its 38 skills, 1 command, 1 agent.

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 slides-to-site

README.md
[![agentmods](https://agentmods.dev/badge/skills/psd401/psd-claude-plugins/slides-to-site/github.svg)](https://agentmods.dev/skills/psd401/psd-claude-plugins/slides-to-site)
Your own site
<a href="https://agentmods.dev/skills/psd401/psd-claude-plugins/slides-to-site"><img src="https://agentmods.dev/badge/skills/psd401/psd-claude-plugins/slides-to-site/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 slides-to-site

Your own site · 80×15
<a href="https://agentmods.dev/skills/psd401/psd-claude-plugins/slides-to-site"><img src="https://agentmods.dev/badge/skills/psd401/psd-claude-plugins/slides-to-site.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,983 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00073 $0.01983
Opus 5 $0.00036 $0.00992
Sonnet 5 $0.00015 $0.00397
Haiku 4.5 $0.00007 $0.00198

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

Security

Grade A, and why

slides-to-site scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

4. Download it with curl:
plugins/psd-productivity/skills/slides-to-site/SKILL.md · 216 lines

How it starts

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

Slides to Site

Convert a Google Slides presentation into a psd401.ai presentation page. Reads the full presentation via gws slides, collects metadata from the user, and generates a properly formatted markdown file.

Constants

  • psd401.ai repo: /Users/hagelk/non-ic-code/psd401.ai
  • Presentations dir: /Users/hagelk/non-ic-code/psd401.ai/src/content/presentations/
  • Thumbnails dir: /Users/hagelk/non-ic-code/psd401.ai/public/images/thumbnails/

Workflow

Process each presentation URL the user provides. After each one, ask if they have more. When done, commit and push.

Step 1: Parse the Google Slides URL

Extract the presentation ID from the user-provided URL argument ($ARGUMENTS).

Supported URL formats:

  • https://docs.google.com/presentation/d/PRESENTATION_ID/edit → extract PRESENTATION_ID
  • https://docs.google.com/presentation/d/PRESENTATION_ID/pub → extract PRESENTATION_ID
  • https://docs.google.com/presentation/d/e/2PACX-.../pub → this is a published URL; extract the 2PACX-... portion after /e/
  • Just a bare presentation ID

Validate the extracted ID is non-empty. If no URL was provided, ask the user for one.

Step 2: Read the Presentation Content

Run:

gws slides presentations get --params '{"presentationId": "PRESENTATION_ID"}' --format json

Parse the JSON response to extract:

  • Title: from title field at the top level
  • All slide text: walk slides[].pageElements[].shape.text.textElements[].textRun.content and concatenate
  • Speaker notes: from slides[].slideProperties.notesPage.pageElements[].shape.text.textElements[].textRun.content

If gws fails with an auth error, tell the user:

Auth issue detected. Run: gws auth login -s slides,drive
Then try again.

Step 3: Ask User for Metadata

Use AskUserQuestion to collect all metadata in a single prompt. Show the extracted title as a default. Ask for:

I extracted the presentation content. Here's what I need from you:

**Title**: {extracted_title} (press Enter to keep, or type a new one)
**Date** the presentation was/will be given (YYYY-MM-DD):
**Presenters** (comma-separated names):
**Audience** (e.g., "PSD Community", "PSD Staff", "WTA Conference", "WSSDA Conference"):
**Type** (e.g., "School Board Presentation", "Public Workshop", "PD Session", "Conference Session"):
**Description** (1-2 sentences — or type "auto" and I'll generate one from the content):
**Slug** (kebab-case filename, suggested: {auto_slug}) — press Enter to accept or type a new one:

Read the full file on GitHub · 216 lines

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 · 216 lines · 73 tokens per session scan A 7493043d9405

Subscribe to this mod's changes

slides-to-site is a skill published in the GitHub repository psd401/psd-claude-plugins (2 stars, last pushed yesterday), licensed MIT. It adds 73 tokens to every session and 1,983 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

p5js

Use when users request: p5.js sketches, creative coding, generative art, interactive visualizations, canvas animations, browser-based visual art, data viz, shader effects, or any p5.js project.

NousResearch/hermes-agent · 20 tokens

webgl-particle-galaxy

A real-time particle galaxy — tens of thousands of additive-blended GPU points spiraling around a bright core, their orbits solved entirely in the vertex shader (from glVertexID), so the whole cloud draws in one call. Rendered as a single self-contained index.html. Use when the brief asks for a "particle field"…

nexu-io/open-design · 126 tokens

webgl-liquid-metal

A real-time liquid-metal shader — a domain-warped noise field shaded as molten chrome, with a sweeping specular highlight over an iridescent thin-film (cosine-palette) sheen. No textures. Rendered as a single self-contained index.html. Use when the brief asks for "liquid metal", "molten chrome", "iridescent"…

nexu-io/open-design · 121 tokens

webgl-horizontal-parallax

A horizontal-scroll WebGL gallery (Three.js): frames glide sideways with lerp smoothing and each image parallaxes its texture (UV shift) by its position in the viewport.

nexu-io/open-design · 41 tokens

webgl-aurora-veil

A self-contained WebGL2 hero: layered aurora light curtains warped over a night sky scattered with stars; move the cursor to sway the veil.

nexu-io/open-design · 38 tokens

remotion-to-hyperframes

Port an existing Remotion (React) composition's source to HyperFrames HTML. Use ONLY on an explicit ask to port/convert/migrate/translate a Remotion source — one-way, Remotion-only. A passing Remotion mention, reference-only code, or "make something like my Remotion video" is a fresh build (/general-video). Unclear →…

heygen-com/hyperframes · 84 tokens