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

@agent-era/devteam

v1.0.7

Published

DevTeam: Git/Tmux development workflow TUI (Node + Ink)

Readme

DevTeam CLI (@agent-era/devteam)

Run a team of local coding agents in your terminal. Launch multiple Claude Code, Codex or Gemini agents, switch between them, review their changes and add comments, and push PRs all from one streamlined terminal UI. An exercise to push how fast development can happen with multiple parallel agents. Mostly vibe-coded

Screenshot

Install

Prerequisites: Node.js 18+ and tmux installed and on your PATH

Global install:

npm i -g @agent-era/devteam

This installs the devteam command.

Or run the provided installer script from a clone of this repo:

./install.sh

Usage

Run the TUI in the top-level directory that you keep your git projects in:

cd ~/projects
devteam

Or point it at a directory explicitly:

devteam --dir /path/to/projects
# or
PROJECTS_DIR=/path/to/projects devteam

For best results:

  • run in a VM and give your agents broad permissions within that sandbox
  • give them a dedicated GitHub account that they can use to create PRs automatically
  • add some guidelines in CLAUDE.md / AGENTS.md to add tests and make a PR for each feature

Features

Use DevTeam to manage a team of agents working in parallel on your projects:

  • Kick off multiple agents working on features in parallel (uses git worktrees)
  • See their code changes with a built-in diff viewer, and add comments that are sent to them to address
  • Agents asking for your input are highlighted in the UI so you can unblock them
  • See how far each agent is: diff line counts, whether the feature is pushed, GitHub PR checks and status
  • Run your program or server in each worktree so you can try out the changes easily.
  • Choose Claude Code, Codex or Gemini CLI to work on each feature

Repository

  • GitHub: https://github.com/agent-era/devteam
  • Issues: https://github.com/agent-era/devteam/issues

Development

  • Build: npm run build
  • Run: npm run cli -- --dir <path_to_projects_root>
  • Test: npm test
  • Terminal E2E tests: npm run test:terminal

Publishing (scoped public)

npm version <patch|minor|major>
npm publish --access public

Note: prepublishOnly runs the build to ensure dist/ is included in the published tarball.

Convenience scripts:

npm run release:patch  # bump patch + publish
npm run release:minor  # bump minor + publish
npm run release:major  # bump major + publish