Execute
Executes all registered notebooks, strips noisy cell metadata, and syncs Jupytext pairs. Use when asked to re-run notebooks or refresh outputs.From its SKILL.md
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill executeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
1.4 KB, 308 tokens by cl100k_base, as published. Nobody here has run it
Execute All Notebooks
Execute all registered notebooks, strip noisy metadata, and sync Jupytext pairs.
Steps
- Read
_quarto.ymland extract all notebook paths frommanuscript.notebooks - For each notebook, execute it:
Record execution time and success/failure for each notebook.uv run jupyter execute --inplace notebooks/<name>.ipynb - After all notebooks execute, strip noisy cell metadata from every
.ipynbfile. Open each.ipynbas JSON and remove these keys from every cell'smetadataobject:execution(timestamps added byjupyter execute)_sphinx_cell_id(MyST/Sphinx artifact)vscode(VS Code editor state) Save the cleaned JSON back to the file (preserve formatting with 1-space indent).
- Sync all Jupytext
.mdpairs:uv run jupytext --sync notebooks/<name>.md - Report a summary table:
- Notebook name
- Status (success / failure)
- Execution time
- Any errors or warnings
Error handling
- If a notebook fails to execute, continue with the remaining notebooks. Report the error at the end.
- If
_quarto.ymlhas no notebooks registered, report "No notebooks found in _quarto.yml" and stop.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.