tokens&
For enterprises
Submit
Sign in
tokens&

Build better AI stacks, claim useful opportunities, and give AI infrastructure companies a source-labeled adoption readout they can trust.

For buildersFor enterprises

Product

  • For builders
  • Category rankings
  • Startup credits and perks
  • Agent Skills
  • Platform
  • Submit project, tool, product, or perk

Enterprise

  • Start free company workspace

Community

  • Community
  • Newsletter
  • Events
Xin

© 2026 tokensand, LLC. All rights reserved.

  • Terms
  • Privacy
  • Security
  • Data Processing
  • Status
Agent Skills/Community model evals
Hugging FaceModelsSKILL.mdVerified source

Agent Skill

Community model evals

Run inspect-ai and lighteval evaluations for model selection, regressions, and benchmarks.

Install this skillView repository

Vendor-authored source · Apache-2.0 license.

Raw SKILL.mdInstall the Tokens& Agent Pack

Skill specification

Declared by Hugging Face in the package front matter. Trigger conditions are what the coding agent matches on before it loads the skill.

View package fields
Community model evals SKILL.md front matter fields
Skill namehuggingface-community-evals
Trigger conditionsRun evaluations for Hugging Face Hub models using inspect-ai and lighteval on local hardware. Use for backend selection, local GPU evals, and choosing between vLLM / Transformers / accelerate. Not for HF Jobs orchestration, model-card PRs, .eval_results publication, or community-evals automation.

Install huggingface-community-evals

In a terminal with Node.js, npm and Git, run the command for your agent. The Skills CLI installs the complete package directory, including referenced files within it. Review its install prompt, then start a new agent session. A skill package does not set up an MCP server connection.

Claude Code

.claude/skills/huggingface-community-evals/SKILL.md

Project skills are committed with the repo. Use the user directory for a personal install across every project.

Project install

npx skills add 'https://github.com/huggingface/skills/tree/main/skills/huggingface-community-evals' --skill 'huggingface-community-evals' --agent 'claude-code'
Install for all projects instead

Personal install

npx skills add 'https://github.com/huggingface/skills/tree/main/skills/huggingface-community-evals' --skill 'huggingface-community-evals' --agent 'claude-code' --global

Codex

.agents/skills/huggingface-community-evals/SKILL.md

Codex reads `.agents/skills/` as its primary location, which is also the cross-platform default other clients honour.

Project install

npx skills add 'https://github.com/huggingface/skills/tree/main/skills/huggingface-community-evals' --skill 'huggingface-community-evals' --agent 'codex'
Install for all projects instead

Personal install

npx skills add 'https://github.com/huggingface/skills/tree/main/skills/huggingface-community-evals' --skill 'huggingface-community-evals' --agent 'codex' --global

Cursor

.agents/skills/huggingface-community-evals/SKILL.md

Cursor also loads `.agents/skills/`, `.claude/skills/`, and `.codex/skills/`, so one committed copy can serve several clients.

Project install

npx skills add 'https://github.com/huggingface/skills/tree/main/skills/huggingface-community-evals' --skill 'huggingface-community-evals' --agent 'cursor'
Install for all projects instead

Personal install

npx skills add 'https://github.com/huggingface/skills/tree/main/skills/huggingface-community-evals' --skill 'huggingface-community-evals' --agent 'cursor' --global

Gemini CLI

.agents/skills/huggingface-community-evals/SKILL.md

Gemini CLI reads `.agents/skills/` first when both directories exist.

Project install

npx skills add 'https://github.com/huggingface/skills/tree/main/skills/huggingface-community-evals' --skill 'huggingface-community-evals' --agent 'gemini-cli'
Install for all projects instead

Personal install

npx skills add 'https://github.com/huggingface/skills/tree/main/skills/huggingface-community-evals' --skill 'huggingface-community-evals' --agent 'gemini-cli' --global

SKILL.md

View raw source

Published by Hugging Face under Apache-2.0. Rendered from the package in github.com/huggingface/skills/tree/main/skills/huggingface-community-evals.

Read full skill instructions

Overview

This skill is for running evaluations against models on the Hugging Face Hub on local hardware.

It covers:

  • inspect-ai with local inference
  • lighteval with local inference
  • choosing between vllm, Hugging Face Transformers, and accelerate
  • smoke tests, task selection, and backend fallback strategy

It does not cover:

  • Hugging Face Jobs orchestration
  • model-card or model-index edits
  • README table extraction
  • Artificial Analysis imports
  • .eval_results generation or publishing
  • PR creation or community-evals automation

If the user wants to run the same eval remotely on Hugging Face Jobs, hand off to the hugging-face-jobs skill and pass it one of the local scripts in this skill.

If the user wants to publish results into the community evals workflow, stop after generating the evaluation run and hand off that publishing step to ~/code/community-evals.

All paths below are relative to the directory containing this SKILL.md.

When To Use Which Script

Use caseScript
Local inspect-ai eval on a Hub model via inference providersscripts/inspect_eval_uv.py
Local GPU eval with inspect-ai using vllm or Transformersscripts/inspect_vllm_uv.py
Local GPU eval with lighteval using vllm or acceleratescripts/lighteval_vllm_uv.py
Extra command patternsexamples/USAGE_EXAMPLES.md

Prerequisites

  • Prefer uv run for local execution.
  • Set HF_TOKEN for gated/private models.
  • For local GPU runs, verify GPU access before starting:
uv --version
printenv HF_TOKEN >/dev/null
nvidia-smi

