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

@circlesac/clova

v26.5.5

Published

CLOVA Note CLI — transcripts, summaries, speakers, and audio from the terminal

Readme

clova

CLOVA Note CLI — pull transcripts, summaries, speakers, and audio from CLOVA Note right in your terminal.

Install

# Homebrew
brew install circlesac/tap/clova

# npm
npm install -g @circlesac/clova

# or standalone
curl -fsSL https://github.com/circlesac/clova-cli/releases/latest/download/install.sh | sh

Authenticate

CLOVA Note runs on a NAVER login session. Two ways to get one:

A. Automated (NAVER ID + password). Drives a headless browser to log in for you. Requires Playwright and Google Chrome installed (npm i -g playwright):

clova auth login --id <NAVER_ID>          # prompts for password securely
clova auth login --id <NAVER_ID> --headed # show the browser to clear a CAPTCHA / 2FA
# password can also come from --pw or the CLOVA_NAVER_PW env var

NAVER may show a CAPTCHA on automated logins; re-run with --headed to solve it once in the browser. (NID login is bot-protected, so a real browser is needed just for this step.)

B. Paste cookies (no browser needed). Grab NID_AUT and NID_SES from your browser (devtools → Application → Cookies → https://naver.com):

clova auth login --aut "<NID_AUT>" --ses "<NID_SES>"
clova auth login --cookie "NID_AUT=...; NID_SES=..."   # whole cookie string
CLOVA_COOKIE="NID_AUT=...; NID_SES=..." clova auth login # via env
pbpaste | clova auth login --stdin                      # via stdin

clova stores credentials under ~/.config/clova/credentials/ and creates its own device session (separate from your browser). Check it with clova auth status. NID cookies are long-lived, so you rarely need to log in again — only auth login touches a browser; every other command is plain HTTP.

Usage

All note commands accept a note ID, a note-detail URL (https://clovanote.naver.com/w/<ws>/note-detail/<id>), or a share URL (https://clovanote.naver.com/s/<key>):

# Metadata: title, status, duration, speakers, segment count
clova note get <note>

# Full transcript ([mm:ss] speaker: text)
clova note transcript <note>
clova note transcript <note> --srt           # SRT subtitles
clova note transcript <note> --no-timestamps  # plain text
clova note transcript <note> --json           # raw transcript blocks

# AI summary (brief / agenda / tasks / by-speaker)
clova note summary <note>

# Speakers / attendees
clova note speakers <note>

# Download the merged audio recording
clova note audio <note> -o meeting.m4a

# Share settings (link, password, access type)
clova note share <note>

# Who has opened the shared note
clova note history <note>

# Rename a note (change its title)
clova note rename <note> "New title"

Read commands support --json and --plain output.

Share links

Share URLs (https://clovanote.naver.com/s/<key>) work directly — pass one anywhere a note reference is accepted. The CLI trades the share key for the note via the shared-notes authorization endpoint, so it reads notes shared with you as well as your own.

Development

bun install
bun run dev note get <note>   # run from source
bun run test                  # vitest
bun run build                 # compile a standalone binary to dist/clova

Releases are automated via GitHub Actions (gh workflow run release.yml) — see CLAUDE.md.