Wowerpoint
Turns a single document into a kawaii-styled NotebookLM slide-deck PDF plus a mobile share link.
Docs & OfficeIntermediate★ 90,139⑂ 7,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_BASEandWOWERPOINT_UPLOAD_TOKENare 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
- "wowerpoint
docs/q3-review.md" → produces the slide PDF and prints a share URL - "Turn this research note into slides" → if the source is too thin, it writes a long-form doc first, then generates
- Reuse
NOTEBOOK_ID/SOURCE_IDto 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal and clone the repo:
git clone https://github.com/thedotmack/claude-mem.git - Copy just the skill:
mkdir -p ~/.claude/skills && cp -r claude-mem/plugin/skills/wowerpoint ~/.claude/skills/ - Install
uvif you don't have it (macOS:brew install uv). - Install the NotebookLM CLI:
uv tool install --with playwright --force notebooklm-py - Install the browser engine:
$(uv tool dir)/notebooklm-py/bin/playwright install chromium - Install
jqfor JSON parsing (macOS:brew install jq). - Run
notebooklm loginyourself in the terminal to finish Google OAuth — this step cannot be scripted. - Optional: export
WOWERPOINT_API_BASE,WOWERPOINT_VIEWER_BASE, andWOWERPOINT_UPLOAD_TOKENin your shell profile to enable the mobile share link. - Restart Claude Code and try: "wowerpoint <path/to/doc.md>".
View source on GitHub ↗License: Apache-2.0