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

@verydia/eval

v0.1.0

Published

Evaluation harness for testing and benchmarking Verydia agent flows

Downloads

59

Readme

@verydia/eval

Evaluation and regression harness for Verydia flows.

Dataset format

Eval datasets are JSON or YAML arrays of cases:

[
  {
    "input": { "text": "hello" },
    "expectedOutput": { "text": "hello", "length": 5 },
    "metadata": { "id": "case-1" }
  }
]
``

Each case:

- `input`: value passed directly to `flow.run(input, deps)`.
- `expectedOutput` (optional): deep JSON equality check against the flow output.
- `expectedBehavior` (optional): behavior assertions, e.g. guard activity.
- `metadata` (optional): arbitrary tags (scenario id, notes, etc.).

YAML is supported via a simple parse-then-JSON transform.

## API

```ts
import { evaluateFlow, loadEvalDatasetFromFile } from "@verydia/eval";
import type { BuiltFlow, FlowRuntimeDeps } from "@verydia/flow-dsl";

const flow: BuiltFlow<any, any> = /* your flow */;
const deps: FlowRuntimeDeps = { /* memoryStore, llmRegistry, etc. */ };

const dataset = await loadEvalDatasetFromFile("./my-dataset.json");
const result = await evaluateFlow({ flow, dataset, deps });

console.log(result.metrics.passRate);

Assertions

evaluateFlow supports basic assertions:

  • expectedOutput: deep/JSON equality against the actual output.
  • expectedBehavior.guardEvaluated: expect at least one policy.evaluate event.
  • expectedBehavior.noGuardEvaluation: expect no policy.evaluate events.

Metrics

For each case, the runner measures:

  • Latency (ms)
  • Number of llm.invoke events (LLM calls)
  • Number of mcp.call events (tool calls)

Aggregated metrics in EvalResult.metrics:

  • totalCases, passCount, failCount, passRate
  • averageLatencyMs, totalLatencyMs
  • totalLlmCalls, totalMcpCalls
  • Optional token and cost estimates (totalTokensIn, totalTokensOut, costEstimateTotal) if you provide an estimator.

CLI: verydia eval run

The Verydia CLI exposes a thin wrapper over @verydia/eval.

verydia eval run clinical-triage-dsl --dataset health-eval.json --json eval-report.json

This will:

  • Load the dataset from --dataset (JSON or YAML).
  • Run the specified demo flow (clinical-triage-dsl or clinical-triage-graph).
  • Print a summary (cases, pass rate, latency, LLM/MCP calls).
  • If --json is provided, write the full EvalResult to the given file.

Use these reports to compare runs over time and catch regressions in flow behavior, guard activation, or performance.