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

airprompt

v0.1.12

Published

Set up remote terminal access for AI agent workflows in minutes

Downloads

165

Readme

airprompt

airprompt setup preview

Set up remote terminal access for AI agent workflows in minutes.

Run this on your Mac and you'll be able to SSH into your terminal from your phone — so when Claude or another AI agent needs your input, you can respond from anywhere.

Usage

npx airprompt

Preview the setup without installing or enabling anything:

npx airprompt --dry-run

Check your current setup without changing anything:

npx airprompt status

That's it. The CLI will:

  1. Check you're on macOS
  2. Install and connect Tailscale (if needed)
  3. Install tmux (if needed)
  4. Enable macOS SSH Remote Login (if needed)
  5. Print your Tailscale IP and Termius setup instructions

What airprompt changes

airprompt may install Tailscale and tmux with Homebrew, and it may run sudo systemsetup -setremotelogin on to enable macOS Remote Login.

That SSH change lets devices on your Tailscale network connect to your Mac with your normal macOS username and password or SSH key. It does not open a public tunnel by itself, but you should only use it with a Tailscale account and devices you trust.

To disable Remote Login later:

sudo systemsetup -setremotelogin off

What you need on your phone

  • Tailscale — sign in with the same account
  • Termius — SSH client, add host with the IP printed by this CLI

Keeping sessions alive with tmux

# Start a named session
tmux new -s work

# Detach (session keeps running)
Ctrl+B, D

# Reattach from your phone
tmux attach -t work

SSH keys

For regular use, prefer SSH keys over passwords:

ssh-keygen -t ed25519 -C "airprompt"
ssh-copy-id <mac-username>@<tailscale-ip>

If ssh-copy-id is not installed, append the public key from ~/.ssh/id_ed25519.pub to ~/.ssh/authorized_keys on your Mac.

Requirements

  • macOS
  • Homebrew (for auto-installing Tailscale and tmux)

Status checks

npx airprompt status checks whether Tailscale is installed and connected, tmux is installed, and macOS Remote Login is reachable. Status checks are read-only and do not require sudo.

Security model

airprompt assumes SSH is reachable over your private Tailscale network, not the open internet. Keep your Tailscale account protected, remove old devices from your tailnet, and prefer SSH keys over passwords for regular use.

Why

When an AI agent is running a long task and needs confirmation, you shouldn't have to be at your desk. This tool sets up the infrastructure so you can respond from your phone.