Jupyter Notebook
Software development skill, available on Zeplik
Jupyter Notebook is a ready-to-run software development skill on Zeplik. Scaffold and edit Jupyter .ipynb notebooks for experiments and tutorials via bundled clean-start templates. Ask in plain language and Zeplik applies the skill's method for you inside the conversation, on whichever AI model you prefer. It returns a structured code you can keep and reuse: Code artifact -- language-tagged file blocks, each titled with its filename, complete and runnable (see artifact-templates/code.md).
The Jupyter Notebook skill loads automatically when your request matches it, or you can invoke it directly by typing /jupyter-notebook in any chat. It works with attachments, connectors, and any model that supports the task, so you get the same expert method every time without setting anything up.
What the Jupyter Notebook skill can do
- Scaffold new experiment or tutorial notebooks from clean templates
- Convert rough scripts or notes into structured runnable notebooks
- Refactor existing notebooks for reproducibility while preserving intent
- Validate notebooks top to bottom against a quality checklist
Try these prompts on Zeplik
Pick a prompt to open it in the Zeplik app. If you are not signed in yet, your prompt is waiting for you the moment you do.
How the Jupyter Notebook skill works
Jupyter Notebook Skill
Create clean, reproducible Jupyter notebooks for two primary modes:
- Experiments and exploratory analysis
- Tutorials and teaching-oriented walkthroughs
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
- If the request is exploratory, analytical, or hypothesis-driven, choose
experiment. - If the request is instructional, step-by-step, or audience-specific, choose
tutorial. - If editing an existing notebook, treat it as a refactor: preserve intent and improve structure.
How the notebook actually gets built
This skill bundles no scaffold script and no template files. Upstream shipped a
new_notebook.py CLI installed under a Codex home directory; that is not part
of this platform. Build the notebook one of two ways instead:
- Deliver it directly. Emit the
.ipynbas a fenced code block titled with its filename. Notebook JSON is small and regular -- see Notebook JSON shape below -- and this is the fastest path for most requests. - Generate it in
code_execution. When the notebook is long or must be validated, write a few lines of Python that assemble the cell list andjson.dumpit.nbformatis the safer builder when available; the standard library is enough without it.
Workflow
-
Lock the intent. Identify the notebook kind:
experimentortutorial. Capture the objective, audience, and what "done" looks like. -
Lay out the skeleton before writing any cells. Title and objective markdown cell, then imports, then the body sections implied by the kind, then a closing summary. Decide the section list first so the notebook reads top-to-bottom as one argument.
-
Fill the notebook with small, runnable steps. Keep each code cell focused on one step. Add short markdown cells that explain the purpose and expected result. Avoid large, noisy outputs when a short summary works.
-
Apply the right pattern.
Experiment: objective and hypothesis stated before any code; setup and seeds fixed in one cell so a re-run reproduces; one variable manipulated per section; results shown as a small table or plot immediately after the cell that produces them; an explicit "what this does and does not show" at the end. Negative results stay in -- a deleted failed arm is a lie about the experiment.
Tutorial: state the audience and prerequisites up front; every code cell runnable in order from a clean kernel; introduce exactly one concept per section and show its output before moving on; prefer a small concrete dataset over an abstract one; end with an exercise and a pointer to what comes next.
-
Edit safely when working with existing notebooks. Preserve the notebook structure; avoid reordering cells unless it improves the top-to-bottom story. Prefer targeted edits over full rewrites. If you must edit raw JSON, keep the shape below exactly -- a notebook with a malformed cell will not open at all.
-
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. Final pass: does it run from a clean kernel in order; is every cell's purpose clear from the markdown above it; are outputs small enough to read; are seeds and versions pinned; does the last cell state the conclusion.
Notebook JSON shape
{
"cells": [
{"cell_type": "markdown", "metadata": {}, "source": ["# Title\n"]},
{"cell_type": "code", "execution_count": null, "metadata": {},
"outputs": [], "source": ["import numpy as np\n"]}
],
"metadata": {
"kernelspec": {"display_name": "Python 3", "language": "python", "name": "python3"},
"language_info": {"name": "python", "version": "3.12"}
},
"nbformat": 4,
"nbformat_minor": 5
}
Rules that break notebooks when ignored: source is a LIST of lines and each
line except the last keeps its trailing \n; code cells require outputs and
execution_count (use [] and null for an unrun notebook); markdown cells
must NOT carry either; nbformat is 4.
Temp and output conventions
- Write the notebook into the working directory with a stable, descriptive
filename (for example,
ablation-temperature.ipynb); that is the path you pass toexport_file. - Keep intermediate files out of the way (a
tmp/subfolder) and never export them.
How the notebook reaches the user
Build the .ipynb in the sandbox and DELIVER it with export_file. A file
written to the working directory and never exported does not reach the user at
all — they see your description and no download.
Assembling the notebook JSON needs only the standard library, so there is
nothing to install. The sandbox has no internet: never try pip install /
uv pip install. Before exporting, re-read the file with json.load to prove
it parses and the cell count is what you intended.
Environment
No required environment variables.
How to use the Jupyter Notebook skill
Sign in to Zeplik
Create a free Zeplik account or sign in. New accounts start with free credits, so you can try the Jupyter Notebook skill right away.
Describe your software development task
Ask in plain language, or type /jupyter-notebook to invoke the skill directly. Zeplik recognizes the Jupyter Notebook skill and applies its method.
Review and refine the result
Zeplik returns a structured code you can edit, download, and reuse. Ask follow-ups to refine it.
Source and credit
- Author
- davila7 (D7 Class-A standalone)
- License
- MIT
Adapted from the open-source davila7/claude-code-templates project and tuned to run natively on Zeplik. View source on GitHub.
Frequently asked questions
- What is the Jupyter Notebook skill?
- Jupyter Notebook is a ready-to-run software development skill on Zeplik. Scaffold and edit Jupyter .ipynb notebooks for experiments and tutorials via bundled clean-start templates. Ask in plain language and Zeplik applies the skill's method for you inside the conversation, on whichever AI model you prefer. It returns a structured code you can keep and reuse: Code artifact -- language-tagged file blocks, each titled with its filename, complete and runnable (see artifact-templates/code.md).
- How do I use Jupyter Notebook on Zeplik?
- Sign in to Zeplik and ask in plain language, or type /jupyter-notebook in any chat to invoke it directly. The skill applies its method and returns a result you can refine in the same conversation.
- Which AI model does the Jupyter Notebook skill use?
- Any model you choose. Zeplik works across every model in one chat, so the Jupyter Notebook skill runs on your preferred model for the task.
- Where does the Jupyter Notebook skill come from?
- The Jupyter Notebook skill is adapted from the open-source davila7/claude-code-templates project (MIT) and tuned to run natively on Zeplik. The original source is linked on this page.
- How much does the Jupyter Notebook skill cost?
- Using the skill is free to start. You only spend Zeplik credits when the assistant runs, and new accounts begin with free credits.
Related software development skills
- .NET BackendBuild ASP.NET Core 8+ backends with EF Core: auth, background jobs, production API patterns
- Advanced Git WorkflowsUse for advanced Git surgery: interactive rebase, cherry-pick, bisect, reflog recovery, and history cleanup before merging. Not for parallel worktree workflows (use using-git-worktrees).
- Adversarial Code ReviewHunt for bugs in code the user shares by assuming defects exist and attacking it through several distinct lenses, then report severity-ranked findings with evidence. Read-only, it never rewrites.
- AI Agent FrameworksUse when building multi-agent systems or agent orchestration -- LangChain/LangGraph, agent team design, task coordination, pipelines. Not for authoring a Zeplik skill (use skill-creator).
- Algolia SearchAdd Algolia search: indexing strategies, React InstantSearch, relevance tuning, search-as-you-type
- Android CI/CDAutomate Android CI/CD to Google Play: keystore, GitHub Secrets, multi-stage release workflow for RN, Flutter, native
More on Zeplik
Try Jupyter Notebook on Zeplik
Every model, one chat. Bring the Jupyter Notebook skill into your next conversation and let the assistant do the work.