Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Stateful Jupyter kernel — variables persist across cells (hamelnb)
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 84% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -30% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 17% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -40% | 0% |
| case-05 | ✓→✓ | = Same ✓ | 81% | 0% |
Run Python code in a persistent Jupyter kernel so that variables, imports, and state carry over between executions — exactly like working in a notebook, but from the CLI.
.ipynb notebook file from the command linepowershellpip install hamelnb # or use jupyter directly pip install jupyter
powershell# Start a persistent kernel session (keeps running between calls) hamelnb start --name datasession # Execute a code snippet in the named session hamelnb run datasession "import pandas as pd; df = pd.read_csv('data.csv'); print(df.shape)" # Execute next cell — df variable is still available hamelnb run datasession "print(df.describe())" # Stop session when done hamelnb stop datasession
powershell# Run all cells in a notebook and save output jupyter nbconvert --to notebook --execute analysis.ipynb --output analysis_out.ipynb # Run and convert output to HTML for viewing jupyter nbconvert --to html --execute analysis.ipynb --output report.html
pythonimport jupyter_client, queue km = jupyter_client.KernelManager(kernel_name="python3") km.start_kernel() kc = km.client() kc.start_channels() kc.wait_for_ready(timeout=30) def run_cell(code): kc.execute(code) outputs = [] while True: try: msg = kc.get_iopub_msg(timeout=10) if msg["msg_type"] == "stream": outputs.append(msg["content"]["text"]) elif msg["msg_type"] == "execute_result": outputs.append(msg["content"]["data"].get("text/plain","")) elif msg["msg_type"] == "status" and msg["content"]["execution_state"] == "idle": break except queue.Empty: break return "".join(outputs) print(run_cell("import pandas as pd; df = pd.read_csv('data.csv'); df.shape")) print(run_cell("df.describe()")) # df is still in scope! km.shutdown_kernel()
python# Use run_cell from step 4 to inject values run_cell("x = 42; y = [1, 2, 3]") result = run_cell("print(x * 2, sum(y))")
"Load sales.csv and show the top 10 rows, then plot revenue by month" → Use step 4: run cell 1 to load and preview the CSV, run cell 2 to group by month and show results — df persists between calls.
"Execute my analysis.ipynb notebook and give me the output" → Use step 3 with jupyter nbconvert --to notebook --execute.
"Explore the wine quality dataset — check correlations step by step" → Use hamelnb (step 2) to build up analysis iteratively with named session.
km.shutdown_kernel() when donenbconvert --execute re-runs all cells from scratch — it does not resume a previous statepip show hamelnb before useOther measured skills in the registry, with their headline benchmark lift.