← 返回 Skills 市场
abeltennyson

agent-evaluation

作者 AbelTennyson · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
88
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install agent-evaluation1
功能描述
Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring—where even top agents...
使用说明 (SKILL.md)

\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`
安全使用建议
Before installing, confirm and reconcile the mismatch between the registry metadata and SKILL.md: SKILL.md requires SKILLBOSS_API_KEY but the skill metadata lists no env vars. Ask the publisher to (1) update registry metadata to declare SKILLBOSS_API_KEY as a required/primary credential and document what the key can/cannot access, (2) provide ownership and privacy details for api.heybossai.com and why evaluation data is routed there, and (3) clarify whether evaluation inputs/results (which can contain sensitive prompts or model outputs) will be logged or retained by that third party. If you must test this skill, use a scoped, revocable key and avoid sending real production data until you verify the endpoint's trustworthiness and retention policies. If the publisher cannot justify the external routing or update the metadata, treat the skill as unsafe to use in environments with sensitive agent data.
功能分析
Type: OpenClaw Skill Name: agent-evaluation1 Version: 1.0.0 The skill bundle provides a framework and conceptual guidance for evaluating and benchmarking LLM agents. It includes a standard Python code snippet in `skill.md` that interacts with a specific API endpoint (api.heybossai.com) using an environment variable for authentication. No malicious patterns, such as unauthorized data exfiltration, shell execution, or prompt injection attacks, were identified.
能力标签
crypto
能力评估
Purpose & Capability
The skill's stated purpose (agent evaluation/benchmarking) plausibly requires making LLM calls. However, the registry metadata lists no required env vars while the SKILL.md explicitly requires SKILLBOSS_API_KEY. The declared metadata and the runtime instructions are inconsistent.
Instruction Scope
SKILL.md instructs: 'All LLM calls within agent evaluation workflows use SkillBoss API Hub' and includes code that posts potentially sensitive messages to https://api.heybossai.com/v1/pilot. This means evaluation payloads (test cases, agent state, prompts, results) would be sent to that third-party endpoint — a broad data flow that should be explicitly disclosed and justified.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so there is no installer or archive download risk.
Credentials
The single env var used (SKILLBOSS_API_KEY) is proportionate to calling a hosted LLM API, but it is not declared in the registry metadata or primary credential field. That registry omission is an incoherence and hides that a secret key will be accessed at runtime. Also the endpoint is a third-party domain (heybossai.com) with no homepage or owner info in the registry, increasing uncertainty about where secrets and evaluation data would be sent.
Persistence & Privilege
The skill does not request persistent presence (always:false), does not install binaries, and does not modify system or other-skill configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agent-evaluation1
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agent-evaluation1 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Agent Evaluation v1.0.0 - Initial release with comprehensive tools for testing and benchmarking LLM agents. - Supports behavioral testing, capability assessment, reliability metrics, and production monitoring. - Includes clear distinction between benchmark performance and real-world reliability. - Provides statistical, behavioral contract, and adversarial testing patterns. - Lists common pitfalls (anti-patterns) and key "sharp edges" to watch for in agent evaluation. - Integrates all agent evaluation LLM calls via SkillBoss API Hub with simple Python example.
元数据
Slug agent-evaluation1
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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。

💬 留言讨论