Alibi explainability skill for counterfactual explanations, anchors, and trust scores.
Generates counterfactual explanations, anchors, and trust scores for machine learning model interpretability.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdAlibi explainability skill for counterfactual explanations, anchors, trust scores, and advanced model interpretation techniques.
{
"type": "object",
"required": ["modelPath", "explainerType", "instancePath"],
"properties": {
"modelPath": {
"type": "string",
"description": "Path to the trained model"
},
"explainerType": {
"type": "string",
"enum": ["counterfactual", "anchor", "integrated_gradients", "cem", "trust_score", "prototype"],
"description": "Type of Alibi explainer to use"
},
"instancePath": {
"type": "string",
"description": "Path to instance(s) to explain"
},
"counterfactualConfig": {
"type": "object",
"properties": {
"targetClass": { "type": "integer" },
"maxIterations": { "type": "integer" },
"lambda": { "type": "number" },
"featureRange": { "type": "object" }
}
},
"anchorConfig": {
"type": "object",
"properties": {
"threshold": { "type": "number" },
"coverageSamples": { "type": "integer" },
"beamSize": { "type": "integer" }
}
},
"cemConfig": {
"type": "object",
"properties": {
"mode": { "type": "string", "enum": ["PP", "PN"] },
"kappaMin": { "type": "number" },
"kappaMax": { "type": "number" }
}
},
"trainingDataPath": {
"type": "string",
"description": "Path to training data (required for some explainers)"
}
}
}
{
"type": "object",
"required": ["status", "explanations"],
"properties": {
"status": {
"type": "string",
"enum": ["success", "error"]
},
"explanations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"instanceId": { "type": "string" },
"originalPrediction": { "type": "string" },
"explanation": { "type": "object" }
}
}
},
"counterfactuals": {
"type": "array",
"items": {
"type": "object",
"properties": {
"instanceId": { "type": "string" },
"counterfactual": { "type": "object" },
"targetClass": { "type": "string" },
"changedFeatures": { "type": "array" }
}
}
},
"anchors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"instanceId": { "type": "string" },
"rules": { "type": "array", "items": { "type": "string" } },
"precision": { "type": "number" },
"coverage": { "type": "number" }
}
}
},
"trustScores": {
"type": "array",
"items": {
"type": "object",
"properties": {
"instanceId": { "type": "string" },
"score": { "type": "number" },
"closestClass": { "type": "string" }
}
}
}
}
}
{
kind: 'skill',
title: 'Generate counterfactual explanations',
skill: {
name: 'alibi-explainer',
context: {
modelPath: 'models/loan_classifier.pkl',
explainerType: 'counterfactual',
instancePath: 'data/rejected_applications.csv',
counterfactualConfig: {
targetClass: 1,
maxIterations: 1000,
lambda: 0.1
},
trainingDataPath: 'data/train.csv'
}
}
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.