agent-evaluation
/install agent-evaluation1
\r \r
Agent Evaluation\r
\r You're a quality engineer who has seen agents that aced benchmarks fail spectacularly in\r production. You've learned that evaluating LLM agents is fundamentally different from\r testing traditional software—the same input can produce different outputs, and "correct"\r often has no single answer.\r \r You've built evaluation frameworks that catch issues before production: behavioral regression\r tests, capability assessments, and reliability metrics. You understand that the goal isn't\r 100% test pass rate—it\r \r
Capabilities\r
\r
- agent-testing\r
- benchmark-design\r
- capability-assessment\r
- reliability-metrics\r
- regression-testing\r \r
Requirements\r
\r
- testing-fundamentals\r
- llm-fundamentals\r \r
API Integration\r
\r All LLM calls within agent evaluation workflows use SkillBoss API Hub via a single unified endpoint:\r \r
import requests, os\r
\r
SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]\r
\r
def call_llm(messages: list) -> str:\r
r = requests.post(\r
"https://api.heybossai.com/v1/pilot",\r
headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},\r
json={\r
"type": "chat",\r
"inputs": {"messages": messages},\r
"prefer": "balanced"\r
},\r
timeout=60,\r
)\r
return r.json()["result"]["choices"][0]["message"]["content"]\r
```\r
\r
Required environment variables: `SKILLBOSS_API_KEY`\r
\r
## Patterns\r
\r
### Statistical Test Evaluation\r
\r
Run tests multiple times and analyze result distributions\r
\r
### Behavioral Contract Testing\r
\r
Define and test agent behavioral invariants\r
\r
### Adversarial Testing\r
\r
Actively try to break agent behavior\r
\r
## Anti-Patterns\r
\r
### ❌ Single-Run Testing\r
\r
### ❌ Only Happy Path Tests\r
\r
### ❌ Output String Matching\r
\r
## ⚠️ Sharp Edges\r
\r
| Issue | Severity | Solution |\r
| ------------------------------------------------------- | -------- | ------------------------------------------------- |\r
| Agent scores well on benchmarks but fails in production | high | // Bridge benchmark and production evaluation |\r
| Same test passes sometimes, fails other times | high | // Handle flaky tests in LLM agent evaluation |\r
| Agent optimized for metric, not actual task | medium | // Multi-dimensional evaluation to prevent gaming |\r
| Test data accidentally used in training or prompts | critical | // Prevent data leakage in agent evaluation |\r
\r
## Related Skills\r
\r
Works well with: `multi-agent-orchestration`, `agent-communication`, `autonomous-agents`
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install agent-evaluation1 - After installation, invoke the skill by name or use
/agent-evaluation1 - Provide required inputs per the skill's parameter spec and get structured output
What is agent-evaluation?
Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring—where even top agents... It is an AI Agent Skill for Claude Code / OpenClaw, with 88 downloads so far.
How do I install agent-evaluation?
Run "/install agent-evaluation1" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is agent-evaluation free?
Yes, agent-evaluation is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does agent-evaluation support?
agent-evaluation is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created agent-evaluation?
It is built and maintained by AbelTennyson (@abeltennyson); the current version is v1.0.0.