Releases: claude-world/notebooklm-skill
Releases · claude-world/notebooklm-skill
v1.2.2 — Disable unreliable infographic download
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 useslidesinstead - CLI (
notebooklm_client.py): Download method set toNone, generate prints stderr warning - Pipeline (
pipeline.py): Removed from defaultARTIFACT_TYPESand 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
Full Changelog: v1.2.0...v1.2.1
v1.2.0
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
What's Changed
- feat: v1.1.0 — pip install, MCP auto-discovery, Codex CLI, one-line installer by @gn00295120 in #1
New Contributors
- @gn00295120 made their first contribution in #1
Full Changelog: v1.0.0...v1.1.0
v1.0.0 — NotebookLM Research-to-Content Pipeline
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 chromiumFull documentation: README.md