Skip to content

Releases: keithce/notion-voice-notes

v1.0.1

02 Feb 17:34

Choose a tag to compare

Fixes

  • Fixed Linux binary compatibility with Alpine/musl-based Docker images (like n8n)
    • Changed build target from bun-linux-x64 to bun-linux-x64-musl

v1.0.0

02 Feb 16:27

Choose a tag to compare

Initial Release

A CLI tool to transcribe audio files and create Notion pages with AI summaries.

Features

  • Fast Transcription via Groq (free, fast) or OpenAI Whisper
  • AI Summarization with Claude (titles, summaries, key points, action items)
  • Automatic Notion Pages with structured content blocks
  • Large File Support with automatic chunking for files over 25MB
  • JSON Output for automation pipelines (n8n, Pipedream, etc.)
  • Standalone Binary - no runtime dependencies needed

Downloads

Platform Binary
macOS voice-to-notion
Linux voice-to-notion-linux
Windows voice-to-notion-windows.exe

Quick Start

# Download (macOS example)
curl -L https://github.com/keithce/notion-voice-notes/releases/download/v1.0.0/voice-to-notion -o voice-to-notion
chmod +x voice-to-notion

# Set environment variables
export ANTHROPIC_API_KEY=your-key
export NOTION_API_KEY=your-key
export NOTION_DATABASE_ID=your-db-id
export GROQ_API_KEY=your-key

# Run
./voice-to-notion recording.mp3

See README for full documentation.