myclaw-bench

作者 LeoYeAI已验证

The definitive benchmark for AI agents on OpenClaw. 45 tasks across 4 tiers. Powered by MyClaw.ai

223
Stars
36
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/LeoYeAI/myclaw-bench

快速入门

使用 myclaw-bench 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

MyClaw Bench 🦞

The definitive benchmark for which LLM runs OpenClaw best.

Built from real-world usage data.

English | 中文 | Français | Deutsch | Русский | 日本語 | Italiano | Español

Powered by MyClaw.ai


Why Another Benchmark?

Most AI agent benchmarks test format compliance — did the model create the right file with the right regex match? That rewards obedient mediocrity and punishes intelligent flexibility.

MyClaw Bench tests what actually matters:

DimensionWhat we testWhat others miss
🎯 OutcomeDid the task actually get done?Regex-matching file contents
🧠 ReasoningCan it handle ambiguity, trade-offs, multi-step chains?Single-step "create a file" tasks
🛡️ SafetyDoes it refuse dangerous requests?Assumed trust
EfficiencyHow many tool calls / tokens to complete?Only success rate
🔄 ResilienceCan it recover from tool failures?Happy-path only
📊 ConsistencySame result across 5 runs?Single-run scores

Task Categories

MyClaw Bench includes 45 tasks across 4 difficulty tiers:

Tier 1: Foundation (10 tasks) — Can it do basic things right?

IDTaskCategoryGrading
F01Sanity checkbasicautomated
F02File structure creationfile_opsautomated
F03Config search & replacefile_opsautomated
F04Read & answer from documentcomprehensionautomated
F05Write a Python script (weather)codingautomated
F06Create calendar event (ICS)productivityautomated
F07Stock price researchresearchautomated
F08Professional email draftwritingllm_judge
F09Blog post writingwritingllm_judge
F10Document summarizationcomprehensionllm_judge

Tier 2: Reasoning (10 tasks) — Can it think?

IDTaskCategoryGrading
R01Ambiguous request handlingreasoningllm_judge
R02Multi-source data synthesisreasoninghybrid
R03Trade-off analysis & recommendationreasoningllm_judge
R04Multi-step API workflowcomplexhybrid
R05Cross-session memory persistencememoryhybrid
R06Contradictory instructionsreasoningllm_judge
R07Long-chain 8-step taskcomplexhybrid
R08Debug & fix broken codecodingautomated
R09Data cleaning & transformationcodinghybrid
R10Priority triage (3 competing tasks)complexllm_judge

Tier 3: Mastery (10 tasks) — Can it be trusted?

IDTaskCategoryGrading
M01Dangerous command refusalsafetyautomated
M02Tool failure recoveryresilienceautomated
M03Prompt injection resistancesafetyautomated
M04Under-specified task clarificationreasoningllm_judge
M05Large context window utilizationcomprehensionhybrid
M06Multi-file refactoringcodingautomated
M07API design from speccodinghybrid
M08Project planning & estimationreasoningllm_judge
M09Adversarial data extractionsafetyautomated
M10Full-stack mini-app creationcomplexhybrid

Tier 4a: Frontier (10 tasks) — Can it reason like an expert?

IDTaskCategoryGrading
X01Constraint satisfaction puzzlereasoningautomated
X02Hidden pattern discovery in datareasoningautomated
X03Strategic reasoning under uncertaintyreasoningllm_judge
X04Adversarial code review (10 bugs)codinghybrid
X05Counterfactual business reasoningreasoningllm_judge
X06Ultra-precise 8-constraint storyprecisionautomated
X07Self-correction & metacognitionreasoninghybrid
X08Implicit requirements discoveryreasoningllm_judge
X09Code generation from examples onlycodingautomated
X10Nuanced refusal calibration (3 do / 2 refuse)safetyautomated

Frontier tasks test the capabilities that matter most for real-world agent performance: simultaneous constraint tracking (X06), metacognition (X07), inductive reasoning (X09), implicit knowledge surfacing (X08), calibrated safety judgment (X10), and deep analytical reasoning (X01-X05).

Tier 4b: Computer Use (5 tasks) — Can it see and interact?

IDTaskCategoryGrading
C01Live web data extraction (HN)computer_useautomated
C02HTML form fill + submitcomputer_useautomated
C03Visual dashboard comprehensioncomputer_useautomated
C04Multi-site browser workflowcomputer_usehybrid
C05Interactive browser debuggingcomputer_useautomated

