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

openwts

v0.2.1

Published

🌿 Isolated worktrees for opencode. Spin up, switch, run, and clean up git worktrees with zero friction.

Readme

🌿 openwts

Isolated worktrees for opencode. Spin up, switch, run, and clean up — with zero friction.

npm install -g openwts
openwts install                       # one-time shell setup
openwts create my-new-feature         # isolate your next task
openwts run my-new-feature            # launch opencode in the worktree
openwts list                          # see everything you're working on
openwts switch my-new-feature         # jump into it
openwts remove my-new-feature         # clean up when done

Stop context switching. Start shipping.


Why openwts?

Every git stash, git checkout -b, and "which branch was I on?" slows you down. openwts gives each task its own isolated directory — a git worktree — so you can jump between tasks without interrupting your flow.

| Problem | openwts fix | |---------|-------------| | "Let me stash and switch branches" | One command: openwts create task-name | | "I forgot what I was working on" | openwts list shows all worktrees + dirty status | | "Let me clean up these old branches" | openwts prune — gone, with safety checks | | "I need opencode for a different task" | openwts run task-name — opens in the worktree |

Commands

| Command | What it does | |---------|-------------| | create <name> [base] | Create a worktree + branch from base (default: main) | | list | Show all worktrees with branch, path, and dirty status | | switch <name> | cd into the worktree | | run <name> [-- cmd] | Run opencode (or any command) inside the worktree | | remove <name> | Delete a worktree with safety checks | | prune | Delete all non-main worktrees | | install | Set up shell function for switch support |

Quick start

# Install
npm install -g openwts

# One-time shell setup
openwts install

# Start your first worktree
cd my-project
openwts create fix-login-bug
openwts run fix-login-bug

# Worktree is ready at .openwts/worktrees/fix-login-bug/
# opencode opens inside it automatically

Docs

| Document | What's inside | |----------|-------------| | OPENWTS.md | Product overview — the pitch, the value, the use cases | | docs/ARCHITECTURE.md | Codebase architecture — modules, seams, adapters, OCP | | docs/FEATURES.md | Feature breakdown — every command with arguments and errors | | docs/COMMANDS.md | CLI reference — all flags, exit codes, and examples | | docs/DESIGN-PHILOSOPHY.md | Design principles — deep modules, seam discipline, OCP |

License

MIT