jupyter-notebook
Installation
SKILL.md
Jupyter Notebook Search and Editing via Jupytext
Overview
Use this skill when the task is "search or modify a notebook", but working on raw .ipynb JSON directly is not practical.
This skill covers two notebook-safe operations:
- Search notebook content through
rgwithscripts/rg_ipynb_preprocessor.py. - Edit notebook content through a temporary Jupytext text representation and sync it back to
.ipynb.
Default workflow:
- Search notebook content safely when you need to locate cells or text inside
.ipynb. - Convert the current
.ipynbnotebook into a readable text notebook in a temporary location. - Edit the text notebook instead of the
.ipynb. - Sync the edited text back into the original
.ipynb.
This skill is intentionally narrow. It is not about maintaining paired notebooks long term. It is a bridge for notebook search and editing.
Related skills