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

@implicit-ai/relay

v0.0.11

Published

Control Claude Code from your phone with Implicit

Readme

@implicit-ai/relay

Control Claude Code from your phone with Implicit.

The relay is a CLI that runs on your laptop. It bridges your phone (the Implicit iOS app) to Claude Code: the phone sends prompts, the relay runs them on your laptop in a project directory, and streams output, tool calls, and permission requests back to your phone.

Install

npm install -g @implicit-ai/relay

Requires Node 18+.

Quick start

implicit connect

On first run, a browser opens to sign in with the same account you used in the Implicit iOS app. After that, implicit connect keeps a long-lived connection open and your phone can send prompts.

Sessions run on your laptop, in the working directory you point at. Your laptop must be on and connected for the iOS app to do anything.

Commands

| Command | Purpose | |---|---| | implicit connect | Pair (first run) and keep the relay open. Default command. | | implicit login | Re-pair without starting the relay. | | implicit logout | Clear stored credentials. | | implicit status | Show current connection state. |

Working directory

Each session runs in one directory on your laptop. The relay resolves it in this order:

  1. --cwd <path> flag passed to implicit connect
  2. defaultCwd in ~/.implicit/config.json
  3. $HOME (fallback)

Override per-run:

implicit connect --cwd ~/code/my-project

The resolved path is logged when connect starts and on every incoming session.

Environments

implicit connect --env development   # default — Implicit dev gateway
implicit connect --env production    # Implicit prod gateway

Privacy

The relay stores its auth token locally (macOS Keychain on Mac). It connects only to Implicit's gateway over WebSocket/Ably and the Claude Code Agent SDK on your machine. No telemetry.

Developing on a branch

When iterating on relay changes locally (e.g. testing a feature branch before publishing), build and link the package so implicit connect runs your branch instead of the published version:

cd packages/relay
npm install
npm run build
npm link    # exposes the global `implicit` bin from this checkout

Verify with which implicit and implicit --version. Revert with npm uninstall -g @implicit-ai/relay && npm install -g @implicit-ai/relay.

License

MIT