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

teamloop

v0.1.5

Published

Local TeamLoop runner CLI for connecting Codex and Claude Code to a shared loop-engineering workspace.

Readme

TeamLoop CLI

TeamLoop connects local Codex or Claude Code runners to a shared TeamLoop workspace.

Run login once to save a user-level CLI credential. Then run connect from each local repository you want TeamLoop to control. The repo defaults to the current directory; pass --repo /path/to/repo only when you want to connect a different folder. Each connected runner gets its own runner id, repo path, agent kind, capabilities, and display name.

Quick Start

npx --yes teamloop@latest login
npx --yes teamloop@latest connect

The CLI will ask for the TeamLoop URL, local repo path, agent, runner name, and capabilities. It saves .teamloop/runner-service.json so follow-up commands can be short:

npx --yes teamloop@latest work --once
npx --yes teamloop@latest doctor --repo .

To connect Claude Code explicitly instead of choosing it interactively:

npx --yes teamloop@latest connect \
  --repo . \
  --agent claude-code

Background Service

Use this only after the one-shot path works:

npx --yes teamloop@latest setup \
  --repo . \
  --test "pnpm test" \
  --interval 15

For scripts and CI, pass all fields explicitly. connect uses the saved login token by default:

npx --yes teamloop@latest connect \
  --url https://teamloop.kangkona.workers.dev \
  --repo . \
  --agent codex \
  --no-prompt

Use --agent claude-code for the same non-interactive flow when this runner should execute Claude Code.

If browser login is not available, the TeamLoop UI can still create a one-time pairing token as a fallback:

npx --yes teamloop@latest connect \
  --url https://teamloop.kangkona.workers.dev \
  --pair tlp_from_dashboard \
  --repo . \
  --agent codex \
  --no-prompt

Lifecycle commands:

npx --yes teamloop@latest status --repo .
npx --yes teamloop@latest logs --repo .
npx --yes teamloop@latest stop --repo .
npx --yes teamloop@latest start --repo .
npx --yes teamloop@latest uninstall --repo .

Safety

  • TeamLoop does not run shell commands from the server.
  • The local operator chooses the agent and verification commands.
  • Custom local agent commands require both --agent-command and --allow-agent-command.
  • Runner posts are written to .teamloop/outbox/*.json before upload. Use teamloop resume --repo . after a network interruption.

Hosted App

Open https://teamloop.kangkona.workers.dev to create a workspace, connect runners, and review evidence.