What problem does it solve? Jupyter notebooks often fail silently due to hidden kernel state, out-of-order cell execution, wrong kernel selection, or leaked credentials in outputs, making results impossible to reproduce. This Skill provides a disciplined workflow for inspecting, executing, and verifying .ipynb artifacts so a clean top-to-bottom run actually proves the notebook works. ## Core Features & Use Cases - Notebook Inspection: Check nbformat version, kernelspec, execution counts, parameters, secrets, and oversized outputs before trusting any saved results. - Deterministic Execution: Run notebooks with nbclient using an explicit kernel, working directory, timeout, and stop-on-error behavior, writing results to a separate executed artifact. - Reproducibility Verification: Re-run from clean inputs, compare material artifacts, set random seeds, and move reusable logic into tested modules. - Use Case: A colleague shares analysis.ipynb that worked on their machine. Use this Skill to select the correct project kernel, restart and execute all cells top-to-bottom, detect hidden-state failures, and produce a verified executed notebook artifact. ## Quick Start Review and execute the notebook analysis.ipynb top-to-bottom with the project kernel, then save the verified executed copy to a separate artifact.