feat(skills): add jupyter-live-kernel skill for stateful Python REPL

Adds a new data-science skill category with jupyter-live-kernel, which
uses hamelnb (https://github.com/hamelsmu/hamelnb) to give the agent
a live Jupyter kernel for stateful, iterative Python execution.

Key features:
- Variables persist across executions (unlike execute_code which is stateless)
- Inspect live variables, edit notebook cells, restart-and-run-all
- Clear trigger conditions and distinction from execute_code/terminal
- Practical tips based on hands-on testing
- No new tools required — uses terminal to run CLI commands

Prerequisites: uv, jupyterlab, hamelnb cloned to ~/.agent-skills/hamelnb
This commit is contained in:
teknium1 2026-03-10 04:07:08 -07:00
parent 8eefbef91c
commit cfc3ccb212
2 changed files with 175 additions and 0 deletions

View file

@ -0,0 +1 @@
Skills for data science workflows — interactive exploration, Jupyter notebooks, data analysis, and visualization.