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

@frumu/tandem

v0.4.0

Published

Tandem Engine binary distribution

Readme

Tandem Engine CLI (npm Wrapper)

TTTTT   A   N   N DDDD  EEEEE M   M
  T    A A  NN  N D   D E     MM MM
  T   AAAAA N N N D   D EEEE  M M M
  T   A   A N  NN D   D E     M   M
  T   A   A N   N DDDD  EEEEE M   M

What This Is

Prebuilt npm distribution of the Tandem engine for macOS, Linux, and Windows.
Installing this package gives you the tandem-engine CLI binary without compiling Rust locally.

If you want to build from Rust source instead, use the crate docs in engine/README.md.

Install

npm install -g @frumu/tandem

The installer downloads the release asset that matches this package version. Tags and package versions are expected to match (for example, v0.3.3).

Quick Start

Start the engine server:

tandem-engine serve --hostname 127.0.0.1 --port 39731

Commands

Serve

tandem-engine serve --hostname 127.0.0.1 --port 39731

Options include:

  • --hostname or --host
  • --port
  • --state-dir
  • --provider
  • --model
  • --api-key
  • --config
  • --api-token

Run a Single Prompt

tandem-engine run "What is the capital of France?"

Run a Concurrent Batch

cat > tasks.json << 'JSON'
{
  "tasks": [
    { "id": "plan", "prompt": "Create a 3-step rollout plan." },
    { "id": "risks", "prompt": "List top 5 rollout risks." },
    { "id": "comms", "prompt": "Draft a short launch update." }
  ]
}
JSON

tandem-engine parallel --json @tasks.json --concurrency 3

Execute a Tool Directly

tandem-engine tool --json '{"tool":"workspace_list_files","args":{"path":"."}}'

List Providers

tandem-engine providers

Configuration

Tandem Engine merges config from:

  1. Environment variables
  2. managed_config.json
  3. Project config at .tandem/config.json
  4. Global config:
    • macOS/Linux: ~/.config/tandem/config.json
    • Windows: %APPDATA%\tandem\config.json

Common provider keys:

  • OPENAI_API_KEY
  • ANTHROPIC_API_KEY
  • OPENROUTER_API_KEY
  • GROQ_API_KEY
  • MISTRAL_API_KEY
  • TOGETHER_API_KEY
  • COHERE_API_KEY
  • GITHUB_TOKEN (Copilot)
  • AZURE_OPENAI_API_KEY
  • VERTEX_API_KEY
  • BEDROCK_API_KEY

Documentation

  • Project docs: https://tandem.frumu.ai/docs
  • GitHub releases: https://github.com/frumu-ai/tandem/releases