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

@rewrlution/paper-cli

v0.1.6

Published

A journaling CLI for developers that builds career intelligence over time

Readme

Paper

A journaling CLI for developers that builds career intelligence over time.

Write daily. Review now and then. Generate resumes, STAR stories, and coaching from your own words.


Install

npm install -g @rewrlution/paper-cli
paper setup        # pick provider (Anthropic/OpenAI), paste your API key, set your goal

Commands

Write

paper              # guided entry — AI asks 2-3 follow-up questions, then saves
paper add          # open $EDITOR, save
paper log "..."    # quick one-liner append
paper show         # read today's (or any) entry

Review

paper recap                        # last 7 days: standup notes + confirm wins into memory
paper recap --since monday         # from last Monday
paper recap --since yesterday      # daily standup notes
paper recap --days 14              # any window

Career

paper resume       # generate resume from confirmed wins, edit inline
paper star         # compose a STAR interview story from a win
paper coach        # career coaching conversation — knows your wins and goal

Sync (optional)

paper register                     # create a Paper account
paper login                        # log in on another device
paper sync                         # push journals + memory to cloud, pull to other devices
paper logout

Setup

paper import ~/obsidian/daily/    # bring in existing notes, build memory once
paper config --set sync_url=https://your-api.com
paper config --set editor=nvim
paper setup        # re-run onboarding

How it works

You write daily. paper recap periodically digests a window of entries — producing standup bullets and proposed wins you confirm. Confirmed wins live in memory.md. paper resume, paper star, and paper coach all read that memory.

Corrections you make during review ("gyroscope is part of code-video, not its own project") are saved to memory.notes so every future output gets them right — without re-asking.

Storage: five plain-text files in ~/.local/share/paper/:

| File | What it is | |---|---| | journals/YYYYMMDD.md | your words — immutable, never edited by AI | | memory.md | what Paper learned about you (you confirm it) | | resume.md | your resume | | stars/<slug>.md | STAR interview stories | | coach/<timestamp>.md | saved coach conversations |


Sync (multi-device)

Journals and memory sync via a small API backed by Supabase. See docs/DEPLOYMENT.md for the full setup — it takes about 15 minutes.

Short version:

  1. Deploy packages/api/ to Render (free tier works)
  2. paper config --set sync_url=https://your-api.onrender.com
  3. paper register
  4. paper sync

Documentation