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

@artemiskit/core

v0.3.0

Published

Core runner, evaluators, and storage for ArtemisKit LLM evaluation toolkit

Readme

@artemiskit/core

Core runtime, evaluators, and storage for the ArtemisKit LLM evaluation toolkit.

Installation

npm install @artemiskit/core
# or
bun add @artemiskit/core

Overview

This package provides the foundational components for ArtemisKit:

  • Runner - Execute test scenarios against LLM providers
  • Evaluators - Built-in expectation matchers (contains, exact, regex, fuzzy, llm_grader, json_schema)
  • Storage - Local filesystem and Supabase storage backends
  • Redaction - PII/sensitive data filtering with built-in patterns
  • Schema - YAML scenario parsing and validation

Usage

Most users should use the @artemiskit/cli package for running evaluations. This package is primarily for programmatic usage or building custom integrations.

import { 
  parseScenarioFile, 
  runScenario, 
  createAdapter 
} from '@artemiskit/core';

// Parse a scenario file
const scenario = await parseScenarioFile('./my-test.yaml');

// Create an adapter (requires adapter package to be registered)
const client = await createAdapter({
  provider: 'openai',
  apiKey: process.env.OPENAI_API_KEY,
});

// Run the scenario
const result = await runScenario({
  scenario,
  client,
  project: 'my-project',
  onCaseComplete: (caseResult, index, total) => {
    console.log(`Completed ${index + 1}/${total}: ${caseResult.passed ? 'PASS' : 'FAIL'}`);
  },
});

console.log(`Success: ${result.success}`);
console.log(`Passed: ${result.manifest.metrics.passed_cases}/${result.manifest.metrics.total_cases}`);

Note: The createAdapter function requires adapter packages (like @artemiskit/adapter-openai) to be installed and registered. For standalone usage, import adapters directly:

import { OpenAIAdapter } from '@artemiskit/adapter-openai';

const client = new OpenAIAdapter({
  provider: 'openai',
  apiKey: process.env.OPENAI_API_KEY,
});

Evaluators

Built-in expectation types:

| Type | Description | |------|-------------| | contains | Check if response contains text | | exact | Exact string match | | regex | Regular expression match | | fuzzy | Fuzzy string similarity (Levenshtein) | | llm_grader | LLM-based response grading | | json_schema | Validate JSON structure |

Redaction

Built-in patterns for sensitive data:

  • email - Email addresses
  • phone - Phone numbers
  • ssn - Social Security Numbers
  • credit_card - Credit card numbers
  • api_key - API keys (sk_, pk_, etc.)
  • jwt - JWT tokens
  • aws_key - AWS access keys
  • ipv4 - IPv4 addresses
  • secrets - Password/secret assignments
import { Redactor, BUILTIN_PATTERNS } from '@artemiskit/core';

const redactor = new Redactor({
  enabled: true,
  patterns: [BUILTIN_PATTERNS.EMAIL, BUILTIN_PATTERNS.PHONE],
});

const result = redactor.redact('Contact: [email protected]');
// result.text = 'Contact: [REDACTED]'

Related Packages

License

Apache-2.0