← Back to Skills Marketplace
abeltennyson

agent-evaluation

by AbelTennyson · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
88
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install agent-evaluation1
Description
Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring—where even top agents...
README (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`
Usage Guidance
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.
Capability Analysis
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.
Capability Tags
crypto
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agent-evaluation1
  3. After installation, invoke the skill by name or use /agent-evaluation1
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug agent-evaluation1
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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.

💬 Comments