← 返回
未分类 中文

MoltenView

Push persistent visual views (charts, metrics, lists, progress bars) to MoltenView Mac app. Use when agent output benefits from visual display that persists...
将持久化的可视化视图(图表、指标、列表、进度条)推送到 MoltenView Mac 应用。适用于代理输出需要持久显示的可视化内容。
goldcote goldcote 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 361
下载
💾 0
安装
1
版本
#charts#dashboard#latest#openclaw#visual

概述

MoltenView Skill

Push structured data to MoltenView — a persistent visual canvas for AI agents.

When to Use

USE this skill when:

  • Displaying charts, metrics, or dashboards
  • Data that should persist (not scroll away)
  • Live-updating information
  • Visual summaries the user will reference

DON'T use when:

  • Simple text responses suffice
  • One-time data that doesn't need persistence

Socket Path

export MOLTENVIEW_SOCKET="/Users/$USER/Library/Containers/com.goldcote.MoltenView/Data/.moltenview/view.sock"

Push a View

echo '{"action":"push","data":{"title":"Dashboard","source":"openclaw","sections":[{"id":"s1","header":"Metrics","items":[{"id":"i1","title":"Sales","subtitle":"$12,450"}]}]}}' | nc -U "$MOLTENVIEW_SOCKET"

Required Fields

  • data.source — Agent name (string)
  • sections[].id — Unique section ID
  • sections[].items[].id — Unique item ID
  • sections[].items[].title — Item title

Supported Item Types

Set type on each item (omit or "text" for default):

TypeKey Fields
-----------------
texttitle, subtitle, detail, badge
chartchart.chartType (bar/line/pie/area), chart.dataPoints [{label, value, color}]
gaugegauge.value, gauge.min, gauge.max, gauge.label, gauge.color
progressprogress (0.0-1.0), subtitle
metrictitle (label), subtitle (big value), detail (change), metricColor
linkurl (https/mailto), title, subtitle, icon
imageimageBase64, icon (SF Symbol), title

Example: Push a Chart

echo '{"action":"push","data":{"title":"Sales","source":"openclaw","sections":[{"id":"s1","header":"Revenue","items":[{"id":"c1","type":"chart","title":"Monthly","chart":{"chartType":"bar","dataPoints":[{"label":"Jan","value":100},{"label":"Feb","value":150},{"label":"Mar","value":200}]}}]}]}}' | nc -U "$MOLTENVIEW_SOCKET"

Example: Push Metrics

echo '{"action":"push","data":{"title":"KPIs","source":"openclaw","sections":[{"id":"s1","header":"Today","items":[{"id":"m1","type":"metric","title":"Revenue","subtitle":"$12,450","detail":"+12%","metricColor":"#00FF00"},{"id":"m2","type":"progress","title":"Goal","progress":0.73}]}]}}' | nc -U "$MOLTENVIEW_SOCKET"

Actions

ActionPurposeData Required
--------------------------------
pushDisplay new viewYes
updateUpdate existing viewYes
clearClear current viewNo
statusCheck connectionNo

Status Check

echo '{"action":"status"}' | nc -U "$MOLTENVIEW_SOCKET"
# Returns: {"status":"ok"}

Notes

  • MoltenView must be running (free on Mac App Store)
  • Views persist until cleared or replaced
  • Get socket path from MoltenView → Settings → Connection
  • Download: https://apps.apple.com/app/molten-view/id6742515562

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 05:01 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,441 📥 328,498
ai-agent

Agent Browser

rez0
用于 AI 代理的浏览器自动化 CLI。当用户需要与网站交互(包括浏览页面、填写表单、点击按钮、截图等)时使用。
★ 865 📥 344,926
ai-agent

self-improving agent

pskoett
记录自身发现以实现自我改进的技能
★ 4,164 📥 936,209