model-evaluation-framework

model-evaluation-framework is a skill for Claude Code, Codex from ilyasibrahim/claude-agents-coordination. It costs 46 tokens per session (2,125 once invoked), scanned A, original, Unlicense.

A set of measures and testing steps for checking how well a machine-learning model identifies Somali dialects. It includes overall and per-dialect results, such as accuracy, precision, recall, and F1 score.

In plain words
What is it for?
Use it to evaluate predictions, compare model versions, find dialects the model confuses, and decide whether performance meets the stated targets.
Why use it?
It shows whether the model works reliably across all dialects, including less common ones, instead of hiding weak results behind one overall score.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ilyasibrahim/claude-agents-coordination/model-evaluation-framework
Any agent
npx skills add ilyasibrahim/claude-agents-coordination --skill model-evaluation-framework
Clone the repo
git clone --depth 1 https://github.com/ilyasibrahim/claude-agents-coordination

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for model-evaluation-framework

README.md
[![agentmods](https://agentmods.dev/badge/skills/ilyasibrahim/claude-agents-coordination/model-evaluation-framework.svg)](https://agentmods.dev/skills/ilyasibrahim/claude-agents-coordination/model-evaluation-framework)
Your own site
<a href="https://agentmods.dev/skills/ilyasibrahim/claude-agents-coordination/model-evaluation-framework"><img src="https://agentmods.dev/badge/skills/ilyasibrahim/claude-agents-coordination/model-evaluation-framework.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,125 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.02125
Opus 5 $0.00023 $0.01063
Sonnet 5 $0.00009 $0.00425
Haiku 4.5 $0.00005 $0.00213

Measured 6d ago against content hash a050234f71ee, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

model-evaluation-framework scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

claude-project/skills/machine-learning/model-evaluation-framework/SKILL.md · 339 lines

How it starts

The opening of the file, as written. The whole thing — 339 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Model Evaluation Framework

Evaluation Metrics

Primary Metrics

Accuracy:

  • Overall correctness across all dialects
  • Target: >85% for production
  • Formula: (Correct Predictions) / (Total Predictions)

Macro F1-Score:

  • Average F1 across all dialect classes
  • Treats all dialects equally (good for imbalanced data)
  • Target: >0.82

Weighted F1-Score:

  • F1 weighted by class support
  • Accounts for class imbalance
  • Target: >0.85

Per-Class Metrics

Precision (per dialect):

  • Of predicted Northern, how many are actually Northern?
  • Formula: True Positives / (True Positives + False Positives)

Recall (per dialect):

  • Of actual Northern texts, how many did we find?
  • Formula: True Positives / (True Positives + False Negatives)

F1-Score (per dialect):

  • Harmonic mean of precision and recall
  • Formula: 2 × (Precision × Recall) / (Precision + Recall)

Evaluation Protocol

Standard Evaluation

from sklearn.metrics import (
    accuracy_score,
    precision_recall_fscore_support,
    classification_report,
    confusion_matrix
)

def evaluate_model(y_true, y_pred, dialect_names):
    """Comprehensive model evaluation"""

    # Overall metrics
    accuracy = accuracy_score(y_true, y_pred)

    # Per-class metrics
    precision, recall, f1, support = precision_recall_fscore_support(
        y_true, y_pred, average=None, labels=range(len(dialect_names))
    )

    # Macro averages
    macro_f1 = f1.mean()

    # Detailed report
    report = classification_report(
        y_true, y_pred,
        target_names=dialect_names,
        digits=4
    )

    # Confusion matrix
    cm = confusion_matrix(y_true, y_pred)

    return {
        'accuracy': accuracy,
        'macro_f1': macro_f1,
        'per_class': {
            dialect_names[i]: {
                'precision': precision[i],
                'recall': recall[i],
                'f1': f1[i],
                'support': support[i]
            }
            for i in range(len(dialect_names))
        },
        'report': report,
        'confusion_matrix': cm
    }

Read the full file on GitHub · 339 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 339 lines · 46 tokens per session scan A a050234f71ee

Subscribe to this mod's changes

model-evaluation-framework is a skill published in the GitHub repository ilyasibrahim/claude-agents-coordination (83 stars, last pushed 3mo ago), licensed Unlicense. It adds 46 tokens to every session and 2,125 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

google/skills · 85 tokens

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

google-cloud-solution-agentic-analytics-spark-knowledge-catalog

Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…

google/skills · 138 tokens

training-check

Interactively monitor training metrics from the current Codex session, periodically checking WandB or fallback logs for NaN, divergence, plateaus, and broken runs.

wanshuiyin/Auto-claude-code-research-in-sleep · 35 tokens

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens