npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

granola-to-minutes

v0.4.3

Published

CLI migration tool that exports Granola meeting data — AI summaries, transcripts, and human notes — to Minutes-native markdown with YAML frontmatter

Readme

granola-to-minutes

exports to minutes npm version CI last commit license

CLI migration tool that exports Granola meeting data — AI summaries, transcripts, and human notes — to Minutes-native markdown with YAML frontmatter. Extracts structured action items and decisions via Claude. Designed for one-time bulk migration from Granola's server-side storage.

granola-to-minutes demo

Features

  • Full meeting data extraction: AI summaries, transcripts, human notes
  • Minutes-native markdown output with YAML frontmatter
  • Optional Claude-powered extraction of action items, decisions, and intents
  • Dry-run preview, single-meeting, and date-filtered exports
  • Machine-readable JSON output for scripting and AI agents
  • Atomic file writes with collision handling

Quick Start

| I need to... | Command | Details | |---|---|---| | Run full export | npx granola-to-minutes export | Usage | | Preview without writing | npx granola-to-minutes export --dry-run | Usage | | Export single meeting | npx granola-to-minutes export --note-id <uuid> | Usage | | Machine-readable output | npx granola-to-minutes export --json | Usage | | Run tests | pnpm test:cov | Testing | | Understand the code | See architecture | CLAUDE.md |

Prerequisites

  • Node.js >= 20
  • granola-cli (community-built, not affiliated with Granola Labs) — pnpm add -g granola-cli && granola auth login
  • Claude Code (optional) — for structured extraction of action items, decisions, and intents from AI summaries

Install

Run directly without installing (recommended for one-time use):

npx granola-to-minutes export

Or install globally:

npm install -g granola-to-minutes    # npm
pnpm add -g granola-to-minutes       # pnpm

From source

git clone https://github.com/calvindotsg/granola-to-minutes.git
cd granola-to-minutes
pnpm install
pnpm build

Usage

Commands below assume global install. Prefix with npx if running without installing.

# Full export to ~/meetings/
granola-to-minutes export

# Dry run (preview without writing)
granola-to-minutes export --dry-run

# Skip LLM extraction
granola-to-minutes export --skip-llm

# Single meeting by UUID (prefix match)
granola-to-minutes export --note-id <uuid>

# Only recent meetings
granola-to-minutes export --since 2026-03-01

# Verbose logging
granola-to-minutes export --verbose

# Machine-readable JSON output (for AI agents and scripts)
granola-to-minutes export --json

Commands Reference

| Command | Purpose | |---|---| | pnpm build | Compile TypeScript | | pnpm check | Lint with Biome | | pnpm test | Run test suite | | pnpm test:cov | Run tests with coverage (75% threshold) | | pnpm test:watch | Run tests in watch mode | | pnpm format | Auto-format source files |

Output Format

Each meeting produces a markdown file with YAML frontmatter compatible with Minutes:

---
title: Weekly Sync
type: meeting
date: '2026-03-17T14:30:00+08:00'
duration: 30m
source: granola-reimport
status: complete
attendees:
  - Alice Smith
  - Bob Jones
people:
  - John Smith
  - Alice Smith
  - Bob Jones
speaker_map:
  - speaker_label: SPEAKER_0
    name: John Smith
    confidence: high
    source: deterministic
  - speaker_label: SPEAKER_1
    name: Remote participants
    confidence: low
    source: deterministic
calendar_event: Weekly Sync
---
## Summary

[AI-generated summary]

## Notes

[Human notes from Granola]

## Transcript

[SPEAKER_0 0:00] Hello everyone.
[SPEAKER_1 0:05] Thanks for joining.

How It Works

  1. Lists all meetings via granola meeting list -o json (rich metadata)
  2. For each meeting, fetches transcript and AI-enhanced summary
  3. Converts ProseMirror JSON (Granola's note format) to markdown
  4. Optionally extracts structured action items/decisions via Claude
  5. Writes Minutes-native markdown files with proper frontmatter

See Also

Minutes has a built-in file-based import — minutes import granola — that reads from ~/.granola-archivist/output/ without any API calls. See the comparison table in the Minutes README for when to use each tool.

Testing

Tests use Vitest with v8 coverage. Coverage threshold is 75%.

pnpm test:cov    # run with coverage report
pnpm test:watch  # watch mode for development

Contributing

See CONTRIBUTING.md for development setup, code style, and commit conventions.

License

MIT