Agent skill

python-reproducibility-guide

Reproducible Python environments, notebooks, and literate programming

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill python-reproducibility-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: 8 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/tools/code-exec/python-reproducibility-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

# Python Reproducibility Guide Set up reproducible Python environments for research computing, using virtual environments, dependency management, Jupyter notebooks, and literate programming practices. ## Environment Management ### Virtual Environments ```bash # Option 1: venv (built-in, lightweight) python -m venv .venv source .venv/bin/activate # macOS/Linux # .venv\Scripts\activate # Windows pip install -r requirements.txt # Option 2: conda (includes non-Python dependencies) conda create -n myproject python=3.11 conda activate myproject conda install numpy pandas scipy matplotlib conda env export > environment.yml # Option 3: uv (fast, modern Python package manager) uv venv source .venv/bin/activate uv pip install -r requirements.txt ``` ### Dependency Pinning ```bash # requirements.txt with exact versions (pip freeze) pip freeze > requirements.txt # Better: use pip-tools for compiled dependencies pip install pip-tools # Create requirements.in (human-readable, loose constraints) cat > requirements.in << 'EOF' numpy>=1.24 pandas>=2.0 scipy>=1.11 matplotlib>=3.7 scikit-learn>=1.3 EOF # Compile to requirements.txt (pinned, reproducible) pip-compile requirements.in --output-file requ

What's inside
Steps it walks through
  1. Environment Management
  2. Virtual Environments
  3. Dependency Pinning
  4. pyproject.toml (Modern Standard)
  5. Jupyter Notebooks for Research
  6. Best Practices
  7. Notebook Structure Template
  8. Converting Notebooks to Scripts
  9. Reproducible Random Seeds
  10. Containerization with Docker
  11. Dockerfile for Research
  12. Project Structure
  13. Makefile for Automation
  14. Logging and Experiment Tracking
Commands it runs
Option 1: venv (built-in, lightweight)
python -m venv .venv
source .venv/bin/activate       # macOS/Linux
pip install -r requirements.txt
Option 2: conda (includes non-Python dependencies)
conda create -n myproject python=3.11
conda activate myproject
conda install numpy pandas scipy matplotlib
conda env export > environment.yml
Option 3: uv (fast, modern Python package manager)
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the python-reproducibility-guide skill do?

Reproducible Python environments, notebooks, and literate programming

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill python-reproducibility-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