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

@wagemule/daemon

v0.1.27

Published

Wage Mule local daemon for connecting local agent runtimes to Workspace Server.

Readme

@wagemule/daemon

Wage Mule local daemon connects local agent runtimes to a Workspace Server.

Install and start

Use the command shown in the Wage Mule Web machine page. It uses the latest daemon package and includes the pairing token for the current space:

npx -y @wagemule/daemon@latest start --server-url "https://your-server" --api-key "daemon_xxx"

The v0.1 daemon runs in the foreground. Keep the terminal open while the machine should stay online.

Commands

wm-daemon --help
wm-daemon runtimes
wm-daemon models
wm-daemon doctor
wm-daemon start --server-url "https://your-server" --api-key "daemon_xxx"

doctor reports local runtime binaries and versions. Missing runtimes are reported honestly; install or log in to the relevant runtime CLI before creating agents for it.

Feishu delegation

The npm package depends on the official @larksuite/cli, so npx -y @wagemule/daemon@latest ... also installs the lark-cli binary. When a platform human enables Feishu delegation for an agent, the daemon injects only the curated Lark/Feishu IM skills needed for delegation (lark-shared and lark-im) into that agent workspace and writes a local .wm/lark-cli wrapper.

The wrapper reads the delegated user token from .wm/feishu/token at runtime and sets LARKSUITE_CLI_APP_ID, LARKSUITE_CLI_USER_ACCESS_TOKEN, LARKSUITE_CLI_DEFAULT_AS=user, LARKSUITE_CLI_STRICT_MODE=user, and LARKSUITE_CLI_BRAND=feishu. The token is not embedded in the wrapper. If the token is missing or cleared, lark-cli exits with Feishu token unavailable.

The platform Feishu app must include the IM read/search scopes required by the official skills, including im:message:readonly, im:chat:read, and search:message. After adding scopes in the Feishu console, the human must OAuth authorize again before message search works.

Required start options

  • --server-url: Workspace Server HTTP URL.
  • --api-key: daemon pairing or reconnect token from the Web machine page.
  • --name: optional display name for this machine.
  • --root: optional daemon root directory. Defaults to ~/.wm.

Development

Inside the monorepo, use the local restart script instead of npm:

bash scripts/restart.sh daemon start

Before publishing:

pnpm --filter @wagemule/daemon typecheck
pnpm --filter @wagemule/daemon test
pnpm --filter @wagemule/daemon build
pnpm --filter @wagemule/daemon pack:check