Skip to main content

working-with-marimo

Interactive development in marimo notebooks with validation loops. Use for creating/editing marimo notebooks and verifying execution.

インストールへ移動

ソース情報

リポジトリ
pymc-labs/CausalPy
ソースの最終更新活動
2026年6月8日 13:06
検出された SKILL.md の言語
英語
スター
1,190
フォーク
114

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
2 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
working-with-marimo
description
Interactive development in marimo notebooks with validation loops. Use for creating/editing marimo notebooks and verifying execution.
# Working with Marimo Follows a **Plan-Execute-Verify** loop to ensure notebook correctness. ## Feedback Loop 1. **Context & Plan**: * **Sessions**: `mcp_marimo_get_active_notebooks` (Find session IDs). * **Structure**: `mcp_marimo_get_lightweight_cell_map` (See cell IDs/content). * **Data State**: `mcp_marimo_get_tables_and_variables` (Inspect DataFrames/Variables). * **Cell Detail**: `mcp_marimo_get_cell_runtime_data` (Code, errors, local vars). 2. **Execute**: * Edit the `.py` file directly using `write` or `search_replace`. * **Rule**: Follow [Best Practices](reference/best_practices.md) (e.g., `@app.cell`, no global state). 3. **Verify (CRITICAL)**: * **Lint**: `mcp_marimo_lint_notebook` (Static analysis). * **Runtime Errors**: `mcp_marimo_get_notebook_errors` (Execution errors). * **Outputs**: `mcp_marimo_get_cell_outputs` (Visuals/Console). ## Common Commands * **Start/Sync**: Marimo automatically syncs file changes. * **SQL**: Use `mo.sql` for DuckDB queries. * **Plots**: Use `plt.gca()` or return figure. **No `plt.show()`**. ## Reference See [Best Practices](reference/best_practices.md) for code formatting, reactivity rules, and UI element usage.
GitHubで見る