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

clawdex-mobile

v5.2.3

Published

Private-network mobile bridge and CLI for Codex, OpenCode, and Cursor

Readme

Clawdex Mobile

Run Codex or OpenCode from your phone. clawdex-mobile ships the bridge CLI plus bundled Rust bridge binaries for supported hosts, and the mobile app pairs to that bridge over Tailscale or local LAN.

This project is for trusted/private networking by default. Keep the bridge on a private network, leave bridge auth enabled, and do not expose it directly to the public internet.

What You Get

  • Mobile chat for Codex and OpenCode
  • Live run updates over WebSocket
  • Approval and clarification flows in-app
  • Voice-to-text, attachments, terminal, and Git actions
  • One mobile shell backed by a private host bridge

Quick Start

Before you start:

  • Node.js 20+
  • npm 10+
  • git
  • codex in PATH for the default Codex flow
  • opencode in PATH if you want the OpenCode flow
  • Cursor app-server is bundled with clawdex-mobile for the Cursor SDK flow

Install the mobile app:

Install the CLI and start the bridge:

npm install -g clawdex-mobile@latest
clawdex init

Then open the mobile app and connect using the printed bridge URL/token or pairing QR. clawdex init now writes config, starts the bridge in the background, and returns you to the shell. Bridge logs go to .bridge.log.

The npm package is bridge-only. It does not install Expo or the mobile source tree. On supported macOS, Linux, and Windows hosts it uses bundled bridge binaries, so normal startup does not compile Rust. The current interactive setup helpers are still macOS/Linux-oriented.

Typical operator flow:

npm install -g clawdex-mobile@latest
clawdex init
clawdex stop

Extra Harness Setup

OpenCode and Cursor can run beside Codex from the same bridge.

npm install -g opencode-ai
npm install -g clawdex-mobile@latest
clawdex init --engines codex,opencode,cursor

That writes BRIDGE_ENABLED_ENGINES=codex,opencode,cursor to .env.secure, so the mobile app can control the selected harnesses from one bridge. When Cursor is selected, clawdex init uses the bundled cursor-app-server, asks for a Cursor account API key from Cursor Dashboard > Integrations > User API Keys, and saves it in .env.secure. Cursor documents this under CLI authentication: https://docs.cursor.com/en/cli/reference/authentication

Notes:

  • clawdex init without flags now lets you multi-select harnesses in the wizard with Space, then Enter to continue.
  • Use clawdex init --engine codex, clawdex init --engine opencode, or clawdex init --engine cursor if you want a single-harness setup.
  • For non-interactive host automation, set CURSOR_API_KEY before running setup. This should be a Cursor account API key for the Cursor agent/SDK, not an OpenAI, Anthropic, or other provider key configured inside the Cursor editor. CURSOR_MODEL is optional; the app model picker sends the model for normal chats.

Monorepo Development

If you are working from source:

npm install
npm run setup:wizard
npm run mobile

For one-step restarts that switch the bridge network mode, reuse the existing token, start the bridge in the background, and then launch Expo:

npm run stack:lan
npm run stack:tailscale

stack:lan is the local network path, so it also covers the same-device LAN/VLAN case.

For an OpenCode-first repo checkout:

npm run setup:wizard -- --engine opencode

Use npm run setup:wizard -- --no-start if you only want to write config.

Main Commands

  • clawdex init [--engine codex|opencode|cursor] [--engines codex,opencode,cursor] [--no-start]
  • clawdex stop
  • clawdex upgrade / clawdex update
  • clawdex version
  • npm run setup:wizard
  • npm run secure:bridge
  • npm run mobile
  • npm run stack:lan
  • npm run stack:tailscale
  • npm run ios
  • npm run android
  • npm run stop:services
  • npm run teardown

Docs