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

@keepgoingdev/cli

v2.10.0

Published

Terminal CLI for KeepGoing. Resume side projects without the mental friction.

Readme

@keepgoingdev/cli

Terminal CLI for KeepGoing - resume side projects without the mental friction.

Install

# One-line install (recommended)
curl -fsSL https://keepgoing.dev/install.sh | bash

# Or install with npm directly
npm install -g @keepgoingdev/cli

Setup

Run the interactive wizard once per device:

keepgoing setup

This configures KeepGoing for your AI tools (Claude Code, Copilot, Cursor, Windsurf), IDE, and shell. Use a preset to skip straight to a tool:

keepgoing setup claude       # pre-select Claude Code
keepgoing setup copilot      # pre-select GitHub Copilot
keepgoing setup cursor       # pre-select Cursor

On subsequent projects, replay your saved profile without prompts:

keepgoing init

Commands

keepgoing status

Show the last checkpoint for the current project.

KeepGoing · 12 days ago

  Summary:   Refactored auth middleware to support JWT rotation
  Next step: Implement verifyRefreshToken helper in auth.ts
  Branch:    feature/auth-refactor
  Files:     auth.ts, middleware.ts, routes/token.ts (+2 more)

keepgoing save

Save a checkpoint. Auto-generates the summary and next step from recent git activity.

keepgoing save                         # auto-generate from git
keepgoing save -m "Finished auth flow" # custom summary
keepgoing save -n "Write tests next"   # custom next step
keepgoing save --force                 # save even if no recent changes

keepgoing briefing

Get a re-entry briefing when coming back to a project.

keepgoing briefing
keepgoing briefing --tier detailed     # more context (compact, standard, detailed, full)
keepgoing briefing --model claude-opus-4  # auto-select tier from model name

keepgoing momentum

Show current developer momentum - what you're focused on and how active the project is.

keepgoing log

Browse session checkpoints with rich filtering.

keepgoing log --today
keepgoing log --week --oneline
keepgoing log --follow src/auth.ts     # checkpoints that touched this file
keepgoing log --search "auth"          # search summaries
keepgoing log --sessions               # group by session
keepgoing log decisions                # browse decision records (Pro)

keepgoing glance

Single-line context snapshot for shell prompts and status bars. Completes in <50ms.

keepgoing hot

Cross-project activity summary sorted by momentum (hot projects first).

keepgoing continue

Export context to use in another AI tool (ChatGPT, Gemini, Copilot, etc.).

keepgoing continue --target chatgpt --open

keepgoing decisions

View decision history. Pro feature.

keepgoing decisions --branch feature/auth --limit 20

keepgoing hook install

Install a shell hook that shows a quick status line when you cd into a KeepGoing project.

keepgoing hook install
source ~/.zshrc   # reload shell

Supports zsh, bash, and fish.

keepgoing doctor

Check storage health, detect orphaned sessions, and run integrity checks.

keepgoing migrate

Migrate legacy JSON storage to SQLite (one-time, for projects that used older versions).

keepgoing activate <key>

Activate a Pro license on this device.

keepgoing update

Update the CLI to the latest version.

Shell Hook

After keepgoing hook install and reloading your shell, entering any directory with .keepgoing/ prints a quick status line automatically - no manual command needed.

Data Storage

Per-project data lives in .keepgoing/keepgoing.db (SQLite, auto-created). Global data (license, tray config) lives in ~/.keepgoing/. The .keepgoing/ directory is automatically added to .gitignore.

Development

See CLAUDE.md for architecture details. From the monorepo root:

npm run shared:build && npm run cli:build
npm run cli:test