Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

agent-evaluationAgent 人评价

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

2

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:agent-evaluation(Agent 人评价)
来源仓库:https://github.com/akillness/oh-my-gods
仓库路径:skills/agent-evaluation
安装命令:
npx skills add https://github.com/akillness/oh-my-gods --skill agent-evaluation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-gods --skill agent-evaluation

简介

制定 Agent 效果评估体系,涵盖评分维度与基准测试设计。

  • 适用于选择 grader 类型、定义 ops 指标和校准生产监控。
  • 使用时需区分“如何测量”与“如何实现功能”的不同目标。
  • 安装命令:npx skills add https://github.com/akillness/oh-my-gods --skill agent-evaluation
  • 建议结合人工审核与自动化 CI 门控提升评估可靠性。

SKILL.md

Agent Evaluation

Use this skill when the work is deciding how an AI agent should be measured, not when the work is simply building the feature itself.

Read references/grader-selection.md when you need help picking grader types, benchmark families, or score dimensions for a specific agent surface.

Read references/ops-and-calibration.md when you need harness design, transcript review, CI gates, sampling policy, saturation checks, or production monitoring guidance.

When to use this skill

  • The user needs an eval plan for a coding, research, conversational, or computer-use agent
  • The task is to choose code-based, model-based, or human graders
  • The user wants a benchmark suite, regression gate, or eval roadmap before shipping an agent change
  • The user needs to connect offline evals, CI checks, and production quality monitoring
  • The team needs to diagnose whether an apparent agent improvement is real, saturated, or benchmark-gamed

When not to use this skill

  • The task is to fix the application, model prompt, or product workflow itself
  • The user wants backend/API test implementation rather than an AI-agent eval system
  • The job is primarily research synthesis, RAG design, or agent implementation rather than measurement policy
  • The user already has a frozen eval harness and wants a bounded mutation loop on the skill package itself; route that to skill-autoresearch

Instructions

Step 1: Classify the agent surface and risk

Capture:

evaluation_brief:
  agent_type: coding | research | conversational | computer-use | mixed
  decision_to_make: launch-gate | regression-check | benchmark | diagnosis | production-monitoring
  primary_risk: correctness | safety | hallucination | workflow-breakage | latency | cost | user-satisfaction
  environment: local-repo | browser | api | document-workflow | external-system
  evidence_available:
    - existing tests
    - transcripts
    - production logs
    - reference answers
    - human reviewers
  constraints:
    determinism: high | medium | low
    budget: tight | medium | generous
    runtime: pr-check | nightly | scheduled | live-sampling

Do not start with grader mechanics before the surface and decision are explicit.

Step 2: Choose the grader stack

Pick the lightest stack that still proves the claim:

  • Use code-based graders when success can be checked through tests, files, DB state, exit codes, or structured outputs
  • Use model-based graders when open-ended quality must be judged but a rubric can still be made concrete
  • Use human review for ambiguous, safety-sensitive, or calibration-heavy slices
  • Mixed stacks are valid, but name the primary grader and the escalation path

Prefer outcome checks over path checks. Do not grade brittle step-by-step traces unless the workflow truly requires a fixed sequence.

Step 3: Design the suite

Define:

  • 20-50 representative tasks for an initial suite when possible
  • a balance of success cases, failure cases, and edge cases
  • required artifacts for each task: prompt, setup, expected outcome, grader, and timeout
  • score dimensions that map to the decision being made

For agent-specific guidance:

  • Coding agents: prioritize build, tests, spec match, and diff quality
  • Research agents: prioritize grounding, coverage, source quality, and factual verification
  • Conversational agents: prioritize resolution, policy adherence, turn economy, and human-judged quality
  • Computer-use agents: prioritize final UI or system state, not click-by-click replay

Step 4: Define harness and isolation

Specify:

  • execution environment,
  • reset strategy,
  • timeout and retry policy,
  • transcript capture,
  • flaky-case handling,
  • what belongs in PR checks versus nightly or scheduled runs

If the suite is nondeterministic, call that out and use repeated trials or sampling instead of pretending a single run is authoritative.

Step 5: Add production and calibration logic

Every plan should say:

  • what stays offline,
  • what gates merges or releases,
  • what is sampled in production,
  • how failures are reviewed,
  • how saturation or benchmark drift is detected,
  • when new failures graduate into regression tasks

Transcript review is part of the loop, not an optional afterthought.

Step 6: Return one evaluation packet

Return a compact packet with:

# Agent Evaluation Plan

## Scope
- Agent type:
- Decision:
- Primary risk:
- Confidence:

## Recommended grader stack
- Primary grader:
- Secondary grader or escalation:
- Why this stack fits:

## Suite design
- Task families:
- Positive / negative / edge balance:
- Success dimensions:
- Benchmark or source tasks:

## Harness and operations
- Environment:
- Reset / isolation:
- CI vs scheduled runs:
- Transcript capture:

## Production feedback loop
- Sampling policy:
- Alert threshold:
- Human review path:
- Saturation / drift check:

## Immediate next steps
1. ...
2. ...
3. ...

Best practices

  1. Start with the decision the eval must support, not with a favorite benchmark
  2. Prefer observable outcome graders over path-matching graders
  3. Keep transcript review in the loop for debugging and recalibration
  4. Split PR checks from slower nightly or production-sampling lanes
  5. Add new regression tasks from real failures instead of polishing only the benchmark
  6. Revisit skill-autoresearch only after the eval package is stable and still misses measurable goals

References

  • references/grader-selection.md
  • references/ops-and-calibration.md
  • Anthropic: Demystifying evals for AI agents
  • SWE-bench, WebArena, OSWorld, and tau2-bench for representative benchmark families

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.15%
按下载量换算39

Claude

30.04%
按下载量换算30

Cursor

16.86%
按下载量换算17

Gemini CLI

10.19%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills