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.
/plugin marketplace add andisab/swe-marketplace/plugin install dataWrote 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.
[](https://agentmods.dev/agents/andisab/swe-marketplace/data-jupyter-expert)<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.
<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>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.
| Model | Per session | Once 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 |
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( 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
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.
- 12d ago First seen · 3,035 lines · 260 tokens per session scan A 9b94072a176d
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.
Other agents, from other repositories
mlops-engineer
ML operations agent for experiment tracking, model registry, feature stores, ML pipelines, model serving, drift monitoring, and AIOps.
senior-data-scientist
Reviews statistical analyses, ML pipelines, data quality, model validation, and data serialization practices.
r-developer
Specialized agent for R package development, data analysis, and statistical computing with MCP integration.
leakage-auditor
Adversarially hunts for target leakage across a feature pipeline — features that encode the target directly, temporal leakage where future information reaches training data, and validation-split leakage. Use before /ds-model or /ds-report when a metric looks implausibly good, or as a final check before a pipeline…
gyoshu
Scientific research planner - orchestrates research workflows and manages REPL lifecycle.
Demonstrate
Agent for demonstrating VS Code features.