Back to Skills

marimo-inspect

verified

This skill should be used when inspecting marimo notebook execution results. Triggers include: - Checking notebook output - Viewing execution results - Reading __marimo__ HTML snapshots - Debugging notebook errors - Verifying cell outputs

View on GitHub

Marketplace

cc-marimo

dakesan/marimo-cc

Plugin

marimo-skills

Repository

dakesan/marimo-cc
1stars

skills/marimo-inspect/SKILL.md

Last Verified

January 21, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/dakesan/marimo-cc/blob/main/skills/marimo-inspect/SKILL.md -a claude-code --skill marimo-inspect

Installation paths:

Claude
.claude/skills/marimo-inspect/
Powered by add-skill CLI

Instructions

# Marimo Notebook Inspector

Inspect marimo notebook execution results by reading HTML snapshots stored in the `__marimo__` directory.

## Purpose

Marimo automatically saves HTML snapshots during editing sessions. This skill reads those snapshots to verify:

- Cell execution outputs
- Error messages and tracebacks
- Visualization renders
- UI element states

## Snapshot Location

HTML snapshots are stored in:

- `__marimo__/` directory (relative to notebook)
- `.marimo/` directory (alternative location)

## Workflow

1. Locate the `__marimo__` or `.marimo/` directory using Glob
2. List available HTML snapshots
3. Read the HTML file with the Read tool
4. Parse and analyze:
   - Cell outputs (text, tables, plots)
   - Error states and messages
   - Console output
5. Report findings to user

## Usage Pattern

```
# Find snapshots
Glob: **/__marimo__/*.html

# Read snapshot
Read: __marimo__/notebook_name.html
```

## Analysis Focus

When inspecting HTML snapshots:

- Look for `<div class="output">` sections for cell outputs
- Check for error indicators and stack traces
- Identify visualization elements (plots, charts)
- Note any warning or info messages

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1144 chars