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`
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-evaluation1 - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-evaluation1触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
agent-evaluation 是什么?
Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring—where even top agents... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 88 次。
如何安装 agent-evaluation?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-evaluation1」即可一键安装,无需额外配置。
agent-evaluation 是免费的吗?
是的,agent-evaluation 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
agent-evaluation 支持哪些平台?
agent-evaluation 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 agent-evaluation?
由 AbelTennyson(@abeltennyson)开发并维护,当前版本 v1.0.0。