evaluate-environments
Manage and analyze evaluations for AI agent tasksets using the prime CLI for benchmarking and debugging.
Install
mkdir -p .claude/skills/evaluate-environments && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4589" && unzip -o skill.zip -d .claude/skills/evaluate-environments && rm skill.zipInstalls to .claude/skills/evaluate-environments
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Run and evaluate verifiers tasksets. Set up the necessary config files and observe the runs and their results.Key capabilities
- →Validate evaluation configurations without model calls
- →Run model-free gold validation for tasksets
- →Perform small runs to verify evaluation correctness
- →Inspect successful, zero-reward, and errored traces
- →Configure taskset, harness, and runtime settings
- →Set sampling parameters for model evaluations
How it works
The skill uses the `prime eval` CLI to run evaluations, allowing dry-runs, small sample testing, and full runs with configurable taskset, harness, runtime, and sampling parameters.
Inputs & outputs
When to use evaluate-environments
- →Execute benchmark sweeps for AI tasksets
- →Run dry-runs to validate evaluation configurations
- →Analyze failure traces and sample-level outputs
- →Compare performance across different models or harnesses
About this skill
Evaluate Tasksets
Goal
Set up an evaluation for a taskset in the correct way to reproduce results from others or evaluate a model and harness combination on a given taskset.
Canonical path
Use the prime CLI
prime eval run <MY_ENV>
Core workflow
- Resolve and validate config without model calls:
prime eval run <MY_ENV> --dry-run
- Run model-free gold validation when the taskset implements
validate:
prime eval validate <MY_ENV> --runtime.type subprocess
- Do a small run to see whether it works correctly:
prime eval run <MY_ENV> -m deepseek/deepseek-v4-flash -n 3 -r 1
- Inspect successful, zero-reward, and errored traces.
- Scale only after task loading, harness capability, runtime lifecycle, and scoring are correct.
When the user requests a full run, do not restrict the number of tasks. Ask for the appropriate harness to use (if not specified)
IDs and plugin resolution
my-tasksetresolves an importable local package.owner/nameinstalls a Hub package on demand.owner/name@versionpins a Hub version.
The leading ID is shorthand for --env.taskset.id. A harness belongs to an agent — --env.agent.harness.* on the single-agent env, --env.<agent>.harness.* on a multi-agent one (there is no run-level --harness.*):
prime eval run owner/name --env.agent.harness.id codex --env.agent.runtime.type prime
The env — the control flow between agents — owns the whole [env] block. Empty --env.id
keeps the taskset's own story (its exported Env subclass, else the single-agent
env); --env.id pairs a reusable env with any taskset, its knobs typed under --env.*:
prime eval run my-task-v1 --env.id best-of-n --env.n 8 # pass@k / rejection sampling
prime eval run my-task-v1 --env.id agentic-judge \
--env.judge.runtime.type docker # a judge agent verifies each attempt in a sandbox
Disabling tools
Almost every harness comes with a disabled_tools list, which can be used to disable one or multiple tools:
[env.agent.harness]
disabled_tools = ["shell_tool"]
The names of these tools are set by the respective harness. Research the relevant first party documentation for the given harness for the relevant name(s). Some harnesses do not offer support to disable tools.
Config discovery
The CLI help is generated from the current config classes. Include the taskset and env ids you plan to use before --help so their concrete config fields are loaded:
uv run eval my-task-v1 \
--env.id best-of-n \
--help
For implementation details and defaults, start at verifiers/v1/configs/cli/eval.py and follow its fields into verifiers/v1/configs/. Client configs live in verifiers/v1/configs/client.py, sampling in verifiers/v1/types.py, and runtime- and harness-specific configs next to their implementations in verifiers/v1/runtimes/ and verifiers/v1/harnesses/. Custom taskset and env config fields live next to those implementations.
Typed taskset overrides
Taskset settings:
prime eval run my-task-v1 --env.taskset.split test --env.taskset.difficulty hard
Harness and runtime settings:
prime eval run my-task-v1 \
--env.agent.harness.id rlm \
--env.agent.runtime.type docker \
--env.agent.runtime.cpu 4 \
--env.agent.runtime.memory 8
Sampling:
prime eval run my-task-v1 \
--sampling.temperature 0.7 \
--sampling.top-p 0.95 \
--sampling.max-tokens 2048 \
--sampling.reasoning-effort medium
Always research the correct sampling parameters first. This is one of the most important settings, so make sure to find the correct values. For open models, you can find them on Hugging Face in the README and/or in the generation config.
Your parameter selection or settings should leave room for full runs, and you should not restrict things like tokens or number of turns unless specified by the user.
Leave optional settings unset unless the user asks for them. Always confirm the harness, runtime, and sampling parameters before running an evaluation.
Reproducible TOML
You can also use a TOML:
model = "openai/gpt-5-mini"
[env.taskset]
id = "my-task-v1"
split = "test"
[env.agent]
runtime = { type = "subprocess" }
[env.agent.harness]
id = "bash"
[sampling]
temperature = 0.7
prime eval run @ configs/my-eval.toml
Retries
Whole-rollout retry is opt-in. That means if something fails in the rollout, the whole rollout is retried. This is very useful for large-scale runs. You can also restrict certain errors from the retries:
prime eval run my-task-v1 \
--env.agent.retries.max-retries 2 \
--env.agent.retries.include SandboxError ProviderError \
--env.agent.retries.exclude TaskError
Output and resume
Default output:
outputs/<env>--<model>--<harness>/<uuid>/
├── config.toml
├── traces.jsonl
└── eval.log
Set an exact path with -o. traces.jsonl is one episode per line — the episode's traces plus their shared standing — appended after each episode finishes, so an episode is durable whole or not at all (a torn last line is the whole episode redone on resume).
Resume in place:
prime eval run --resume /path/to/run
Trace inspection
For each representative sample inspect:
taskand prompt fields;branches, assistant messages, tool messages, and stop condition;- named
rewards, aggregatereward, andmetrics; - persisted
infoartifacts; error/errorsand boundary type;- per-call
callsrecords (model, sampling, finish reason, usage, timing, error) linked to the graph; - usage and stage timing;
- token/mask/logprob fields when using the training client.
Classify outcomes:
- Valid completion and correct reward.
- Valid completion with low reward (model/task outcome).
- Truncated completion (budget outcome).
- Captured rollout error (provider, harness, tool, user, runtime, task, or interception).
Do not average these categories together without reporting failure rate.
Metrics interpretation
- Binary rewards support solve rate and pass@k-style analysis.
- Continuous rewards need distributions, quantiles, and per-task/group comparisons.
- Group rewards must be interpreted with their comparison rule and group size.
- Always inspect samples before attributing a delta to model quality.
- Keep taskset, harness, runtime, sampling, and selected task indices fixed across variants.
- Do not overinterpret a tiny smoke run.
When not to use it
- →When the goal is not to reproduce results or evaluate a model/harness combination
Limitations
- →Some harnesses do not offer support to disable tools
- →Do not overinterpret a tiny smoke run
How it compares
This skill provides a structured command-line interface for running and analyzing AI model evaluations with detailed configuration options and output, unlike manual testing or ad-hoc script execution.
Compared to similar skills
evaluate-environments side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| evaluate-environments (this skill) | 1 | 27d | Review | Intermediate |
| backtesting-frameworks | 17 | 2mo | No flags | Advanced |
| evaluating-machine-learning-models | 1 | 27d | Review | Intermediate |
| openjudge | 0 | 5mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by PrimeIntellect-ai
View all by PrimeIntellect-ai →You might also like
backtesting-frameworks
wshobson
Build robust backtesting systems for trading strategies with proper handling of look-ahead bias, survivorship bias, and transaction costs. Use when developing trading algorithms, validating strategies, or building backtesting infrastructure.
evaluating-machine-learning-models
jeremylongshore
Build this skill allows AI assistant to evaluate machine learning models using a comprehensive suite of metrics. it should be used when the user requests model performance analysis, validation, or testing. AI assistant can use this skill to assess model accuracy, p... Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.
openjudge
agentscope-ai
>
generate-validation-notebook
monte-carlo-data
Generate SQL validation notebooks for dbt changes. Pass a GitHub PR URL or local dbt repo path.
langsmith-evaluator
dhar174
INVOKE THIS SKILL when building evaluation pipelines for LangSmith. Covers three core components: (1) Creating Evaluators - LLM-as-Judge, custom code; (2) Defining Run Functions - how to capture outputs and trajectories from your agent; (3) Running Evaluations - locally with evaluate() or auto-run v
lofn-qa
LocalSymmetry
Audit, validate, repair, and classify completed Lofn pipeline outputs. Use after music/image/video/story pipeline completion or suspicious partial runs. Do NOT use for creative generation or finalist ranking.