AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Jupyter Notebook

skill-ulises-jeremias-agent-toolkit-jupyter-notebook · by ulises-jeremias

Create, scaffold, or refactor Jupyter notebooks (.ipynb) for experiments and tutorials. Prefer

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-ulises-jeremias-agent-toolkit-jupyter-notebook

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ulises-jeremias-agent-toolkit-jupyter-notebook)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Jupyter Notebook? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 .ipynb notebook 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 by bootstrap).
  • Optional: uv for 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

  1. Lock the intent. Pick experiment or tutorial. Capture the objective,

audience, and what "done" looks like.

  1. Scaffold from the template (use newnotebook or option B above).
  2. 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.

  1. 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).

  1. 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.

  1. 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.ipynb and

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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.