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

@cluesurf/task

v0.6.24

Published

<br/> <br/> <br/> <br/> <br/> <br/> <br/>

Readme

Pre-alpha. Scope is large. Expect rough edges.

What it is

One library, three surfaces:

  • CLI: task convert image.png image.jpg
  • Node API: every action, full filesystem / child-process access
  • Browser API: the subset that works in the browser, with remote fallback

Every action takes a single object and returns a Promise. Dispatch on input / output format picks the right backend automatically: ImageMagick for png:jpg, ffmpeg for video, pandoc for documents, fontTools for fonts, qpdf for PDFs, and so on.

Installation

Node module (CLI + library):

pnpm add -g @cluesurf/task

Check it out:

task --help

Or just as a JS/TS dep:

pnpm add @cluesurf/task

Task shells out to native tools (ffmpeg, ImageMagick, pandoc, fontTools, qpdf, HarfBuzz, ...). Install them per your OS: see note/install.md.

Prebuilt container with everything baked in:

FROM --platform=linux/amd64 ghcr.io/cluesurf/task:latest

Smaller per-workload images (image, font, pdf, document, tex, video, embed, email, mutate, binary, cloud, code) are published alongside the kitchen sink. See make/deck/docker/readme.md for the full image catalog and when to pick which.

Getting started

1. Shell completion

Tab-complete every verb, sub-thing, and flag in your shell. The CLI ships its own zsh / bash / fish completion script — install it once:

# zsh (most macOS terminals incl. iTerm2)
task autocomplete >> ~/.zshrc && exec zsh

# bash
task autocomplete >> ~/.bashrc && exec bash

# fish
task autocomplete > ~/.config/fish/completions/task.fish

After installing, task con<TAB> expands to task convert, task convert <TAB> lists image / audio / video / document / …, and so on. Re-run task autocomplete after upgrading to pick up new verbs.

2. Try a verb

task convert a.png a.jpg              # extension-routed shorthand
task compress song.wav -o song.mp3
task trim clip.mp4 -s 10 -e 30 -o cut.mp4
task inspect report.pdf               # pretty key/value table
task query sql --from data.csv --limit 10   # DuckDB over a CSV

3. Discover what's available

task --help                # tinted overview of every verb
task <verb> --help         # subcommands + flags for one verb
task <verb> <thing> --help # the leaf command's full option list
task <verb> ... --explain  # print the native command without running it

4. Use it from Node with full TypeScript autocomplete

import Task from '@cluesurf/task'

const task = new Task()

// `format` is narrowed to the supported set per verb.
// IDE autocomplete suggests 'png' | 'jpg' | 'webp' | ... here.
const out = await task.convert({
  input:  { format: 'png', file: { path: 'a.png' } },
  output: { format: 'jpg', file: { path: 'a.jpg' } },
})

Remote execution

For long-running jobs, point a Task instance at a hosted task server and let it run there. The local process gets a work handle back instead of waiting on the binary.

const task = new Task({ host: 'https://example.com', code: '<bearer>' })

const work = await task.convert({
  remote: true,
  work:   true,
  input:  { format: 'png', file: { path: 'a.png' } },
  output: { format: 'jpg', file: { path: 'a.jpg' } },
})

await task.wait(work)
const output = await task.resolve(work)

CLI

Every verb understands the same three invocation shapes:

# shorthand: extension routes to the subcommand, 2-positional convert
task convert a.png a.jpg
task compress song.wav -o song.mp3
task trim clip.mp4 -o cut.mp4 -s 10 -e 30
task inspect report.pdf

# explicit
task convert image -I png -O jpg -i a.png -o a.jpg
task format hello.py
task archive folder/ -o folder.zip

What it can do

| Area | What you can do | | ------------ | ------------------------------------------------------------------------------------------- | | Media | Convert, compress, trim, rotate, flip, resize, normalize, pad, split, combine media files | | Fonts | Inspect, subset, compress to WOFF2, shape text, render previews, round-trip TTX, apply FEA | | Documents | Inspect, slice, crop, reorder pages, highlight, validate PDFs | | Text | Inspect encoding / line endings, convert character encoding, normalize EOL | | Code | Compile (C / C++ / Rust / Swift / WASM text), format, parse, sanitize, disassemble | | Generate | Hashes, QR codes, random strings | | Environment | Read and write .env keys without editing the file by hand | | SSH | Manage ~/.ssh/config, generate / push / copy keys, scan host keys, test and open sessions | | Processes | List, search, filter, group, top, tree, live-watch, inspect, or kill running processes | | Network | Ping, HTTP latency, traceroute, DNS lookup, show IP, interfaces, connections, routes | | System | CPU, memory, disk, uptime snapshot |

Global flags (every verb)

| flag | meaning | | ----------------- | --------------------------------------------------------------- | | -f, --format | pretty (default), text, plain, json, json:pretty | | -h, --help | Tinted help layout for the current path | | -v, --version | Print the installed @cluesurf/task version | | --explain | Print the native commands the verb would run, without executing | | --log [pattern] | Stream subprocess output. Glob filter ("*" = all) |

Process listing highlights

task list process --top memory
task list process --name chrome          # case-insensitive substring
task list process --name "*ode"          # glob
task list process --filter "memory > 500mb and cpu > 10%"
task list process --layout tree          # subtree memory rollups
task list process --layout tree --name node --show children
task list process --show memory,cpu,user
task list process --sort cpu --direction desc --limit 50 --page 2

--layout tree paints memory in purple, CPU in blue, branch glyphs in gray, process names in bright white. Tree filters keep every match's ancestor chain visible; --show children brings descendants along too.

Docs

  • Commands: one example per verb.
  • API design: Task class, dispatch, overloads, remote / local / explain modes.
  • Install: native tools per OS, Docker, Homebrew, Chocolatey.
  • Examples: full workflows.
  • Contributing: repo layout, codegen, adding a new action.
  • Roadmap: what's missing.

Tests

CLI suites live under test/console/*.sh and share the scaffolding in test/lib.sh:

# run one
bash test/console/font.sh

# run everything
bash test/console/all.sh

Programmatic API tests (Node + browser) run via pnpm test per the usual TypeScript pipeline.

License

MIT

ClueSurf

Made by ClueSurf, meditating on the universe ¤. YouTube · X · Instagram · Substack · Facebook · LinkedIn · GitHub