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

sandeval

v0.1.0

Published

CLI/TUI sandbox evaluator for coding agents and model arenas.

Downloads

220

Readme

SandEval

CLI/TUI tool for evaluating coding agents in a sandboxed workspace.

A configured model receives a task, creates artifacts through tool calls, runs verification commands, and returns a report with artifacts, command output, token usage, and judge-model scoring.

Features

  • Single or Arena - Run one model or compare multiple models on the same task
  • Judge Scoring - Automated scoring with configurable weighted dimensions
  • Sandbox Execution - Local, Docker, Podman, bubblewrap, firejail, nsjail, or external
  • TUI & Web UI - Interactive terminal UI with Ctrl+K command palette, or web interface
  • SDK - Embed in Node.js applications
  • Multi-Provider - OpenAI, Anthropic, Gemini, Ollama, LM Studio, command models, custom providers

Quick Start

# Install and build
npm install
npm run build

# Initialize config
node dist/cli.js init

# Configure your provider
node dist/cli.js config wizard

# Run a task
node dist/cli.js run --prompt "Create a tiny Node script that prints a haiku"

# Launch TUI
node dist/cli.js tui

# Launch Web UI
node dist/cli.js web

Documentation

| Document | Description | |----------|-------------| | Configuration | Providers, sandbox, tools, scoring, and all config options | | CLI Reference | All CLI commands and options | | SDK Usage | Programmatic usage in Node.js | | CHANGELOG | Version history | | CONTRIBUTING | How to contribute |

Quick Examples

Run a Task

sandeval run task.md --model openai/gpt-5.4 --judge openai/gpt-5.4
sandeval run --prompt "Build a CLI calculator" --review "Works, but lacks tests"

Arena Comparison

sandeval arena task.md --models openai/gpt-5.4,anthropic/claude-sonnet-4-5
sandeval arena --prompt "Build a Vite app" --concurrency 2

Score Dashboard

sandeval score-index openai/gpt-5.4

Configuration

Set API keys as environment variables, then edit .sandeval/config.json:

{
  "defaultModel": "openai/gpt-5.4",
  "models": [
    {
      "name": "openai",
      "kind": "openai-compatible",
      "baseUrl": "https://api.openai.com/v1",
      "apiKeyEnv": "OPENAI_API_KEY",
      "model": "gpt-5.4",
      "modelIds": ["gpt-5.4", "gpt-4.1"]
    }
  ]
}

Use sandeval config wizard for interactive setup, or see Configuration for all options.

License

Apache License 2.0