jupyter-live-kernel
active0x29aee951419be32b63fb2784d58f1c81e050e332992e8bfd07443ade51c78218
Run a persistent Jupyter kernel for interactive data science: execute cells, keep state across steps, inspect dataframes, and render plots — without re-running the world.
Skill body
Jupyter Live Kernel
Keep a long-lived kernel so variables, imports, and loaded data persist between steps.
Pattern
- Start (or attach to) a kernel.
- Execute code cells incrementally; reuse state instead of recomputing.
- Inspect
df.head(),df.describe(); render plots inline. - Tear down the kernel when the task is done.
Why
Re-importing and re-loading large datasets per step is slow and wasteful. A live kernel turns analysis into a fast, stateful REPL the agent can iterate in.