by NiceEval
build eval for your agent in 10 mins
# Add to your Claude Code skills
git clone https://github.com/NiceEval/NiceEvalLast scanned: 8/23/2026
{
"issues": [
{
"type": "npm-audit",
"message": "brace-expansion: brace-expansion: DoS via unbounded intermediate arrays, bypassing the CVE-2026-14257 mitigation",
"severity": "high"
},
{
"type": "npm-audit",
"message": "nx: Vulnerability found",
"severity": "high"
}
],
"status": "WARNING",
"scannedAt": "2026-08-23T04:35:53.512Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}NiceEval is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by NiceEval. build eval for your agent in 10 mins. It has 106 GitHub stars.
NiceEval returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.
Clone the repository with "git clone https://github.com/NiceEval/NiceEval" and add it to your Claude Code skills directory (see the Installation section above).
NiceEval is primarily written in TypeScript. It is open-source under NiceEval on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh NiceEval against similar tools.
No comments yet. Be the first to share your thoughts!
Requires a passing catalog security scan. Resolve the flagged issues and resubmit to enable featuring.
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Progressive, agent-native evals tool for AI agents, with excellent DX
中文 | Deutsch | Español | français | 日本語 | 한국어 | Português | Русский
NiceEval is an agent eval tool that helps teams measure, evaluate, and improve AI in production. With NiceEval, teams can compare models, iterate on agents, catch regressions, and keep improving their AI applications using real user data.
NiceEval is local-first at its core: your evals run in your own environment. When your team needs to share evals or track regressions, you can push a Report to platforms like BrainTrust, or export a custom report.
NiceEval is an Agent-Native eval tool. The Dataset / golden pattern of building an Input and an Expected Output doesn't fit real agent evaluation. Agents today need to be evaluated at a finer grain — multi-turn conversations, multi-agent collaboration, tool calls, skill loading — and NiceEval does this better.
It also coexists with LangFuse and BrainTrust: use them for tracing, or upload eval results to both.
NiceEval supports two integration modes, depending on whether the agent under test needs an isolated sandbox filesystem.
Mode 1: Sandbox (Docker, E2B) — run coding agents like Codex and Claude Code that need a sandbox
evals/*.eval.ts
│
▼
┌────────────┐
│ NiceEval │
└────────────┘
│
│ Agent adapter (official)
▼
┌────────────────────────────────┐
│ Docker Sandbox │
│ ┌────────────────────────┐ │
│ │ Codex / Claude Code │ │
│ │ apps needing isolation │ │
│ └────────────────────────┘ │
└────────────────────────────────┘
Mode 2: Direct — connect straight to your own AI Agent
evals/*.eval.ts
│
▼
┌────────────┐
│ NiceEval │
└────────────┘
│
│ Agent adapter (official, or your own implementation)
▼
┌──────────────────────────┐
│ your own AI Agent │
│ (AI SDK·LangGraph·Pi) │
└──────────────────────────┘
| Concept | In one line |
|---|---|
| Eval | A test case: written in evals/*.eval.ts, describing what to check. |
| Experiment | A checked-in run configuration: which Adapter, which model, which flags. |
| Adapter | The layer that connects to the system under test: implement one send, get back a standard event stream. |
| Sandbox | Only needed for coding agents that require an isolated workspace; a direct web agent doesn't need one. |
| Tier | Three levels of Adapter integration effort: Tier 1 wires up send only, Tier 2 adds OTel for a call waterfall, Tier 3 makes invasive changes for feature A/B testing. |
See the full glossary in the architecture overview.
// evals/eval-tool-call.eval.ts
import { defineEval } from "niceeval";
import { includes, jsonMatch, pattern, toolMatch } from "niceeval/expect";
export default defineEval({
judge: true,
description: "Verify the agent calls the weather tool and answers from its result",
async test(t) {
const turn = await t.send("What's the weather in Beijing today?");
turn.succeeded();
await t.group("calls get_weather with the right city", () => {
turn.calledTool(toolMatch("get_weather", { input: jsonMatch({ city: "Beijing" }) }));
t.check(turn.message, pattern(/°C|sunny|cloudy|rain/));
});
const second = await t.send("What about Shanghai tomorrow?");
t.check(second.message, includes("Shanghai"));
turn.judge.autoevals
.closedQA("Does the reply use the tool's weather data instead of making up a temperature?")
.gate(0.7);
},
});
// experiments/local.ts
import { defineExperiment } from "niceeval";
import { webAgent } from "./adapter"; // your agent adapter, pointed at the system under test
export default defineExperiment({
agent: webAgent({ baseUrl: "http://127.0.0.1:5188" }),
model: "gpt-5.5"
});
pnpm exec niceeval exp local eval-tool-call // run only eval-tool-call under the local experiment
pnpm exec niceeval view // view eval results
READ https://niceeval.com/INIT.md and set up niceeval for this repo: install it, integrate it with this project, and run the first eval end to end.
Start from the scenario that matches what you need to evaluate:
Official Adapters
Agent Software
Agent Frameworks
This project was inspired by — or had its code learned by AI from — the projects below:
Thanks to Linux.do for their support and feedback during the project's early development.