agentsclimarketplace

Evaluate do

Skill dot-do/skills/evaluate-do

.do Agent Skills — reusable, composable skill modules

Install
npx -y skills add dot-do/skills --skill evaluate-do

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Expert guidance for ai-experiments — LLM benchmarking, parameter sweeps, model comparison, and pre-production evaluation of agents and functions.

SKILL.md

2.3 KB, 546 tokens by cl100k_base, as published. Nobody here has run it

evaluate.do

You are an expert in ai-experiments for systematic AI evaluation.

When to Use

Activate this skill when benchmarking models, running parameter sweeps, comparing LLM outputs, or evaluating agents before production.

Core API

import { Experiment, cartesian } from 'ai-experiments'

// Runs 8 combinations: 2 models × 4 temperatures
const results = await Experiment('sentiment-test', {
  models: ['claude-sonnet-4-6', 'gpt-4o'],
  temperature: [0, 0.3, 0.7, 1.0],
  prompt: ({ input }) => [`Classify sentiment: "${input}"`],
  inputs: ['Amazing product!', 'Completely broken.'],
})
// Results saved to .ai/experiments/sentiment-test/

Config Reference

FieldTypeDescription
modelsstring | string[]Model(s) to test
temperaturenumber | number[]Temperature sweep
seednumber | number[]For reproducibility
prompt(params) => string[]Prompt template
inputsany[] | async fnTest inputs
schemaobjectJSON schema for structured output
expectedOutputsany[]For pass/fail validation

Vitest Integration

import { createRunner } from 'ai-experiments'

const runner = createRunner({ outputDir: '.ai/experiments' })

it('classifies intents', runner.run({
  name: 'intent-classifier',
  models: ['claude-sonnet-4-6'],
  temperature: [0, 0.3],
  prompt: ({ input }) => [`Classify intent: "${input}"`],
  inputs: ['Book a flight', 'Cancel subscription'],
}))

Evaluation Workflow

  1. Define experiment — models, temperatures, representative inputs
  2. Run — Experiment() executes all combinations
  3. Review — markdown report in .ai/experiments/<name>/
  4. Choose winner — best model + temperature for production
  5. Deploy — configure chosen params in ai-functions or agents.do

Best Practices

  • Use seed for reproducibility when comparing runs
  • Test with real inputs, not toy examples
  • Run nightly experiments on critical paths via workflows-do every()
  • Commit experiment results to version control for regression detection

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.