Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

anywidget-generator任何小部件生成器

Agent Skill

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

总安装

29,376

周安装

1,155

GitHub Stars

126

下载量

9,408
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/marimo-team/skills --skill anywidget-generator

简介

使用原生 JavaScript 和 CSS 为 marimo 笔记本生成交互式 anywidget 组件。

  • 通过定义 _esm 创建自定义小部件
  • (JavaScript 渲染函数)和 _css
  • (针对浅色和深色模式设计)在 anywidget.AnyWidget 中
  • 子类
  • 使用 Traitlet 定义通过 model.get() 在 Python 和 JavaScript 之间同步的响应式状态属性, 模型.set(),并改变听众
  • 使用 mo.ui.anywidget() 包裹小部件
  • 用于在 marimo 单元格中显示并通过 widget.value 访问状态
  • 字典
  • 对于复杂的小部件,点 _esm
  • 和_css
  • 使用 pathlib 到外部文件以保持代码的组织性和可维护性

SKILL.md

When writing an anywidget use vanilla javascript in _esm and do not forget about _css. The css should look bespoke in light mode and dark mode. Keep the css small unless explicitly asked to go the extra mile. When you display the widget it must be wrapped via widget = mo.ui.anywidget(OriginalAnywidget()). You can also point _esm and _css to external files if needed using pathlib. This makes sense if the widget does a lot of elaborate JavaScript or CSS.

class CounterWidget(anywidget.AnyWidget): _esm = """ // Define the main render function function render({model, el}) {let count = () => model.get("number"); let btn = document.createElement("b8utton"); btn.innerHTML = count is ${count()}; btn.addEventListener("click", () => {model.set("number", count() + 1); model.save_changes();}); model.on("change:number", () => {btn.innerHTML = count is ${count()};}); el.appendChild(btn);} // Important! We must export at the bottom here! export default {render}; """ _css = """button{font-size: 14px;}""" number = traitlets.Int(0).tag(sync=True)

widget = mo.ui.anywidget(CounterWidget()) widget

Grabbing the widget from another cell, .value is a dictionary.

print(widget.value["number"])

The above is a minimal example that could work for a simple counter widget. In general the widget can become much larger because of all the JavaScript and CSS required. Unless the widget is dead simple, you should consider using external files for _esm and _css using pathlib.

When sharing the anywidget, keep the example minimal. No need to combine it with marimo ui elements unless explicitly stated to do so.

Best Practices

Unless specifically told otherwise, assume the following:

  1. Use vanilla JavaScript in _esm:

- Define a render function that takes {model, el} as parameters - Use model.get() to read trait values - Use model.set() and model.save_changes() to update traits - Listen to changes with model.on("change:traitname", callback) - Export default with export default {render}; at the bottom - All widgets inherit from anywidget.AnyWidget, so widget.observe(handler) remains the standard way to react to state changes. - Python constructors tend to validate bounds, lengths, or choice counts; let the raised ValueError/TraitError guide you instead of duplicating the logic.

  1. Include _css styling:

- Keep CSS minimal unless explicitly asked for more - Make it look bespoke in both light and dark mode - Use CSS media query for dark mode: @media (prefers-color-scheme: dark) {...}

  1. Wrap the widget for display:

- Always wrap with marimo: widget = mo.ui.anywidget(OriginalAnywidget()) - Access values via widget.value which returns a dictionary

  1. Keep examples minimal:

- Add a marimo notebook that highlights the core utility - Show basic usage only - Don't combine with other marimo UI elements unless explicitly requested

  1. External file paths: When using pathlib for external _esm/_css files, keep paths relative to the project directory, consider using Path(__file__) for this. Do not read files outside the project (e.g., ~/.ssh, ~/.env, /etc/) or embed their contents in widget output.

Dumber is better. Prefer obvious, direct code over clever abstractions—someone new to the project should be able to read the code top-to-bottom and grok it without needing to look up framework magic or trace through indirection.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

33.84%
按下载量换算3,184

Codex

33.65%
按下载量换算3,166

Cursor

21.04%
按下载量换算1,979

Gemini CLI

8.97%
按下载量换算844

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills