notebook-ai-agents-skill
Installation
SKILL.md
Notebook AI Agents Skill (Marimo First)
Build narrative-first, reproducible notebooks with strict run-all validation and clean data loading patterns. Prefer Marimo for new notebooks; support Jupyter only when needed for existing .ipynb files.
Instructions
- Prefer Marimo for new work. Create a
.pynotebook and keep cells small and deterministic. - Outline the notebook (purpose, data sources, analysis steps, outputs) before coding.
- Use project-relative paths and DuckDB for data loading (TSV/Parquet preferred).
- For Jupyter notebooks: register a named kernel for the pixi environment BEFORE first execution (see
docs/pixi_jupyter.md). This is mandatory — not optional. - Build plots with the shared style rules.
- Validate by running the notebook end-to-end (Marimo:
marimo run; Jupyter:pixi run jupyter nbconvert --to notebook --execute).