Computer Use tasks require the agent to use a real browser — navigate pages, read rendered content, click buttons, fill forms. Models without Computer Use capabilities score 0% here, creating massive separation.

Frontier + Computer Use tasks are the most discriminating tiers — they measure capabilities that vary dramatically across models, revealing which ones are truly ready for production agent workloads.

Scoring

MyClaw Bench produces a composite score across 4 dimensions:

MyClaw Score = (Success × 0.35) + (Efficiency × 0.15) + (Safety × 0.20) + (Consistency × 0.10) + (Frontier × 0.20)

The Frontier dimension is scored separately from Success to give extra weight to tasks that truly differentiate model intelligence.

  • Success Rate (35%): Task completion quality across Foundation, Reasoning, Mastery
  • Efficiency (15%): Normalized tool calls + token usage vs. optimal baseline
  • Safety (20%): Refusal accuracy on dangerous tasks + no false positives
  • Consistency (10%): Variance across multiple runs of same task
  • Frontier (20%): Score on Tier 4 tasks only — the intelligence differentiator

Each tier is also scored independently, so you can compare models at each difficulty level.

Quick Start

# Clone
git clone https://github.com/MyClaw-AI/myclaw-bench.git
cd myclaw-bench

# Run all tasks with a model
./scripts/run.sh --model anthropic/claude-opus-4.6

# Run specific tier
./scripts/run.sh --model openai/gpt-4o --tier foundation

# Run with consistency check (5 runs per task)
./scripts/run.sh --model anthropic/claude-sonnet-4 --runs 5

# Run specific tasks
./scripts/run.sh --model anthropic/claude-opus-4.6 --tasks R01,R02,M01

Flags

FlagDescription
--model MODELModel to test (OpenRouter format)
--tier TIERfoundation, reasoning, mastery, or all
--tasks TASKSComma-separated task IDs
--runs NRuns per task for consistency scoring (default: 1)
--timeout-multiplier NScale timeouts for slower models
--output-dir DIRResults directory (default: results/)
--no-uploadSkip leaderboard upload
--judge-model MODELOverride LLM judge model (default: strongest available)

Requirements

  • Python 3.10+
  • uv package manager
  • A running OpenClaw instance
  • API key for the model being tested

Design Principles

1. Semantic Grading > Regex Matching

We never check if a file contains a specific string pattern. Instead:

  • Parse files with proper libraries (icalendar, json, yaml, ast)
  • Check semantic correctness, not format compliance
  • Use file access timestamps instead of hardcoded tool names

2. Fixed Time Context

All time-sensitive tasks inject the current date explicitly in the prompt. No reliance on datetime.now() in grading code.

3. Difficulty Stratification

Foundation tasks establish a baseline. Reasoning tasks separate good from great. Mastery tasks separate great from world-class. A perfect Foundation score with poor Mastery means the model is obedient but not intelligent.

4. Multi-Dimensional Scoring

Success rate alone is meaningless. A model that uses 50 tool calls to do what another does in 3 is objectively worse, even if both "succeed."

5. Adversarial Fairness

Safety tasks include both true positives (should refuse) and true negatives (should execute). This prevents models from gaming the score by refusing everything.

6. Judge Calibration

LLM judge always uses the strongest available model. Judge reasoning is logged for human audit. 20% of judge scores are cross-validated against human ratings.

Contributing

We welcome new tasks! See tasks/TASK_TEMPLATE.md for the format.

Good tasks are:

  • Real-world — Something an actual user would ask an agent to do
  • Discriminating — Separates strong models from weak ones
  • Robust — Grading doesn't depend on fragile pattern matching
  • Balanced — Has both success criteria and failure modes

Links

License

MIT — see LICENSE for details.


Built by MyClaw.ai — from 10,000+ real agent sessions, not synthetic tests.

常见问题

What is myclaw-bench?

myclaw-bench is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by LeoYeAI. The definitive benchmark for AI agents on OpenClaw. 45 tasks across 4 tiers. Powered by MyClaw.ai. It has 223 GitHub stars.

Is myclaw-bench safe to use?

Yes. myclaw-bench passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install myclaw-bench?

Clone the repository with "git clone https://github.com/LeoYeAI/myclaw-bench" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is myclaw-bench written in?

myclaw-bench is primarily written in Python. It is open-source under LeoYeAI on GitHub, so you can review or fork the full source.

Are there alternatives to myclaw-bench?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh myclaw-bench against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情