Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

model-benchmarks模型基准

Agent Skill

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

总安装

11,196

周安装

476

GitHub Stars

公开资料未说明

下载量

3,922
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install model-benchmarks

简介

通过排行榜(LMSYS Arena、HuggingFace 等)进行实时 AI 模型能力跟踪,以实现智能计算路由和成本优化

SKILL.md

name
model-benchmarks
description
Real-time AI model capability tracking via leaderboards (LMSYS Arena, HuggingFace, etc.) for intelligent compute routing and cost optimization

🧠 Model Benchmarks - Global AI Intelligence Hub

"Know thy models, optimize thy costs" — Real-time AI capability tracking for intelligent compute routing

🎯 What It Does

Transform your OpenClaw deployment from guessing to data-driven model selection:

  • 🔍 Real-time Intelligence — Pulls latest capability data from LMSYS Arena, BigCode, HuggingFace leaderboards
  • 📊 Standardized Scoring — Unified 0-100 capability scores across coding, reasoning, creative tasks
  • 💰 Cost Efficiency — Calculates performance-per-dollar ratios to find hidden gems
  • 🎯 Smart Recommendations — Suggests optimal models for specific task types
  • 📈 Trend Analysis — Tracks model performance changes over time

🚀 Why You Need This

Problem: OpenClaw users often overpay for AI by using expensive models for simple tasks, or underperform by using cheap models for complex work.

Solution: This skill provides real-time model intelligence to route tasks optimally:

  • 翻译任务: Gemini 2.0 Flash (445x cost efficiency vs Claude)
  • 复杂编程: Claude 3.5 Sonnet (92/100 coding score)
  • 简单问答: GPT-4o Mini (85x cheaper than GPT-4)

Result: Users report 60-95% cost reduction with maintained or improved quality.

⚡ Quick Start

Install & First Run

# Fetch latest model intelligence
python3 skills/model-benchmarks/scripts/run.py fetch

# Find best model for your task
python3 skills/model-benchmarks/scripts/run.py recommend --task coding

# Check any model's capabilities  
python3 skills/model-benchmarks/scripts/run.py query --model gpt-4o

Sample Output

🏆 Top 3 recommendations for coding:
1. gemini-2.0-flash
   Task Score: 81.5/100
   Cost Efficiency: 445.33
   Avg Price: $0.19/1M tokens

2. claude-3.5-sonnet  
   Task Score: 92.0/100
   Cost Efficiency: 10.28
   Avg Price: $9.00/1M tokens

🔧 Integration Examples

With OpenClaw Model Routing

# Get optimal model, then configure OpenClaw
BEST_MODEL=$(python3 skills/model-benchmarks/scripts/run.py recommend --task coding --json | jq -r '.models[0]')
openclaw config set agents.defaults.model.primary "$BEST_MODEL"

Daily Intelligence Updates

# Add to crontab for fresh data
0 8 * * * cd ~/.openclaw/workspace && python3 skills/model-benchmarks/scripts/run.py fetch

Cost Monitoring Dashboard

# Generate cost efficiency report
python3 skills/model-benchmarks/scripts/run.py analyze --export-csv > model_costs.csv

📊 Supported Data Sources

PlatformCoverageUpdate FrequencyCapabilities Tracked
LMSYS Chatbot Arena100+ modelsDailyGeneral, Reasoning, Creative
BigCode Leaderboard50+ modelsWeeklyCoding (HumanEval, MBPP)
Open LLM Leaderboard200+ modelsDailyKnowledge, Comprehension
Alpaca Eval80+ modelsWeeklyInstruction Following

🎯 Task-to-Model Mapping

The skill intelligently maps your tasks to optimal models:

Task TypePrimary CapabilityRecommended Models
codingCoding + ReasoningGemini 2.0 Flash, Claude 3.5 Sonnet
writingCreative + GeneralClaude 3.5 Sonnet, GPT-4o
analysisReasoning + ComprehensionGPT-4o, Claude 3.5 Sonnet
translationGeneral + KnowledgeGemini 2.0 Flash, GPT-4o Mini
mathReasoning + KnowledgeGPT-4o, Claude 3.5 Sonnet
simpleGeneralGemini 2.0 Flash, GPT-4o Mini

💡 Pro Tips

Cost Optimization Workflow

  1. Profile your tasks — What do you do most often?
  2. Get recommendations — Run analysis for each task type
  3. Configure routing — Set up model fallbacks
  4. Monitor & adjust — Weekly intelligence updates

Finding Hidden Gems

# Discover undervalued models
python3 skills/model-benchmarks/scripts/run.py analyze --sort-by efficiency --limit 10

Trend Analysis

# Compare model performance over time
python3 skills/model-benchmarks/scripts/run.py trends --model gpt-4o --days 30

🔄 Advanced Usage

Custom Benchmark Sources

Edit BENCHMARK_SOURCES in scripts/run.py to add new evaluation platforms.

Task-Specific Scoring

Customize TASK_CAPABILITY_MAP to weight capabilities for your specific use cases.

Enterprise Integration

  • Slack alerts for model price changes
  • API endpoints for programmatic access
  • Custom dashboards with exported JSON data

📈 Real-World Results

Startups using this skill report:

  • 🏗️ Dev Teams: 78% cost reduction by routing simple tasks to Gemini 2.0 Flash
  • 📝 Content Agencies: 65% savings using task-specific model routing
  • 🔬 Research Labs: 45% efficiency gain with capability-driven model selection

🛡️ Privacy & Security

  • No personal data collected — Only public benchmark results
  • Local processing — All analysis runs on your machine
  • Optional caching — Benchmark data cached locally for faster queries
  • No external dependencies — Uses only Python standard library

🔮 Roadmap

  • v1.1: Real-time price monitoring from OpenRouter/Anthropic APIs
  • v1.2: Custom benchmark suite for your specific tasks
  • v1.3: Multi-provider cost comparison (OpenRouter vs Direct APIs)
  • v2.0: Predictive model performance based on task characteristics

🤝 Contributing

Found a new benchmark platform? Want to improve the scoring algorithm?

  1. Fork the skill on GitHub
  2. Add your enhancement
  3. Submit a pull request
  4. Help the OpenClaw community optimize their AI costs!

📞 Support

  • Documentation: Full API reference in scripts/run.py --help
  • Issues: Report bugs or request features via GitHub
  • Community: Join discussions on OpenClaw Discord
  • Examples: More integration examples in examples/ directory

*Make every token count — choose your models wisely! 🧠*

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

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

平台分布

OpenClaw

71.67%
按下载量换算2,811

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills