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

@kiipu/cli

v0.0.9

Published

Kiipu CLI for local authentication, doctor checks, and direct note actions.

Readme

Kiipu CLI

Create Kiipu notes from your terminal.

@kiipu/cli is the official command line interface for Kiipu. It is the best place to start if you want to authenticate locally and note directly from the command line.

Use it to:

  • sign in on the current device
  • ask questions over your saved notes
  • create notes from the command line
  • delete, restore, or permanently remove notes by id
  • verify local authentication and API access with kiipu doctor

If you want Claude Code integration on top of the CLI, use @kiipu/claude-plugin.

Install

npm install -g @kiipu/cli

Quick Start

  1. Sign in:
kiipu auth login
  1. Create a note:
kiipu note create "Hello Kiipu"
  1. Confirm local setup:
kiipu doctor
  1. Ask over your saved notes:
kiipu ask "What did I save about the roadmap?"

Example Workflow

kiipu auth login
kiipu ask "What should I follow up on?"
kiipu note create "Ship the beta today"
kiipu auth status

Authentication

By default, kiipu auth login opens your browser and connects the current device to your Kiipu account.

kiipu auth login

Useful authentication commands:

kiipu auth login --device-name "MacBook Pro"
kiipu auth login --no-browser
kiipu auth login --api-key <cpk_...>
kiipu auth status
kiipu auth logout

Noteing

Create a note:

kiipu note create "Ship the beta today"
kiipu note create --content "Ship the beta today"

Delete, restore, or permanently remove a note by id:

kiipu note delete --id note_123
kiipu note restore --id note_123
kiipu note purge --id note_123

Ask

Ask a new question and stream the answer:

kiipu ask "What did I save about the roadmap?"
kiipu ask --question "What should I follow up on?"

Continue a conversation or inspect Ask history:

kiipu ask --conversation-id conv_123 "What should I do next?"
kiipu ask history --limit 10
kiipu ask show --id conv_123

Core Commands

kiipu auth login
kiipu auth status
kiipu auth logout

kiipu ask "What did I save about the roadmap?"
kiipu ask history --limit 10
kiipu ask show --id conv_123

kiipu note create "Hello Kiipu"
kiipu note delete --id note_123
kiipu note restore --id note_123
kiipu note purge --id note_123

kiipu doctor
kiipu --help

Troubleshooting

If browser login does not finish:

  • Complete sign-in in the browser tab opened by kiipu auth login.
  • If the browser does not open automatically, run kiipu auth login --no-browser and open the printed URL yourself.

If a command fails with an authentication error:

  • Run kiipu auth status to confirm the current device is still signed in.
  • Re-run kiipu auth login if you need to refresh local credentials.

If kiipu doctor reports a problem:

  • Re-run kiipu auth login.
  • Confirm you can reach Kiipu from the same machine in your browser.

Help

See the full command reference in the terminal:

kiipu --help
kiipu auth --help
kiipu ask --help
kiipu note --help