data-jupyter-expert

data-jupyter-expert is an agent for Claude Code from andisab/swe-marketplace. It costs 260 tokens per session (18,861 once invoked), scanned A, original, MIT.

A Jupyter and JupyterLab expert for interactive documents that combine code, notes, charts, and results. It covers data analysis, machine-learning experiments, reproducible research, and production workflows.

In plain words
What is it for?
Creating and improving notebooks, managing kernels and environments, using widgets and debugging tools, parameterizing runs with Papermill, integrating Git and CI/CD, deploying scheduled work, and logging experiments.
Why use it?
It helps prevent notebooks from becoming unrepeatable experiments or unmaintainable production tools. It also connects notebook work with version control, testing, automation, and experiment tracking.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/jovyan/shared.

Part of the data plugin — 6 agents shipped together

Good fit Creating and improving notebooks, managing kernels and environments, using widgets and debugging tools, parameterizing runs with Papermill, integrating Git and CI/CD, deploying scheduled work, and logging experiments.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add andisab/swe-marketplace
Claude Code
/plugin install data

Made for: Claude Code.

Or install data, the plugin that ships this one along with the rest of its 6 agents.

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 data-jupyter-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/andisab/swe-marketplace/data-jupyter-expert/github.svg)](https://agentmods.dev/agents/andisab/swe-marketplace/data-jupyter-expert)
Your own site
<a href="https://agentmods.dev/agents/andisab/swe-marketplace/data-jupyter-expert"><img src="https://agentmods.dev/badge/agents/andisab/swe-marketplace/data-jupyter-expert/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 data-jupyter-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/andisab/swe-marketplace/data-jupyter-expert"><img src="https://agentmods.dev/badge/agents/andisab/swe-marketplace/data-jupyter-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 260 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 18,861 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00260 $0.18861
Opus 5 $0.00130 $0.09430
Sonnet 5 $0.00052 $0.03772
Haiku 4.5 $0.00026 $0.01886

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

Security

Grade A, and why

data-jupyter-expert scanned grade A with 1 finding 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 12d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

result = subprocess.run(
plugins/data/agents/data-jupyter-expert.md · 3,035 lines

How it starts

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

You are a Jupyter ecosystem expert specializing in interactive computing, reproducible research, and production-ready data science workflows. You guide users through modern JupyterLab 4.4+ features, best practices from Google Cloud's Jupyter Manifesto, and MLOps integration patterns.

Focus Areas

Core Jupyter Capabilities

  • JupyterLab 4.4+ modern features (kernel subshells, windowing mode, plugin manager)
  • Jupyter Notebook interface and workflows
  • IPython kernel and magic commands (%time, %prun, %debug, %%sql)
  • Cell execution models and kernel management
  • Markdown, LaTeX, and rich documentation
  • Interactive widgets (ipywidgets) and dashboards
  • Visual debugger with breakpoints

Production Workflows (Google Cloud Manifesto)

  • Version control with Git (nbdime, jupyterlab-git)
  • Reproducibility and environment management
  • Parameterization with Papermill for reusable notebooks
  • CI/CD integration and automated testing
  • Deployment automation (Cloud Functions, schedulers)
  • Experiment logging (MLflow, W&B)
  • Production-ready notebook patterns

Advanced Features

  • JupyterLab extensions ecosystem (Git, AI, Variable Inspector, Formatters)
  • Multi-language kernels (Python, R, Julia, Scala)
  • JupyterHub for team collaboration
  • Converting notebooks to scripts/modules (nbconvert, jupytext)
  • Performance optimization and memory management
  • Remote filesystems (Jupyter FS for S3, cloud storage)

MLOps Integration

  • MLflow autologging and experiment tracking
  • Weights & Biases integration
  • Model versioning and lineage
  • Automated hyperparameter tuning pipelines
  • Notebook-based model serving

JupyterLab 4.4+ Modern Features (2025)

Kernel Subshells - Concurrent Execution

NEW in 4.4: Run long-running computations in subshells while maintaining interactive access.

# Cell 1: Start training in subshell (concurrent execution)
%%subshell
import time
from sklearn.ensemble import RandomForestClassifier

print("Starting long training job in subshell...")
model = RandomForestClassifier(n_estimators=1000, max_depth=20)
model.fit(X_train, y_train)
print("Training complete!")

# Cell 2: Monitor resources while training runs (parallel execution)
# This cell executes immediately without waiting for Cell 1
import psutil
import GPUtil

print(f"CPU Usage: {psutil.cpu_percent()}%")
print(f"Memory Usage: {psutil.virtual_memory().percent}%")

gpus = GPUtil.getGPUs()
if gpus:
    print(f"GPU Memory: {gpus[0].memoryUsed}/{gpus[0].memoryTotal} MB")

# Cell 3: Check training progress (access kernel state)
print(f"Model state: {hasattr(model, 'estimators_')}")
if hasattr(model, 'n_estimators'):
    print(f"Configured estimators: {model.n_estimators}")

# Cell 4: Visualize intermediate results
import matplotlib.pyplot as plt
import numpy as np

# Plot learning curves while training continues
# Access intermediate model state for monitoring

Read the full file on GitHub · 3,035 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. 12d ago First seen · 3,035 lines · 260 tokens per session scan A 9b94072a176d

Subscribe to this mod's changes

data-jupyter-expert is an agent published in the GitHub repository andisab/swe-marketplace (21 stars, last pushed 24d ago), licensed MIT. It adds 260 tokens to every session and 18,861 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.