skills/codingkaiser/marimo-development/SKILL.md
Expert guidance for creating and working with marimo notebooks - reactive Python notebooks that can be executed as scripts and deployed as apps. Use when the user asks to create marimo notebooks, convert Jupyter notebooks to marimo, build interactive dashboards or data apps with marimo, work with marimo's reactive programming model, debug marimo notebooks, or needs help with marimo-specific features (cells, UI elements, reactivity, SQL integration, deploying apps, etc.).
npx skillsauth add aiskillstore/marketplace marimo-developmentInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create reactive Python notebooks with marimo's interactive programming environment.
references/core-concepts.md - contains marimo's cell structure, reactivity model, UI elements, and essential examplesreferences/recipes.md for code snippetsreferences/api/ for specific function detailsreferences/faq.md and references/troubleshooting.mdEvery marimo cell follows this structure:
@app.cell
def _():
# Your code here
return
When editing cells, only modify the code inside the function - marimo handles parameters and returns automatically.
.value trigger automatic updates_ (e.g., _temp) are local to the cellAlways import marimo in the first cell:
@app.cell
def _():
import marimo as mo
# other imports
return
# Create UI element in one cell
@app.cell
def _():
slider = mo.ui.slider(0, 100, value=50, label="Value")
slider
return
# Use its value in another cell
@app.cell
def _():
result = slider.value * 2
mo.md(f"Double the value: {result}")
return
# Load and display data
@app.cell
def _():
import polars as pl
df = pl.read_csv("data.csv")
df # Automatically displays as table
return
# Interactive data exploration
@app.cell
def _():
mo.ui.data_explorer(df)
return
@app.cell
def _():
# marimo has built-in DuckDB support
result = mo.sql(f"""
SELECT * FROM df WHERE column > 100
""")
return
@app.cell
def _():
# Horizontal stack
mo.hstack([element1, element2, element3])
# Vertical stack
mo.vstack([top, middle, bottom])
# Tabs
mo.tabs({"Tab 1": content1, "Tab 2": content2})
return
plt.gca() as last expression (not plt.show())Use references/NAVIGATION.md to understand the complete documentation structure. Key references:
.value in the same cell where UI element is definedglobal - violates marimo's execution modelRun marimo check --fix to automatically catch and fix common formatting issues and detect pitfalls.
mo.ui.slider(start, stop, value=None, label=None)
mo.ui.dropdown(options, value=None, label=None)
mo.ui.text(value='', label=None)
mo.ui.button(value=None, kind='primary')
mo.ui.checkbox(label='', value=False)
mo.ui.table(data, sortable=True, filterable=True)
mo.ui.data_explorer(df) # Interactive dataframe explorer
mo.ui.dataframe(df) # Editable dataframe
mo.ui.form(element, label='') # Wrap elements in a form
mo.ui.array(elements) # Array of UI elements
See references/api/inputs/index.md for the complete list.
mo.md(text) # Display markdown
mo.hstack(elements) # Horizontal layout
mo.vstack(elements) # Vertical layout
mo.tabs(dict) # Tabbed interface
mo.stop(predicate, output=None) # Conditional execution
mo.output.append(value) # Append to output
mo.output.replace(value) # Replace output
See references/api/layouts/index.md for all layout options.
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.