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

@unwita-insights/super-agent-daemon

v0.1.8

Published

Self-hosted Super Agent daemon — run the remote backend on your own Linux server. Pulls the Claude Code + ACP runtimes as dependencies.

Downloads

1,068

Readme

@unwita-insights/super-agent-daemon

Run the Super Agent remote backend on your own Linux server — the self-hosted alternative to the managed Fly.io option. The Super Agent desktop app connects to this daemon over SSH + WebSocket and drives multi-agent workflows on your machine.

This is the same daemon the managed option runs, delivered as an npm package so it lives on your box as a normal process — read its logs with journalctl / tail, no container to exec into.

Requirements

  • Linux x86-64 (this package is os: linux, cpu: x64).
  • Node.js ≥ 20 (you already have it if you're running npm).
  • gh (GitHub CLI) on PATH — used for auth + cloning. Install: https://github.com/cli/cli#installation.
  • An SSH server the app can reach (the daemon uses your host's own sshd).

Install

npm install -g @unwita-insights/super-agent-daemon

That single command also pulls @anthropic-ai/claude-code and @agentclientprotocol/claude-agent-acp and puts their claude / acp runners on your PATH — the daemon needs them and finds them there automatically.

Run

super-agent-daemon daemon start    # forks a detached process (nohup built-in)
super-agent-daemon daemon logs     # tail ~/.super-agent/daemon.log
super-agent-daemon daemon status   # running? prints the PID
super-agent-daemon daemon stop     # stop it

daemon start self-detaches (survives logout), captures stdout+stderr to ~/.super-agent/daemon.log, and records the PID — no nohup needed. Running the bare super-agent-daemon with no subcommand launches the desktop UI, so the daemon subcommand is required on a server.

The daemon listens on [::]:9000 by default (override with SUPER_AGENT_BIND). You do not need to open port 9000 in your firewall: the app reaches the daemon over an SSH tunnel, so the WebSocket rides inside your existing SSH connection and only port 22 (SSH) has to be reachable from the laptop. The daemon port stays on the server's loopback — never exposed to the network.

Run it as a service (recommended)

For a long-lived deployment, a systemd unit gives you restart-on-crash and journalctl logs:

# /etc/systemd/system/super-agent.service   (run as your dedicated user)
[Unit]
Description=Super Agent daemon
After=network.target

[Service]
User=superagent
# Use `daemon run` (foreground) under systemd — it supervises the process.
# Find the real path with: which super-agent-daemon
ExecStart=/usr/local/bin/super-agent-daemon daemon run
Restart=on-failure
Environment=SUPER_AGENT_BIND=[::]:9000

[Install]
WantedBy=multi-user.target
sudo systemctl enable --now super-agent
journalctl -u super-agent -f

User isolation

Isolation is handled by the OS, not the daemon: create a dedicated Unix user per Super Agent user and run the daemon as that user. Each user's repos, Claude credentials (~/.claude), and gh auth (~/.config/gh) are then walled off by normal file permissions.

sudo useradd -m -s /bin/bash superagent-alice
sudo -iu superagent-alice
npm install -g @unwita-insights/super-agent-daemon

Updating

npm update -g @unwita-insights/super-agent-daemon

Then restart the daemon (or systemctl restart super-agent).


Part of Super Agent. For how the desktop app wires this up, see docs/REMOTE_OWN_SERVER.md in the repo.