Install
openclaw skills install @fudanjx/notebooklm-pdf-cleanerCreate a presentation-ready copy of a NotebookLM-exported slide-deck PDF by masking the small visible NotebookLM footer badge at the bottom-right of each page. Use when the user wants a cleaner NotebookLM PDF export for sharing, presenting, or emailing. This skill is narrowly scoped to NotebookLM slide-deck PDFs and does not act as a general watermark-removal tool.
openclaw skills install @fudanjx/notebooklm-pdf-cleanerUse this skill for NotebookLM slide-deck PDFs that contain the small visible NotebookLM footer badge in the bottom-right corner.
The default behavior is intentionally narrow and safe:
*-clean.pdf copyIt does not remove arbitrary watermarks or redesign slides.
python3 {baseDir}/scripts/clean_notebooklm_pdf.py /path/to/input.pdf
By default it writes:
/path/to/input-clean.pdf
# Explicit output path
python3 {baseDir}/scripts/clean_notebooklm_pdf.py in.pdf --out out.pdf
# Inspect only (no output file written)
python3 {baseDir}/scripts/clean_notebooklm_pdf.py in.pdf --inspect
# Tune the bottom-right footer mask in PDF points (origin = bottom-left)
python3 {baseDir}/scripts/clean_notebooklm_pdf.py in.pdf --mask-x 1208 --mask-y 0 --mask-w 168 --mask-h 32
# Optional advanced hygiene flags
python3 {baseDir}/scripts/clean_notebooklm_pdf.py in.pdf --strip-metadata --strip-annots
--force is usedThe default mask is tuned for common 16:9 NotebookLM slide-deck exports:
mask-x = 1208mask-y = 0mask-w = 168mask-h = 32These values are scaled automatically for each page size.
*-clean.pdf