Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

eval-recipes-runner评估食谱跑步者

Agent Skill

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

总安装

2,351

周安装

101

GitHub Stars

55

下载量

824
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:eval-recipes-runner(评估食谱跑步者)
来源仓库:https://github.com/rysweet/amplihack
仓库路径:skills/eval-recipes-runner
安装命令:
npx skills add https://github.com/rysweet/amplihack --skill eval-recipes-runner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rysweet/amplihack --skill eval-recipes-runner

简介

eval-recipes-runner 用于运行 Microsoft 的 eval-recipes 基准测试,验证 amplihack 改进对基线代理的效果。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要测试特定分支、对比基线或生成评估报告时使用。
  • 可运行指定任务、比较前后分数,并输出结构化结果供进一步分析。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

eval-recipes Runner Skill

Purpose

Run Microsoft's eval-recipes benchmarks to validate amplihack improvements against baseline agents.

When to Use

  • User asks to "test with eval-recipes"
  • User says "run the evals" or "benchmark this change"
  • User wants to validate improvements against codex/claude_code
  • Testing a PR branch to prove it improves scores

Capabilities

I can run eval-recipes benchmarks to:

  1. Test specific amplihack branches
  2. Compare against baseline agents (codex, claude_code)
  3. Run specific tasks (linkedin_drafting, email_drafting, etc.)
  4. Compare before/after scores for PRs
  5. Generate reports with score improvements

How It Works

Setup (One-Time)

# Clone eval-recipes from Microsoft
git clone https://github.com/microsoft/eval-recipes.git ~/eval-recipes
cd ~/eval-recipes

# Copy our agent configs
cp -r $(pwd)/.claude/agents/eval-recipes/* data/agents/

# Install dependencies
uv sync

Running Benchmarks

Test a specific branch:

# Update install.dockerfile to use specific branch
# Then run benchmark
cd ~/eval-recipes
uv run eval_recipes/main.py --agent amplihack --task linkedin_drafting --trials 3

Compare before/after:

# Test baseline (main)
uv run eval_recipes/main.py --agent amplihack --task linkedin_drafting

# Test PR branch (edit install.dockerfile to checkout PR branch)
uv run eval_recipes/main.py --agent amplihack_pr1443 --task linkedin_drafting

# Compare scores

Available Tasks

Common tasks from eval-recipes:

  • linkedin_drafting - Create tool for LinkedIn posts (scored 6.5/100 before PR #1443)
  • email_drafting - Create CLI tool for emails (scored 26/100 before)
  • arxiv_paper_summarizer - Research tool
  • github_docs_extractor - Documentation tool
  • Many more in ~/eval-recipes/data/tasks/

Typical Workflow

When user says "test this change with eval-recipes":

  1. Identify the branch/PR to test
  2. Update agent config to use that branch: # In.claude/agents/eval-recipes/amplihack/install.dockerfile RUN git clone https://github.com/rysweet/...git /tmp/amplihack && \ cd /tmp/amplihack && \ git checkout BRANCH_NAME && \ pip install -e.
  3. Copy to eval-recipes: cp -r.claude/agents/eval-recipes/* ~/eval-recipes/data/agents/
  4. Run benchmark: cd ~/eval-recipes uv run eval_recipes/main.py --agent amplihack --task TASK_NAME --trials 3
  5. Report scores and compare with baseline

Expected Scores

Baseline (main branch):

  • Overall: 40.6/100
  • LinkedIn: 6.5/100
  • Email: 26/100

With PR #1443 (task classification):

  • Expected: 55-60/100 (+15-20 points)
  • LinkedIn: 30-40/100 (creates actual tool)
  • Email: 45/100 (consistent execution)

Example Usage

User says: "Test PR #1443 with eval-recipes on the LinkedIn task"

I do:

  1. Update install.dockerfile to checkout feat/issue-1435-task-classification
  2. Copy to eval-recipes: cp -r.claude/agents/eval-recipes/* ~/eval-recipes/data/agents/
  3. Run: cd ~/eval-recipes && uv run eval_recipes/main.py --agent amplihack --task linkedin_drafting --trials 3
  4. Report results: "Score: 35.2/100 (up from 6.5 baseline)"

Prerequisites

  • eval-recipes cloned to ~/eval-recipes
  • API key in environment: export ANTHROPIC_API_KEY=sk-ant-...
  • Docker installed (for containerized runs)
  • uv installed: curl -LsSf https://astral.sh/uv/install.sh | sh

Notes

  • Benchmarks take 2-15 minutes per task depending on complexity
  • Multiple trials (3-5) give more reliable averages
  • Docker builds can be cached for speed
  • Results saved to .benchmark_results/ in eval-recipes repo

Automation

For fully autonomous testing:

# Test suite for a PR
tasks="linkedin_drafting email_drafting arxiv_paper_summarizer"
for task in $tasks; do
  uv run eval_recipes/main.py --agent amplihack --task $task --trials 3
done

# Compare results
cat .benchmark_results/*/amplihack/*/score.txt

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.1%
按下载量换算232

Antigravity

21.57%
按下载量换算178

OpenCode

19.68%
按下载量换算162

Gemini CLI

14.74%
按下载量换算121

windsurf

7.68%
按下载量换算63

Cursor

3.89%
按下载量换算32

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills