Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

skill-evalscope技能评估仪

Agent Skill

skill-evalscope 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,763

周安装

202

GitHub Stars

2

下载量

1,681
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-evalscope(技能评估仪)
来源仓库:https://github.com/yunnglin/skill-evalscope
安装命令:
openclaw skills install skill-evalscope
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-evalscope

简介

将自然语言转为 evalscope CLI 命令执行评估。

  • 支持 156+ 基准测试如 Math、Coding 等领域。
  • 适用于模型精度和性能的多维度评估场景。skill-evalscope 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需预先安装 evalscope 工具并配置运行环境。
  • 结果受测试集和参数设置影响,需多次验证稳定性。

SKILL.md

name
evalscope
description
>-

EvalScope

EvalScope is an LLM evaluation framework supporting 156+ benchmarks, performance stress testing, and result visualization. This skill converts natural language evaluation requests into evalscope CLI commands.

No source code access is required. All operations are performed through the evalscope CLI.

Prerequisites

Before running any evalscope command, check that it is installed:

evalscope --version

If not installed, install it:

# Basic installation
pip install evalscope

# Install all major backends (opencompass, vlmeval, rag, perf, app, aigc, service)
# Note: does NOT include sandbox (requires Docker) or dev/docs extras
pip install 'evalscope[all]'

# Selective extras
pip install 'evalscope[perf]'        # Performance benchmarking only
pip install 'evalscope[app]'         # Visualization UI only
pip install 'evalscope[rag]'         # RAG evaluation backend
pip install 'evalscope[sandbox]'     # Sandbox code execution (requires Docker)

Decision Tree

Follow this tree to determine the correct workflow:

User Request
|
+-- "evaluate / benchmark / test accuracy / score" --> Eval Workflow
+-- "throughput / latency / QPS / stress test / perf" --> Perf Workflow
+-- "view results / visualize / compare" --> Visualization Workflow
+-- "what benchmarks / list benchmarks / tell me about X" --> Benchmark Discovery Workflow
+-- "filter by tag / math benchmarks / coding benchmarks" --> Benchmark Discovery (--tag)
|
+-- Model source (for eval):
|   +-- Local model path or HuggingFace/ModelScope ID --> checkpoint mode
|   +-- API endpoint (URL + key) --> openai_api mode
|   +-- Just testing the pipeline --> mock_llm mode
|
+-- What to evaluate:
|   +-- User named specific datasets --> use directly with --datasets
|   +-- User described a capability (e.g. "math", "coding") --> use Quick Lookup Table below
|   +-- User wants to browse --> run: evalscope benchmark-info --list
|
+-- Additional configuration:
    +-- Limit samples --> --limit N
    +-- Output directory --> --work-dir PATH
    +-- Need full parameter list --> evalscope eval --help / evalscope perf --help
    +-- Complex configuration --> see eval-reference.md or perf-reference.md

Workflow 1: Model Evaluation (eval)

Use evalscope eval to evaluate model capabilities on benchmarks.

Step 1: Confirm Model Source

Ask the user how the model is served:

Local checkpoint (downloaded or local path):

evalscope eval --model Qwen/Qwen2.5-0.5B-Instruct --datasets gsm8k --limit 10

API service (OpenAI-compatible endpoint):

evalscope eval \
  --model qwen-plus \
  --datasets gsm8k arc \
  --api-url http://localhost:8000/v1/chat/completions \
  --api-key sk-xxx \
  --limit 10

When --api-url is provided, eval-type is automatically set to openai_api.

Anthropic API:

evalscope eval \
  --model claude-3-5-sonnet \
  --eval-type anthropic_api \
  --datasets mmlu \
  --api-key sk-ant-xxx

Mock mode (test pipeline without real model):

evalscope eval --model mock --eval-type mock_llm --datasets gsm8k --limit 5

Step 2: Select Benchmarks

If the user specified dataset names, use them directly with --datasets. If the user described a capability, use the Quick Lookup Table in the Benchmark Discovery section. For detailed benchmark info:

evalscope benchmark-info <name> --format markdown

Step 3: Configure Parameters

Defaults work for most cases. Suggest --limit 10 for first-run validation.

Key optional parameters:

  • --generation-config '{"temperature": 0.7, "max_tokens": 2048}' - generation settings
  • --dataset-args '{"gsm8k": {"few_shot_num": 4}}' - per-dataset config
  • --eval-backend Native|OpenCompass|VLMEvalKit|RAGEval - evaluation backend
  • --eval-batch-size N - batch size (default 1)
  • --work-dir PATH - output directory (default ./outputs)
  • --seed 42 - random seed

For the full parameter reference, see eval-reference.md.

