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

gitseek

v0.1.0

Published

Interactive git branch explorer with GitHub PR status

Readme

gitseek

Interactive git branch explorer with GitHub PR status.

gitseek launch graphic

Browse, search, and manage git branches from a single interactive TUI — sorted by latest, filtered by author, with inline PR numbers and status via GitHub CLI.

Install

npm install -g gitseek

Usage

# Interactive mode
gitseek

# Short alias
gs

# Show only your branches (by commit author + PR assignee)
gitseek --mine

# Include remote branches
gitseek --all

# Pre-filter by search query
gitseek --search "feature"

# Non-interactive output
gitseek --print

# Combine flags
gitseek --mine --search "fix" --print

Output

  BRANCH                          AGO     AUTHOR            PR    LAST COMMIT
  copilot/add-openai-spec-suppo…  3d      Ahmad Bilal       #795  refactor: code
  bilal/fix-dom                   4d      Ahmad Bilal       #834  fix: dompurify import
  copilot/fix-shell-command-tru…  8d      copilot-swe-age…  #738  fix: correct shell command…
  bilal/studio-audit-3            12d     Ahmad Bilal             fix: job description

Columns: BRANCH, AGO (compact — 3d, 2w, 4mo), AUTHOR, PR (color-coded by state), LAST COMMIT.

Interactive Controls

↑↓ navigate · Enter checkout · / search · m mine · r remote · d delete · D force-delete · q quit

| Key | Action | |---|---| | j / k or arrows | Navigate up/down | | Enter | Checkout selected branch | | d | Delete branch (press twice to confirm) | | D | Force delete branch | | m | Toggle "my branches" filter | | r | Toggle remote branches | | / or s | Search branches | | Esc | Clear search / exit | | q | Quit |

Features

  • Sorted by latest — branches ordered by last commit date
  • Author filter--mine matches your git config user.email and GitHub PR assignees
  • Fuzzy search — filter across branch name, commit message, and author
  • PR column — dedicated column with PR numbers, color-coded by state (open, merged, closed, draft)
  • Compact dates3d, 2w, 4mo instead of verbose relative dates
  • Responsive layout — branch names, authors, and messages truncate to fit terminal width
  • Quick actions — checkout, delete, force-delete with keyboard shortcuts
  • Scrolling viewport — handles repos with hundreds of branches
  • Print mode — non-interactive output for scripting and piping

Development

# Clone and install
git clone https://github.com/ahmadbilaldev/gitseek.git
cd gitseek
pnpm install

# Link globally for live testing
pnpm build
pnpm link --global

# Now `gitseek` and `gs` are available globally
# pointing to your local build

# Watch mode — auto-rebuilds on file changes
pnpm dev

# In another terminal, test your changes
gitseek --mine

After pnpm link --global, every pnpm dev rebuild is immediately reflected when you run gitseek — no reinstall needed.

To unlink when done:

pnpm unlink --global

Requirements

  • Node.js 18+
  • Git
  • GitHub CLI (gh) — optional, for PR column and assignee matching

License

MIT