Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

wasm-compatibilitywasm 兼容性

Agent Skill

wasm-compatibility 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

21,550

周安装

907

GitHub Stars

126

下载量

7,546
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wasm-compatibility(wasm 兼容性)
来源仓库:https://github.com/marimo-team/skills
仓库路径:skills/wasm-compatibility
安装命令:
npx skills add https://github.com/marimo-team/skills --skill wasm-compatibility
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/marimo-team/skills --skill wasm-compatibility

简介

验证 marimo 笔记本与 WebAssembly 环境的兼容性并识别不兼容的依赖项或代码模式。

  • 分析 PEP 723 元数据和导入语句以提取所有笔记本依赖项,然后交叉引用 Pyodide 的内置包和纯 Python 可用性
  • 检测与本机 C/Rust 扩展(torch、tensorflow、psycopg2 等)不兼容的软件包,并建议 WASM 友好的替代方案
  • 扫描代码以查找 WASM 阻塞模式,包括子进程调用、多处理、硬编码文件路径、sqlite3 和环境变量访问
  • 生成详细报告,其中包含程序包兼容性状态、单元位置的代码问题以及故障笔记本的具体修复步骤

SKILL.md

WASM Compatibility Checker for marimo Notebooks

Check whether a marimo notebook can run in a WebAssembly (WASM) environment — the marimo playground, community cloud, or exported WASM HTML.

Instructions

1. Read the notebook

Read the target notebook file. If the user doesn't specify one, ask which notebook to check.

2. Extract dependencies

Collect every package the notebook depends on from both sources:

  • PEP 723 metadata — the # /// script block at the top: # /// script # dependencies = [# "marimo", # "torch>=2.0.0", #] # ///
  • Import statements — scan all cells for import foo and from foo import bar. Map import names to their PyPI distribution name using this table: Import name Distribution name sklearn scikit-learn skimage scikit-image cv2 opencv-python PIL Pillow bs4 beautifulsoup4 yaml pyyaml dateutil python-dateutil attr / attrs attrs gi PyGObject serial pyserial usb pyusb wx wxPython For most other packages, the import name matches the distribution name.

3. Check each package against Pyodide

For each dependency, determine if it can run in WASM:

  1. Is it in the Python standard library? Most stdlib modules work, but these do not:

- multiprocessing — browser sandbox has no process spawning - subprocess — same reason - threading — emulated, no real parallelism (WARN, not a hard fail) - sqlite3 — use apsw instead (available in Pyodide) - pdb — not supported - tkinter — no GUI toolkit in browser - readline — no terminal in browser

  1. Is it a Pyodide built-in package? See pyodide-packages.md for the full list. These work out of the box.
  2. Is it a pure-Python package? Packages with only .py files (no compiled C/Rust extensions) can be installed at runtime via micropip and will work. To check: look for a py3-none-any.whl wheel on PyPI (e.g. visit https://pypi.org/project/<package>/#files). If the only wheels are platform-specific (e.g. cp312-cp312-manylinux), the package has native extensions and likely won't work. Common pure-Python packages that work (not in Pyodide built-ins but installable via micropip):

- plotly, seaborn, humanize, pendulum, arrow, tabulate - dataclasses-json, marshmallow, cattrs, pydantic (built-in) - httpx (built-in), tenacity, backoff, wrapt (built-in)

  1. Does it have C/native extensions not built for Pyodide? These will not work. Common culprits:

- torch / pytorch - tensorflow - jax / jaxlib - psycopg2 (suggest psycopg with pure-Python mode) - mysqlclient (suggest pymysql) - uvloop - grpcio - psutil

4. Check for WASM-incompatible patterns

Scan the notebook code for patterns that won't work in WASM:

PatternWhy it failsSuggestion
subprocess.run(...), os.system(...), os.popen(...)No process spawning in browserRemove or gate behind a non-WASM check
multiprocessing.Pool(...), ProcessPoolExecutorNo process forkingUse single-threaded approach
threading.Thread(...), ThreadPoolExecutorEmulated threads, no real parallelismWARN only — works but no speedup; use asyncio for I/O
open("/absolute/path/..."), hard-coded local file pathsNo real filesystem; only in-memory fsFetch data via URL (httpx, urllib) or embed in notebook
sqlite3.connect(...)stdlib sqlite3 unavailableUse apsw or duckdb
pdb.set_trace(), breakpoint()No debugger in WASMRemove breakpoints
Reading env vars (os.environ[...], os.getenv(...))Environment variables not available in browserUse mo.ui.text for user input or hardcode defaults
Path.home(), Path.cwd() with real file expectationsVirtual filesystem onlyUse URLs or embedded data
Large dataset loads (>100 MB)2 GB total memory capUse smaller samples or remote APIs

5. Check PEP 723 metadata

WASM notebooks should list all dependencies in the PEP 723 # /// script block so they are automatically installed when the notebook starts. Check for these issues:

  • Missing metadata: If the notebook has no # /// script block, emit a WARN recommending one. Listing dependencies ensures they are auto-installed when the notebook starts in WASM — without it, users may see import errors.
  • Missing packages: If a package is imported but not listed in the dependencies, emit a WARN suggesting it be added. Note: version pins and lower bounds in PEP 723 metadata are fine — marimo strips version constraints when running in WASM.

6. Produce the report

Output a clear, actionable report with these sections:

Compatibility: PASS / FAIL / WARN

Use these verdicts:

  • PASS — all packages and patterns are WASM-compatible
  • WARN — likely compatible, but some packages could not be verified as pure-Python (list them so the user can check)
  • FAIL — one or more packages or patterns are definitely incompatible

Package Report — table with columns: Package, Status (OK / WARN / FAIL), Notes

Example:

PackageStatusNotes
marimoOKAvailable in WASM runtime
numpyOKPyodide built-in
pandasOKPyodide built-in
torchFAILNo WASM build — requires native C++/CUDA extensions
my-niche-libWARNNot in Pyodide; verify it is pure-Python

Code Issues — list each problematic code pattern found, with the cell or line and a suggested fix.

Recommendations — if the notebook fails, suggest concrete fixes:

  • Replace incompatible packages with WASM-friendly alternatives
  • Rewrite incompatible code patterns
  • Suggest moving heavy computation to a hosted API and fetching results

Additional context

  • WASM notebooks run via Pyodide in the browser
  • Memory is capped at 2 GB
  • Network requests work but may need CORS-compatible endpoints
  • Chrome has the best WASM performance; Firefox, Edge, Safari also supported
  • micropip can install any pure-Python wheel from PyPI at runtime
  • For the full Pyodide built-in package list, see pyodide-packages.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.07%
按下载量换算2,646

Claude

30.35%
按下载量换算2,290

Cursor

17.7%
按下载量换算1,336

Gemini CLI

8.72%
按下载量换算658

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills