datarobot-model-explainability

datarobot-model-explainability is a skill for Claude Code from datarobot-oss/datarobot-agent-skills. It costs 63 tokens per session (2,613 once invoked), scanned A, original, Apache-2.0.

A set of tools and guidance for understanding why machine-learning models make particular predictions. It covers feature impact, SHAP values, anomaly explanations, and model diagnostics; SHAP is a method for estimating how each input feature affects a prediction.

In plain words
What is it for?
Creating explanations for individual predictions, measuring feature importance across data, viewing SHAP distributions, analyzing data segments, and assessing anomalies in DataRobot models.
Why use it?
It helps developers inspect model behavior instead of treating predictions as unexplained results. This can reveal influential features, unusual cases, and possible model problems.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the datarobot-agent-skills plugin — 17 skills shipped together

Good fit Creating explanations for individual predictions, measuring feature importance across data, viewing SHAP distributions, analyzing data segments, and assessing anomalies in DataRobot models.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/datarobot-oss/datarobot-agent-skills/datarobot-model-explainability
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.

Any agent
npx skills add datarobot-oss/datarobot-agent-skills --skill datarobot-model-explainability
Clone the repo
git clone --depth 1 https://github.com/datarobot-oss/datarobot-agent-skills

Made for: Claude Code.

Or install datarobot-agent-skills, the plugin that ships this one along with the rest of its 17 skills.

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 datarobot-model-explainability

README.md
[![agentmods](https://agentmods.dev/badge/skills/datarobot-oss/datarobot-agent-skills/datarobot-model-explainability/github.svg)](https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/datarobot-model-explainability)
Your own site
<a href="https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/datarobot-model-explainability"><img src="https://agentmods.dev/badge/skills/datarobot-oss/datarobot-agent-skills/datarobot-model-explainability/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for datarobot-model-explainability

Your own site · 80×15
<a href="https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/datarobot-model-explainability"><img src="https://agentmods.dev/badge/skills/datarobot-oss/datarobot-agent-skills/datarobot-model-explainability.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,613 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00063 $0.02613
Opus 5 $0.00032 $0.01307
Sonnet 5 $0.00013 $0.00523
Haiku 4.5 $0.00006 $0.00261

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

Security

Grade A, and why

datarobot-model-explainability 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/compute_shap_matrix.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/datarobot-model-explainability/SKILL.md · 271 lines

How it starts

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

DataRobot Model Explainability Skill

This skill covers SHAP insights, XEMP prediction explanations, anomaly explanations, and model diagnostics.

SDK version: Use datarobot>=3.6.0 for the full API set in this skill (ShapDistributions was added in 3.6; ShapMatrix, ShapImpact, and ShapPreview are available in datarobot>=3.4.0). Use from datarobot.insights import ShapMatrix, ... with entity_id=model_id — not legacy datarobot.models.ShapMatrix (project_id / dataset_id). ShapMatrix, ShapImpact, ShapPreview, and ShapDistributions are the canonical SHAP API. The older dr.PredictionExplanations (XEMP-based) remains available but is the secondary path.


Quick Start

Goal API to use Prerequisites
SHAP values for all features, all rows ShapMatrix.create(entity_id=model_id) None - universal SHAP
Per-row top-feature explanations ShapPreview.create(entity_id=model_id) None
Aggregated feature importance via SHAP ShapImpact.create(entity_id=model_id) None
SHAP value distributions across features ShapDistributions.create(entity_id=model_id) None
SHAP for a filtered segment dr.DataSlice.create(...) + ShapMatrix.create(..., data_slice_id=...) Data slice definition
XEMP-based prediction explanations dr.PredictionExplanations.create(...) Feature Impact; PE initialization; dataset uploaded
Anomaly explanations (time series) AnomalyAssessmentRecord.compute(project_id, model_id, ...) Anomaly model
ROC / lift / confusion (insights) RocCurve.create(...) / LiftChart.create(...) / ConfusionMatrix.create(...) Validation data
ROC / lift / confusion (Model helpers) model.get_roc_curve() / model.get_lift_chart() / model.get_confusion_chart() Validation data

Universal SHAP is the preferred path - no dataset pre-upload or Feature Impact step required.

When to use this skill

Use this skill when you need to explain leaderboard model behavior, compute SHAP insights, use XEMP prediction explanations, analyze anomaly explanations, or retrieve model diagnostics.

Read the full file on GitHub · 271 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 271 lines · 63 tokens per session scan A e7e2eabfba2e

Subscribe to this mod's changes

datarobot-model-explainability is a skill published in the GitHub repository datarobot-oss/datarobot-agent-skills (25 stars, last pushed today), licensed Apache-2.0. It adds 63 tokens to every session and 2,613 once invoked, about $0.0003 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

upstash-vector-js

Work with the @upstash/vector TypeScript/JavaScript SDK, a serverless vector database for embeddings, similarity search, semantic search, and RAG (retrieval-augmented generation). Use when upserting, querying, fetching, ranging, or deleting vectors, upserting raw text against an index with a built-in embedding model…

upstash/skills · 152 tokens

fine-tuning

Use when considering fine-tuning a model. Covers when fine-tuning beats prompting or RAG, dataset construction, LoRA and full fine-tuning, evaluation, and the failure modes that waste the effort.

nimadorostkar/Claude-Skills-collection · 46 tokens

llm-integration

Use when integrating an LLM API into an application. Covers streaming, retries and rate limits, timeouts, caching, fallback across providers, and the production concerns that a tutorial integration ignores.

nimadorostkar/Claude-Skills-collection · 43 tokens

ml-pipeline

Use when building or operating a machine learning pipeline. Covers feature engineering, training reproducibility, train/serve skew, deployment, monitoring for drift, and retraining.

nimadorostkar/Claude-Skills-collection · 37 tokens

prompt-engineering

Use when writing or improving prompts for a language model. Covers instruction structure, examples, reasoning elicitation, output formatting, and systematically diagnosing why a prompt fails.

nimadorostkar/Claude-Skills-collection · 36 tokens

rag

Use when building retrieval-augmented generation. Covers chunking, embedding and hybrid search, reranking, grounding and citation, and diagnosing whether a bad answer is a retrieval failure or a generation failure.

nimadorostkar/Claude-Skills-collection · 42 tokens