Skip to content

Releases: claude-world/notebooklm-skill

v1.2.2 — Disable unreliable infographic download

21 Mar 21:33

Choose a tag to compare

What changed

Infographic artifact type has been disabled across the entire stack. While generate_infographic() works in the underlying notebooklm-py library, download_infographic() relies on fragile API structure parsing that frequently fails or hangs.

Changes

  • MCP Server (tools.py): Infographic requests now return a clear error with guidance to use slides instead
  • CLI (notebooklm_client.py): Download method set to None, generate prints stderr warning
  • Pipeline (pipeline.py): Removed from default ARTIFACT_TYPES and all method maps
  • Documentation: Updated all references from "10 types" → "9 downloadable types" across SKILL.md, AGENTS.md, README (EN/ZH-TW), and api_surface.md

Migration

Replace any infographic usage with slides:

# Before (unreliable)
nlm_generate(notebook="X", type="infographic")

# After (reliable)
nlm_generate(notebook="X", type="slides")

Full Changelog: v1.2.1...v1.2.2

v1.2.1

17 Mar 05:29

Choose a tag to compare

Full Changelog: v1.2.0...v1.2.1

v1.2.0

16 Mar 21:54

Choose a tag to compare

What's Changed

  • feat: full 10-type artifact download + generate kwargs fix by @gn00295120 in #2

Full Changelog: v1.1.0...v1.2.0

v1.1.0

15 Mar 12:08
ab8e234

Choose a tag to compare

What's Changed

  • feat: v1.1.0 — pip install, MCP auto-discovery, Codex CLI, one-line installer by @gn00295120 in #1

New Contributors

Full Changelog: v1.0.0...v1.1.0

v1.0.0 — NotebookLM Research-to-Content Pipeline

13 Mar 21:07

Choose a tag to compare

notebooklm-skill v1.0.0

Open-source Research → Content pipeline: NotebookLM does the research, Claude writes the content.

Features

  • 4-phase pipeline: Ingest → Synthesize → Create → Publish
  • 11 CLI commands + 13 MCP tools
  • 10 artifact types (articles, social posts, newsletters, podcasts, videos)
  • Browser-based NotebookLM authentication (no API key needed)
  • Integration with trend-pulse and threads-viral-agent
  • Bilingual documentation (EN + ZH-TW)

Quick Start

git clone https://github.com/claude-world/notebooklm-skill.git
pip install -r requirements.txt
playwright install chromium

Full documentation: README.md