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

@wix/evalforge-evaluator

v0.129.0

Published

EvalForge Evaluator

Downloads

6,370

Readme

@wix/evalforge-evaluator

CLI tool that executes AI agent evaluations. It fetches an eval run configuration from the backend, runs each scenario against a Claude Code agent, streams trace events, runs assertions, and reports results.

How It Works

evaluator <project-id> <eval-run-id>
  1. Load configuration from environment variables (server URL, AI Gateway credentials, etc.)
  2. Fetch evaluation data from the backend API — eval run, scenarios, agent config, skills, MCPs, sub-agents, rules, and templates
  3. For each scenario:
    • Prepare a working directory (download and extract template)
    • Write skills to .claude/skills/<name>/SKILL.md
    • Write MCPs to .mcp.json
    • Write sub-agents to .claude/agents/<name>.md
    • Write rules to CLAUDE.md, AGENTS.md, or .cursor/rules/<name>.md based on rule type
    • Launch the Claude Code agent with the scenario's trigger prompt via @anthropic-ai/claude-agent-sdk
    • Stream trace events back to the backend
    • Run assertions on the agent's output
    • Report the scenario result
  4. Finalize — set eval run status to COMPLETED or FAILED

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | EVAL_SERVER_URL | Yes | Backend server URL for fetching data and reporting results | | AI_GATEWAY_URL | Yes | AI Gateway base URL for LLM calls | | AI_GATEWAY_HEADERS | No | Custom headers for AI Gateway (newline-separated key:value pairs) | | EVAL_API_PREFIX | No | API path prefix (e.g., /api/v1) | | EVALUATIONS_DIR | No | Directory for evaluation working directories | | TRACE_PUSH_URL | No | URL for pushing trace events (remote job execution) | | EVAL_ROUTE_HEADER | No | x-wix-route header for deploy preview routing | | EVAL_AUTH_TOKEN | No | Bearer token for public endpoint authentication |

The evaluator is typically launched by the backend (locally or on a remote Dev Machine) with these variables pre-configured.

Scripts

yarn build       # Build CJS + ESM + type declarations
yarn test        # Run tests
yarn lint        # Run ESLint
yarn clean       # Remove build artifacts

Dependencies

  • @wix/evalforge-types — shared type definitions
  • @wix/eval-assertions — assertion evaluation framework
  • @wix/evalforge-github-client — GitHub API client for fetching skill files
  • @anthropic-ai/claude-agent-sdk — Claude Code agent SDK