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

workplane

v0.1.2

Published

Durable execution plane for routing work across trusted nodes

Readme

workplane

npm version status license

Beta — Workplane v0.1.x is under active development. APIs, CLI commands, and deployment expectations may change. Not recommended for production workloads yet.

Route durable work—shell commands, local inference (Ollama), and batch agent harness jobs (Aider, Codex, Claude Code)—to capable machines on your private network.

Workplane is a control plane + polling node runtime backed by Postgres and DBOS. You submit tasks from a CLI; nodes pull work, run it in isolated workspaces, and report logs and artifacts.

Requires Node.js 20+ and Postgres.

Install

npm install -g workplane

Binaries

| Command | Purpose | |---------|---------| | workplane | CLI — submit and inspect tasks | | workplane-server | Control plane API | | workplane-node | Worker that polls and executes tasks | | workplane-db-migrate | Apply database schema |

Quick start (single machine)

1. Postgres — running locally or reachable via DATABASE_URL.

2. Environment — create a .env file or export:

export DATABASE_URL=postgres://postgres:postgres@localhost:5432/workplane
export WORKPLANE_SERVER_URL=http://localhost:8787

# Recommended when the server is not localhost-only:
export WORKPLANE_NODE_TOKEN=your-node-secret
export WORKPLANE_OPERATOR_TOKEN=your-operator-secret

3. Migrate, server, node (three terminals):

workplane-db-migrate
workplane-server
workplane-node

4. Submit a task (fourth terminal):

export WORKPLANE_OPERATOR_TOKEN=your-operator-secret   # if auth enabled on server

workplane task submit shell --command "echo hello"
workplane tasks
workplane runs
workplane logs <runId>

Authentication

When WORKPLANE_NODE_TOKEN is set on the server, every node must use the same value. When WORKPLANE_OPERATOR_TOKEN is set, the CLI must send it for task submit, retry, and cancel.

| Variable | Used by | |----------|---------| | WORKPLANE_NODE_TOKEN | workplane-node | | WORKPLANE_OPERATOR_TOKEN | workplane CLI (mutating commands) |

Read-only CLI commands (tasks, logs, runs, …) work without the operator token unless you add stricter rules in your deployment.

CLI examples

# Shell
workplane task submit shell --command "npm test" \
  --repo https://github.com/you/your-repo.git

# Local inference (node must advertise ollama capability)
workplane task submit inference --model llama3.2 --prompt "Say hello"

# Agent harness (node must have codex or claude-code installed)
workplane task submit harness --harness codex \
  --repo [email protected]:you/app.git \
  --prompt "Fix failing tests"

workplane task submit aider \
  --repo [email protected]:you/app.git \
  --prompt "Fix the bug" \
  --test-command "npm test"

workplane task retry <taskId>
workplane task cancel <taskId>
workplane artifacts <runId>

Node capabilities

Register capabilities when starting a node:

export WORKPLANE_NODE_CAPABILITIES=shell,git,ollama,aider,codex,claude-code
workplane-node

Tasks declare requires; the control plane assigns work to a node whose capabilities are a superset.

| Adapter | Typical capabilities | |---------|----------------------| | Shell | shell | | Ollama | ollama | | Aider | git, aider | | Codex | git, codex | | Claude Code | git, claude-code |

Override harness binaries: WORKPLANE_CODEX_BIN, WORKPLANE_CLAUDE_CODE_BIN.

Personal fleet (home + office)

Run the control plane on an always-on host (VPS, NAS, or home server). Run nodes on each machine where tools or GPUs live. Connect machines with Tailscale, WireGuard, or a trusted LAN.

Set WORKPLANE_SERVER_URL to the control plane’s reachable URL on every node and CLI client.

Full deployment guide: github.com/MindStaq/workplane/blob/main/docs/deployment/FLEET.md

Documentation

License

MIT