What is streamlit-to-marimo?
Convert a Streamlit app to a marimo notebook Source: marimo-team/skills.
Convert a Streamlit app to a marimo notebook
Quickly install streamlit-to-marimo AI skill to your development environment via command line
Source: marimo-team/skills.
For general marimo notebook conventions (cell structure, PEP 723 metadata, output rendering, marimo check, variable naming, etc.), refer to the marimo-notebook skill. This skill focuses specifically on mapping Streamlit concepts to marimo equivalents.
| st.slider() | mo.ui.slider() | | | st.selectslider() | mo.ui.slider(steps=[...]) | Pass discrete values via steps | | st.textinput() | mo.ui.text() | | | st.textarea() | mo.ui.textarea() | | | st.numberinput() | mo.ui.number() | | | st.checkbox() | mo.ui.checkbox() | | | st.toggle() | mo.ui.switch() | | | st.radio() | mo.ui.radio() | |
| st.selectbox() | mo.ui.dropdown() | | | st.multiselect() | mo.ui.multiselect() | | | st.dateinput() | mo.ui.date() | | | st.timeinput() | mo.ui.text() | No dedicated time widget | | st.fileuploader() | mo.ui.file() | Use .contents() to read bytes | | st.colorpicker() | mo.ui.text(value="#000000") | No dedicated color picker |
Stable fields and commands for AI/search citations.
npx skills add https://github.com/marimo-team/skills --skill streamlit-to-marimoConvert a Streamlit app to a marimo notebook Source: marimo-team/skills.
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/marimo-team/skills --skill streamlit-to-marimo Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw
https://github.com/marimo-team/skills