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

@lgabriellp/claudet

v2.10.4

Published

Interactive worktree manager + Claude launcher

Readme

claudet

Disclaimer: claudet is an independent, community-built tool. It is not made by, endorsed by, sponsored by, or affiliated with Anthropic, PBC. "Claude" and "Claude Code" are trademarks of Anthropic, PBC.

Interactive worktree manager and Claude Code launcher.

Claudet gives each Claude Code session its own git worktree and plan file, so you can run multiple tasks in parallel without branch conflicts. It tracks time, syncs context docs, and manages the full lifecycle — create, launch, clean.

Prerequisites

  • Node.js 22+
  • Claude Code CLI (claude) installed and authenticated — see Anthropic's docs
  • Git
  • macOS or Linux (bash required)

Install

curl -fsSL https://raw.githubusercontent.com/lgabriellp/claudet/main/scripts/install-global.sh | bash

This checks prerequisites (Node 22+, Git, Claude Code CLI), installs the package globally, and runs post-install setup.

Or install manually:

npm install -g @lgabriellp/claudet
claudet install

From source:

git clone https://github.com/lgabriellp/claudet.git
cd claudet
npm run setup

The setup script runs npm install, npm run build, npm install -g ., and claudet install.

Any package manager works (npm, pnpm, yarn, bun).

Updating

npm install -g @lgabriellp/claudet@latest

Or from source:

git pull
npm install
npm run build
npm install -g .

Usage

Run claudet with no arguments to start the interactive flow: pick a repo, select or create a worktree, then launch Claude Code inside it.

claudet                  Interactive: select repo → worktree → launch claude
claudet init             Configure global settings (scan dirs, data dir)
claudet install          Configure statusline, remove legacy files, verify
claudet create           Non-interactive: create worktree + plan (JSON output)
claudet clean            Select worktrees to archive (merged PRs pre-selected)
claudet clean --merged   Auto-archive all worktrees with merged PRs
claudet context          Sync context docs to ~/.claude/claudet/
claudet statusline       Output status line (reads JSON from stdin)
claudet worklog start    Log session start (called by hook)
claudet worklog tick     Log tick + update time (called by hook)
claudet --help           Show this help

First run

On first launch, claudet will prompt you to configure scan directories (where it looks for git repos) and a data directory (where it stores plans, worklogs, and config).

How it works

  1. Repo selection — Scans configured directories for git repos, sorted by last accessed.
  2. Worktree selection — Shows existing worktrees with PR status, review state, and merge conflicts. Create new worktrees from here.
  3. Plan file — Each worktree gets a plan file (Context, Objective, Key Files, Test Scenarios, Progress log) that Claude reads at session start.
  4. Session launch — Opens Claude Code in the worktree directory with the plan loaded as context.
  5. Time tracking — Worklog hooks automatically log session start/tick events.

License

MIT

Trademarks

Claude and Claude Code are trademarks of Anthropic, PBC. This project is not part of, endorsed by, or affiliated with Anthropic in any way. It is an independent tool that integrates with the publicly available Claude Code CLI.