Create Hook banner
omril321 omril321

Create Hook

Git community intermediate

Description

This repository demonstrates an experimental pipeline that automates Google NotebookLM to generate podcast audio from URLs, converts the audio to MP3, and optionally uploads an episode to RedCircle. It also includes an optional Monday.com integration to pick daily candidates.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Automated NotebookLM (Concept Prototype)

This repository demonstrates an experimental pipeline that automates Google NotebookLM to generate podcast audio from URLs, converts the audio to MP3, and optionally uploads an episode to RedCircle. It also includes an optional Monday.com integration to pick daily candidates.

Important: This project is a concept prototype intended for educational purposes. It automates interactions that may violate Google NotebookLM and RedCircle Terms of Use. Running this project is solely at your own risk and responsibility and should only be done after reviewing the relevant Terms of Use.

Features

  • Generate NotebookLM studio podcast for a given URL using notebooklm-py CLI
  • Download MP3 audio directly from NotebookLM
  • Upload MP3 to RedCircle as an episode (optional)
  • Monday.com integration to prepare items and select top candidates (optional)

Installation

  1. Clone the repository:
git clone https://github.com/omril321/automated-notebooklm.git
cd automated-notebooklm
  1. Install dependencies:
yarn install
  1. Set up the NotebookLM CLI:
# Install notebooklm-py CLI (requires Python 3.10+ and uv)
./scripts/setup-nlm.sh

# Authenticate with Google (opens browser for OAuth)
./scripts/nlm login

# Verify setup
./scripts/nlm list
  1. Create a .env file for optional integrations:
cp .env.example .env
  1. Edit the .env file (all settings are optional):
# Optional: RedCircle upload
RED_CIRCLE_USER=
RED_CIRCLE_PASSWORD=
PUBLISHED_PODCAST_NAME=

# Optional: Monday.com integration
MONDAY_API_TOKEN=
MONDAY_BOARD_URL=
MONDAY_EXCLUDED_GROUP_IDS=

Contributing & Discussions

This project is shared as a concept/prototype, so I’m not accepting code contributions right now. That said, I’d love to hear your thoughts and learn from your use cases. If you want to chat, brainstorm, or ask questions:

  • Open a GitHub Issue on this repo, or
  • Reach out via direct message

...