Step 4: Build and Execute

  1. Show the full command to the user for confirmation
  2. Execute the command

- For quick tests (--limit <= 20): run in foreground - For full evaluations: run in background (may take hours)

  1. Output goes to ./outputs/<timestamp>/

Step 5: Interpret Results

After evaluation completes:

  1. Check reports: ls outputs/<timestamp>/reports/
  2. Read JSON reports: each file contains score, metrics, dataset_name, model_name
  3. Summarize: extract the score and metrics[].score fields to present results
  4. For HTML reports: check outputs/<timestamp>/reports/report.html

Output directory structure:

outputs/<timestamp>/
  configs/task_config.yaml    # Full run configuration
  logs/eval_log.log           # Evaluation log
  predictions/<model>/*.jsonl # Model predictions
  reviews/<model>/*.jsonl     # Review/judge results
  reports/<model>/*.json      # Score reports
  reports/report.html         # Summary HTML report

Workflow 2: Performance Benchmark (perf)

Use evalscope perf to stress-test model API endpoints.

Step 1: Confirm Endpoint

Required: --model (model name) and --url (API endpoint).

evalscope perf \
  --model qwen-plus \
  --url http://localhost:8000/v1/chat/completions \
  --api openai

Step 2: Choose Test Scenario

Simple throughput test:

evalscope perf \
  --model qwen-plus \
  --url http://localhost:8000/v1/chat/completions \
  --api openai \
  --dataset openqa \
  --parallel 1 \
  --number 100 \
  --stream

Concurrency gradient test (multiple parallel values):

evalscope perf \
  --model qwen-plus \
  --url http://localhost:8000/v1/chat/completions \
  --api openai \
  --dataset openqa \
  --parallel 1 5 10 20 \
  --number 100 500 1000 2000 \
  --stream

Note: --parallel and --number must have the same number of values (paired).

Precise input/output length test:

evalscope perf \
  --model qwen-plus \
  --url http://localhost:8000/v1/chat/completions \
  --api openai \
  --dataset random \
  --min-prompt-length 1000 \
  --max-prompt-length 1000 \
  --max-tokens 512 \
  --min-tokens 512 \
  --parallel 5 \
  --number 100

SLA auto-tuning (find max concurrency within SLA constraints):

evalscope perf \
  --model qwen-plus \
  --url http://localhost:8000/v1/chat/completions \
  --api openai \
  --dataset openqa \
  --sla-auto-tune \
  --sla-variable parallel \
  --sla-params '[{"name": "latency", "operator": "<=", "value": 5.0}]'

Local model test (auto-starts local inference server):

evalscope perf \
  --model Qwen/Qwen2.5-0.5B-Instruct \
  --api local \
  --dataset openqa \
  --parallel 1 \
  --number 10

Step 3: Key Parameters

  • --api: API protocol - openai (default), local, local_vllm, dashscope, custom
  • --stream / --no-stream: Enable/disable streaming (default: stream)
  • --max-tokens N: Max output tokens (default: 2048)
  • --temperature F: Sampling temperature (default: 0.0)
  • --dataset: Data source - openqa, random, speed_benchmark, random_vl, line_by_line, etc.
  • --tokenizer-path PATH: For accurate token counting

For the full parameter reference, see perf-reference.md.

Step 4: Execute and Read Results

Execute the command. Key output metrics:

MetricDescription
TTFTTime to First Token (seconds)
TPOTTime Per Output Token (seconds)
LatencyAverage request latency (seconds)
Request ThroughputRequests per second
Output Token ThroughputOutput tokens per second
Total Token ThroughputTotal tokens per second

Results include percentile statistics: p50, p75, p90, p95, p99.

An HTML report is auto-generated in outputs/. Read the console output for the report path.

Workflow 3: Visualization

Launch Gradio Web UI

evalscope app --outputs ./outputs --lang zh --server-port 7860

Options:

  • --outputs PATH - directory containing evaluation results (default: ./outputs)
  • --lang zh|en - interface language
  • --server-port N - port number
  • --server-name ADDR - bind address (default: 0.0.0.0)
  • --share - generate a public Gradio link

Requires: pip install 'evalscope[app]'

View HTML Reports Directly

Perf and eval both generate HTML reports in the output directory:

  • Eval: outputs/<timestamp>/reports/report.html
  • Perf: check console output for the exact report path

Workflow 4: Benchmark Discovery (benchmark-info)

List All Benchmarks

evalscope benchmark-info --list

Output: a table of all benchmarks with columns: Name, Pretty Name, Category, Tags, Metrics count, Subsets count.

Filter Benchmarks by Tag

When the user asks about a specific capability area (e.g. "what math benchmarks are there?"), use --tag to filter:

# Single tag
evalscope benchmark-info --list --tag Math

# Multiple tags (OR logic, case-insensitive)
evalscope benchmark-info --list --tag Coding Agent

# Other useful tag filters
evalscope benchmark-info --list --tag Chinese
evalscope benchmark-info --list --tag MultiModal
evalscope benchmark-info --list --tag LongContext
evalscope benchmark-info --list --tag Medical

Available tags correspond to the Tags column in the Quick Lookup Table below.

Get Benchmark Details (Text, Default)

evalscope benchmark-info gsm8k

Prints a detailed text summary including: name, dataset ID, category, tags, output types, few-shot count, aggregation method, train/eval splits, subsets, paper URL, metrics, description, prompt template, system prompt, configurable parameters (with types, defaults, choices), and data statistics (total samples, prompt length mean/min/max).

Get Benchmark Details (JSON)

evalscope benchmark-info gsm8k --format json

Returns the complete benchmark metadata as structured JSON. Key fields:

FieldDescription
meta.pretty_nameDisplay name
meta.dataset_idDataset source ID (ModelScope/HuggingFace)
meta.tagsCapability tags (Math, Reasoning, Coding, etc.)
meta.metricsEvaluation metrics with config (e.g. acc, f1)
meta.few_shot_numDefault few-shot count
meta.eval_splitDataset split used for evaluation
meta.subset_listAvailable subsets
meta.categoryCategory: llm, vlm, agent, aigc
meta.descriptionBenchmark description (markdown)
meta.prompt_templatePrompt template used for evaluation
meta.system_promptSystem prompt (if any)
meta.extra_paramsConfigurable parameters with types and defaults
meta.paper_urlLink to the benchmark paper
statistics.total_samplesTotal number of evaluation samples
statistics.subset_statsPer-subset sample counts and prompt length stats
statistics.prompt_lengthPrompt length statistics (mean, min, max, std)
sample_exampleA sample data example from the benchmark
readme.enFull English markdown documentation
readme.zhFull Chinese markdown documentation

Get Benchmark Details (Markdown)

evalscope benchmark-info gsm8k --format markdown

Returns a full markdown document with: overview, task description, key features, evaluation notes, properties table (metrics, default shots, splits), data statistics, and a sample example.

If --format markdown encounters an error, fall back to --format json and read the readme.en (English) or readme.zh (Chinese) field from the JSON output.

Query Multiple Benchmarks

evalscope benchmark-info gsm8k mmlu ceval --format json

Quick Lookup Table

Use this table for fast benchmark recommendations without running CLI commands:

User NeedTagsTypical Benchmarks
Math / reasoningMath, Reasoninggsm8k, math_500, aime24, competition_math
Coding / programmingCodinghumaneval, mbpp, live_code_bench
General knowledgeKnowledge, MCQmmlu, ceval, cmmlu, mmlu_pro
Chinese languageChineseceval, cmmlu, chinese_simpleqa
Multimodal / visionMultiModalmmmu, mm_bench, math_vista, mm_star
Instruction followingInstructionFollowingifeval, multi_if
Function calling / toolsFunctionCallingbfcl_v3, bfcl_v4, tool_bench
Long contextLongContextneedle_haystack, longbench_v2, cl_bench
Arena / model rankingArenaarena_hard, alpaca_eval
CommonsenseCommonsensehellaswag, winogrande
HallucinationHallucinationtruthfulqa
MedicalMedicalmedqa, medmcqa
AgentAgenttau_bench
Audio / speechAudio, SpeechRecognitionasr benchmarks

Common Evaluation Suites

Pre-built combinations for common evaluation needs:

  • General LLM: mmlu gsm8k bbh humaneval ifeval
  • Chinese capability: ceval cmmlu chinese_simpleqa
  • Math reasoning: gsm8k math_500 aime24 competition_math
  • Multimodal (VLM): mmmu mm_bench math_vista mm_star
  • Code generation: humaneval mbpp live_code_bench

General Notes

  • Always run evalscope --version before first use to verify installation
  • Default output directory: ./outputs/<timestamp>/
  • For first-run validation, always suggest --limit 5 or --limit 10
  • For API-based eval, confirm the service endpoint is reachable before starting
  • For local checkpoint eval, verify GPU availability and sufficient memory
  • Long-running evaluations: run in background, monitor with tail -f outputs/<timestamp>/logs/eval_log.log
  • On failure: read the log file for error details
  • To discover all available parameters: evalscope eval --help or evalscope perf --help
  • The --no-timestamp flag prevents creating timestamped subdirectories (useful for CI)
  • Use --use-cache PATH to reuse cached results from a previous run
  • Use --debug for verbose output during troubleshooting

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.1%
按下载量换算1,515

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills