Jupyter notebook execution skill for running notebooks programmatically and extracting outputs.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill jupyter-notebook-executor --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Jupyter Notebook Executor?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-jupyter-notebook-executor-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: jupyter-notebook-executor
description: Jupyter notebook execution skill for running notebooks programmatically and extracting outputs.
allowed-tools:
- Read
- Write
- Bash
- Glob
- Grep
graph:
domains: [domain:data-science]
specializations: [specialization:data-science-ml]
skillAreas: [skill-area:data-science-experimentation, skill-area:data-visualization]
roles: [role:data-scientist, role:data-analyst]
workflows: [workflow:experiment-design]
---
# jupyter-notebook-executor
## Overview
Jupyter notebook execution skill for running notebooks programmatically, parameterizing inputs, and extracting outputs for ML workflows.
## Capabilities
- Parameterized notebook execution
- Output extraction and validation
- Notebook conversion (to HTML/PDF)
- Cell execution control
- Error handling and reporting
- Environment management
- Kernel specification
- Timeout management
## Target Processes
- Exploratory Data Analysis (EDA) Pipeline
- Model Interpretability and Explainability Analysis
- Experiment Planning and Hypothesis Testing
## Tools and Libraries
- papermill
- nbconvert
- jupyter
- nbformat
## Input Schema
```json
{
"type": "object",
"required": ["action", "notebookPath"],
"properties": {
"action": {
"type": "string",
"enum": ["execute", "convert", "extract", "validate"],
"description": "Action to perform on the notebook"
},
"notebookPath": {
"type": "string",
"description": "Path to the Jupyter notebook"
},
"executeConfig": {
"type": "object",
"properties": {
"parameters": { "type": "object" },
"outputPath": { "type": "string" },
"kernel": { "type": "string" },
"timeout": { "type": "integer" },
"cwd": { "type": "string" }
}
},
"convertConfig": {
"type": "object",
"properties": {
"format": { "type": "string", "enum": ["html", "pdf", "markdown", "script"] },
"outputPath": { "type": "string" },
"template": { "type": "string" },
"excludeInput": { "type": "boolean" },
"excludeOutput": { "type": "boolean" }
}
},
"extractConfig": {
"type": "object",
"properties": {
"cellTags": { "type": "array", "items": { "type": "string" } },
"outputTypes": { "type": "array", "items": { "type": "string" } },
"variableNames": { "type": "array", "items": { "type": "string" } }
}
}
}
}
```
## Output Schema
```json
{
"type": "object",
"required": ["status", "action"],
"properties": {
"status": {
"type": "string",
"enum": ["success", "error", "timeout"]
},
"action": {
"type": "string"
},
"executionResult": {
"type": "object",
"properties": {
"outputPath": { "type": "string" },
"executionTime": { "type": "number" },
"cellsExecuted": { "type": "integer" },
"errors": { "type": "array" }
}
},
"conversionResult": {
"type": "object",
"properties": {
"outputPath": { "type": "string" },
"format": { "type": "string" }
}
},
"extractedData": {
"type": "object",
"properties": {
"variables": { "type": "object" },
"outputs": { "type": "array" },
"figures": { "type": "array", "items": { "type": "string" } }
}
}
}
}
```
## Usage Example
```javascript
{
kind: 'skill',
title: 'Execute EDA notebook with parameters',
skill: {
name: 'jupyter-notebook-executor',
context: {
action: 'execute',
notebookPath: 'notebooks/eda_template.ipynb',
executeConfig: {
parameters: {
data_path: 'data/train.csv',
output_dir: 'results/eda/',
sample_size: 10000
},
outputPath: 'notebooks/eda_results.ipynb',
kernel: 'python3',
timeout: 3600
}
}
}
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!