Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Wowerpoint

Turns a single document into a kawaii-styled NotebookLM slide-deck PDF plus a mobile share link.

Docs & OfficeIntermediate90,1397,846AI score 7/10Last updated: Aug 9, 2026

What it does

Takes exactly one source document, drives the notebooklm-py CLI to generate a slide deck, and writes the PDF next to the source as <stem>-slides.pdf.

  • Pre-flights auth (notebooklm auth check), creates the notebook, adds the source, and kicks off generation
  • Generation takes ~10 minutes, so it is handed to a background subagent while you immediately get the notebook URL to watch live
  • If WOWERPOINT_API_BASE, WOWERPOINT_VIEWER_BASE and WOWERPOINT_UPLOAD_TOKEN are exported, the PDF is uploaded and converted into a 9:16 mobile twin with a share URL
  • Uses a single-sentence kawaii prompt by default, or passes your own prompt through verbatim
  • Documents concrete failure modes: missing pip, missing Playwright, rate limits, wrong JSON envelope keys, non-existent --length long

Who it's for

  • Anyone who needs a long report turned into a presentable deck fast
  • NotebookLM users tired of clicking through the web UI
  • Teams that want a phone-friendly link to share internally
  • Writers who want dry documents rendered in a warm, friendly visual style

Examples

  1. "wowerpoint docs/q3-review.md" → produces the slide PDF and prints a share URL
  2. "Turn this research note into slides" → if the source is too thin, it writes a long-form doc first, then generates
  3. Reuse NOTEBOOK_ID / SOURCE_ID to re-render with a different prompt, skipping the upload wait

Caution: the source document is sent to Google NotebookLM. Confirm before uploading credentials, customer data, or unreleased product info.

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the plugin/skills/wowerpoint folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/wowerpoint/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/thedotmack/claude-mem.git /tmp/claude-mem && mkdir -p ~/.claude/skills && cp -r /tmp/claude-mem/plugin/skills/wowerpoint ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the repo: git clone https://github.com/thedotmack/claude-mem.git
  2. Copy just the skill: mkdir -p ~/.claude/skills && cp -r claude-mem/plugin/skills/wowerpoint ~/.claude/skills/
  3. Install uv if you don't have it (macOS: brew install uv).
  4. Install the NotebookLM CLI: uv tool install --with playwright --force notebooklm-py
  5. Install the browser engine: $(uv tool dir)/notebooklm-py/bin/playwright install chromium
  6. Install jq for JSON parsing (macOS: brew install jq).
  7. Run notebooklm login yourself in the terminal to finish Google OAuth — this step cannot be scripted.
  8. Optional: export WOWERPOINT_API_BASE, WOWERPOINT_VIEWER_BASE, and WOWERPOINT_UPLOAD_TOKEN in your shell profile to enable the mobile share link.
  9. Restart Claude Code and try: "wowerpoint <path/to/doc.md>".
View source on GitHubLicense: Apache-2.0