Agent skill

jupyter-notebook-guide

Best practices for computational research notebooks with reproducible workflows

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill jupyter-notebook-guide --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/tools/code-exec/jupyter-notebook-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Jupyter Notebook Guide A skill for using Jupyter notebooks effectively in research contexts. Covers notebook organization, reproducibility best practices, collaboration workflows, and integration with research computing infrastructure. ## Notebook Organization ### Recommended Structure Every research notebook should follow a consistent structure: ``` 01_data_collection.ipynb # Data acquisition and initial storage 02_data_cleaning.ipynb # Preprocessing, validation, transformations 03_exploratory_analysis.ipynb # EDA, descriptive statistics, initial plots 04_modeling.ipynb # Model training, evaluation, selection 05_results_visualization.ipynb # Publication-quality figures 06_supplementary.ipynb # Additional analyses, robustness checks ``` ### Cell Organization Within a Notebook ```python # === CELL 1: Header and metadata === """ # Analysis: Effect of Treatment on Outcome Variable Author: [Name] Date: 2026-03-09 Data: experiment_results_v2.csv Dependencies: pandas>=2.0, scipy>=1.11, matplotlib>=3.8 """ # === CELL 2: Imports and configuration === import pandas as pd import numpy as np import matplotlib.pyplot as plt from scipy import stats # Reproducibility np.random.seed(42) pd.set_

What's inside
Steps it walks through
  1. Notebook Organization
  2. Recommended Structure
  3. Cell Organization Within a Notebook
  4. Reproducibility Best Practices
  5. Environment Management
  6. Kernel and Execution Order
  7. Parameterized Notebooks
  8. JupyterLab Extensions for Research
  9. Version Control for Notebooks
  10. Remote Computing Integration
  11. Connecting to HPC Clusters
  12. Google Colab Integration
  13. Converting to Publications
Commands it runs
Create environment from scratch
conda create -n research python=3.11
conda activate research
Install and pin
pip install pandas==2.1.4 scipy==1.11.4 matplotlib==3.8.2 jupyterlab==4.0.9
Export for reproducibility
pip freeze > requirements.txt
Or use conda
conda env export --no-builds > environment.yml
Execute with different parameters
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the jupyter-notebook-guide skill do?

Best practices for computational research notebooks with reproducible workflows

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill jupyter-notebook-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going