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

@alhassanaraouf/paseo-remote-editor

v0.2.1

Published

Composer pill to open a workspace in VS Code or Zed over SSH, desktop only.

Readme

Remote Editor

Adds an Editor affordance you can put either in each agent's composer ("Editor" pill on the track bar) or on the workspace header ("Open in editor" button on the right side of the header, where Paseo's own editor button lives). The header button opens the default editor directly; the composer pill keeps the picker so you fall back to it when no default editor is set. Both open the relevant path directly in VS Code, Cursor, or Zed — over SSH when the Paseo daemon runs on another machine, or as a local folder when it runs on yours. The composer pill opens the agent's working directory; the header button opens the workspace's directory.

Both surfaces only appear on desktop (not iOS/Android), since opening a local editor via a deep link only makes sense from a desktop OS.

Install

paseo plugin install npm:@alhassanaraouf/paseo-remote-editor

Or paste npm:@alhassanaraouf/paseo-remote-editor into Settings → Plugins → Plugin source and select Install plugin.

Settings (Remote Editor)

  • Open in — default editor (VS Code, Cursor, Zed, or a custom editor).
  • Show button in — where to surface the affordance: Composer (one pill per agent, default, matches the original behaviour), Workspace header (one button per workspace, placed before the built-in actions on the header's right side), or Both. The change applies immediately on the client where you make it; other clients of the same host pick it up after an app reload.
  • SSH host / user — blank falls back to what the daemon reports (os.hostname() / os.userInfo().username). Set these when the daemon's hostname doesn't resolve locally: a Tailscale name, LAN name, or an ~/.ssh/config alias.
  • SSH port — appended as :port in Zed and custom URIs. VS Code-style URIs carry no port, so a non-standard port there needs an ~/.ssh/config alias entered as the SSH host instead.
  • Open local paths directly — enable when the daemon runs on this machine, so the editor opens the folder (vscode://file/..., zed://file://...) instead of SSH.
  • Custom editors — add your own via URI templates using {user}, {host}, {port}, and {path}.

How it works

  • VS Code / Cursor: vscode://vscode-remote/ssh-remote+<user>@<host>/<path> (or vscode://file/<path> in local mode)
  • Zed: zed://ssh/<user>@<host>[:<port>]/<path> (or zed://file://<path> in local mode)

<path> is the agent's working directory (composer pill) or the workspace's directory (header button), percent-encoded per segment so spaces and special characters survive the deep link.

Limitations

  • Requires the editor's remote/SSH support to already be set up, including a working ssh <user>@<host> connection from your machine.
  • Not shown on iOS or Android.