Install
$ agentstack add skill-ulises-jeremias-agent-toolkit-jupyter-notebook ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Jupyter Notebook
Create clean, reproducible Jupyter notebooks for two primary modes:
- Experiments — exploratory analysis, ablations, hypothesis testing.
- Tutorials — instructional walkthroughs, teaching-oriented notebooks.
Prefer the bundled templates and the helper script for consistent structure and fewer JSON mistakes.
When to use
- Create a new
.ipynbnotebook from scratch. - Convert rough notes or scripts into a structured notebook.
- Refactor an existing notebook to be more reproducible and skimmable.
- Build experiments or tutorials that will be read or re-run by other people.
Decision tree
- Exploratory / analytical / hypothesis-driven →
experiment. - Instructional / step-by-step / audience-specific →
tutorial. - Editing an existing notebook → treat as a refactor: preserve intent and
improve structure.
Prerequisites
python3(provided bybootstrap).- Optional:
uvfor local notebook execution and dependency isolation
(also from bootstrap).
skills check jupyter-notebook validates python3 is present.
Helper script
The bundled scaffolder (scripts/new_notebook.py, stdlib only) loads a template, updates the title cell, and writes a notebook to --out. Two ways to invoke it:
Option A — newnotebook wrapper (recommended)
bootstrap installs a tiny wrapper at ~/.local/bin/newnotebook so the script is available without remembering its full path:
newnotebook --kind experiment \
--title "Compare prompt variants" \
--out output/jupyter-notebook/compare-prompt-variants.ipynb
newnotebook --kind tutorial \
--title "Intro to embeddings" \
--out output/jupyter-notebook/intro-to-embeddings.ipynb
Option B — call the script directly
python3 ~/.local/share/agent-toolkit/skills/jupyter-notebook/scripts/new_notebook.py \
--kind experiment \
--title "Compare prompt variants" \
--out output/jupyter-notebook/compare-prompt-variants.ipynb
If you prefer uv for a pinned interpreter:
uv run --python 3.12 python ~/.local/share/agent-toolkit/skills/jupyter-notebook/scripts/new_notebook.py \
--kind tutorial \
--title "Intro to embeddings"
The script uses only the Python standard library — no extra deps required.
Workflow
- Lock the intent. Pick
experimentortutorial. Capture the objective,
audience, and what "done" looks like.
- Scaffold from the template (use
newnotebookor option B above). - Fill the notebook with small, runnable steps. Keep each code cell
focused on one step. Add short markdown cells that explain purpose and expected result. Avoid large, noisy outputs when a short summary works.
- Apply the right pattern. For experiments, follow
[references/experiment-patterns.md](references/experiment-patterns.md). For tutorials, [references/tutorial-patterns.md](references/tutorial-patterns.md).
- Edit safely when working with existing notebooks. Preserve structure;
avoid reordering cells unless it improves the top-to-bottom story. Prefer targeted edits over full rewrites. If you must edit raw JSON, review [references/notebook-structure.md](references/notebook-structure.md) first.
- Validate the result. Run the notebook top-to-bottom when the environment
allows. If execution is not possible, say so explicitly and call out how to validate locally. Use the final pass checklist in [references/quality-checklist.md](references/quality-checklist.md).
Templates and helper script
- Templates live in
assets/experiment-template.ipynband
assets/tutorial-template.ipynb (chezmoi-managed, read-only — do not edit in place; copy and modify).
- The helper script loads a template, updates the title cell, and writes a
notebook.
Temp and output conventions
- Use
tmp/jupyter-notebook/for intermediate files; delete when done. - Write final artifacts under
output/jupyter-notebook/when working in a
repository.
- Use stable, descriptive filenames (e.g.
ablation-temperature.ipynb).
Dependencies (install only when needed)
Prefer uv for dependency management.
Optional Python packages for local notebook execution:
uv pip install jupyterlab ipykernel
The bundled scaffold script needs no extra dependencies.
Boundaries
- This skill scaffolds and refactors notebooks. It does not run them — for
execution, use Jupyter / VS Code / the user's preferred runtime.
- Do not commit notebook outputs that contain secrets or large binary blobs;
clear outputs before staging when in doubt.
Reference map
- [
references/experiment-patterns.md](references/experiment-patterns.md) —
experiment structure and heuristics.
- [
references/tutorial-patterns.md](references/tutorial-patterns.md) —
tutorial structure and teaching flow.
- [
references/notebook-structure.md](references/notebook-structure.md) —
notebook JSON shape and safe editing rules.
- [
references/quality-checklist.md](references/quality-checklist.md) —
final validation checklist.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ulises-jeremias
- Source: ulises-jeremias/agent-toolkit
- License: MIT
- Homepage: https://ulises-jeremias.github.io/agent-toolkit-archive/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.