If nvidia-smi is unavailable, either:

  • use scripts/inspect_eval_uv.py for lighter provider-backed evaluation, or
  • hand off to the hugging-face-jobs skill if the user wants remote compute.

Core Workflow

  1. Choose the evaluation framework. - Use inspect-ai when you want explicit task control and inspect-native flows. - Use lighteval when the benchmark is naturally expressed as a lighteval task string, especially leaderboard-style tasks.
  2. Choose the inference backend. - Prefer vllm for throughput on supported architectures. - Use Hugging Face Transformers (--backend hf) or accelerate as compatibility fallbacks.
  3. Start with a smoke test. - inspect-ai: add --limit 10 or similar. - lighteval: add --max-samples 10.
  4. Scale up only after the smoke test passes.
  5. If the user wants remote execution, hand off to hugging-face-jobs with the same script + args.

Quick Start

Option A: inspect-ai with local inference providers path

Best when the model is already supported by Hugging Face Inference Providers and you want the lowest local setup overhead.

uv run scripts/inspect_eval_uv.py \
  --model meta-llama/Llama-3.2-1B \
  --task mmlu \
  --limit 20

Use this path when:

  • you want a quick local smoke test
  • you do not need direct GPU control
  • the task already exists in inspect-evals

Option B: inspect-ai on Local GPU

Best when you need to load the Hub model directly, use vllm, or fall back to Transformers for unsupported architectures.

Local GPU:

uv run scripts/inspect_vllm_uv.py \
  --model meta-llama/Llama-3.2-1B \
  --task gsm8k \
  --limit 20

Transformers fallback:

uv run scripts/inspect_vllm_uv.py \
  --model microsoft/phi-2 \
  --task mmlu \
  --backend hf \
  --trust-remote-code \
  --limit 20

Option C: lighteval on Local GPU

Best when the task is naturally expressed as a lighteval task string, especially Open LLM Leaderboard style benchmarks.

Local GPU:

uv run scripts/lighteval_vllm_uv.py \
  --model meta-llama/Llama-3.2-3B-Instruct \
  --tasks "leaderboard|mmlu|5,leaderboard|gsm8k|5" \
  --max-samples 20 \
  --use-chat-template

accelerate fallback:

uv run scripts/lighteval_vllm_uv.py \
  --model microsoft/phi-2 \
  --tasks "leaderboard|mmlu|5" \
  --backend accelerate \
  --trust-remote-code \
  --max-samples 20

Remote Execution Boundary

This skill intentionally stops at local execution and backend selection.

If the user wants to:

  • run these scripts on Hugging Face Jobs
  • pick remote hardware
  • pass secrets to remote jobs
  • schedule recurring runs
  • inspect / cancel / monitor jobs

then switch to the `hugging-face-jobs` skill and pass it one of these scripts plus the chosen arguments.

Task Selection

inspect-ai examples:

  • mmlu
  • gsm8k
  • hellaswag
  • arc_challenge
  • truthfulqa
  • winogrande
  • humaneval

lighteval task strings use suite|task|num_fewshot:

  • leaderboard|mmlu|5
  • leaderboard|gsm8k|5
  • leaderboard|arc_challenge|25
  • lighteval|hellaswag|0

Multiple lighteval tasks can be comma-separated in --tasks.

Backend Selection

  • Prefer inspect_vllm_uv.py --backend vllm for fast GPU inference on supported architectures.
  • Use inspect_vllm_uv.py --backend hf when vllm does not support the model.
  • Prefer lighteval_vllm_uv.py --backend vllm for throughput on supported models.
  • Use lighteval_vllm_uv.py --backend accelerate as the compatibility fallback.
  • Use inspect_eval_uv.py when Inference Providers already cover the model and you do not need direct GPU control.

Hardware Guidance

Model sizeSuggested local hardware
< 3Bconsumer GPU / Apple Silicon / small dev GPU
3B - 13Bstronger local GPU
13B+high-memory local GPU or hand off to hugging-face-jobs

For smoke tests, prefer cheaper local runs plus --limit or --max-samples.

Troubleshooting

  • CUDA or vLLM OOM:
  • reduce --batch-size
  • reduce --gpu-memory-utilization
  • switch to a smaller model for the smoke test
  • if necessary, hand off to hugging-face-jobs
  • Model unsupported by vllm:
  • switch to --backend hf for inspect-ai
  • switch to --backend accelerate for lighteval
  • Gated/private repo access fails:
  • verify HF_TOKEN
  • Custom model code required:
  • add --trust-remote-code

Examples

See:

  • examples/USAGE_EXAMPLES.md for local command patterns
  • scripts/inspect_eval_uv.py
  • scripts/inspect_vllm_uv.py
  • scripts/lighteval_vllm_uv.py

More Hugging Face Agent Skills

All Agent Skills

Dataset Viewer workflows

Fetch dataset metadata, split rows, filtered samples, and viewer API results for data tasks.

Models

Gradio app builder

Build and edit Gradio apps, demos, chatbots, layouts, and event listeners.

Frontend

Hub tool builder

Create scripts and tools that chain Hugging Face Hub API data safely.

Agents

Hugging Face CLI

Package model, dataset, and Space operations into a repeatable agent workflow.

Models

Hugging Face MCP

Use Hugging Face Hub MCP tools for models, datasets, Spaces, papers, and compute jobs.

Agents

Hugging Face Papers

Read paper metadata, linked models, datasets, Spaces, and project pages through the Papers API.

Docs