返回顶部
m

moltenview

Push persistent visual views (charts, metrics, lists, progress bars) to MoltenView Mac app. Use when agent output benefits from visual display that persists outside chat. NOT for: simple text responses, one-off data.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
73
下载量
0
收藏
概述
安装方式
版本历史

moltenview

# 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 ```bash export MOLTENVIEW_SOCKET="/Users/$USER/Library/Containers/com.goldcote.MoltenView/Data/.moltenview/view.sock" ``` ## Push a View ```bash 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): | Type | Key Fields | |------|-----------| | **text** | title, subtitle, detail, badge | | **chart** | chart.chartType (bar/line/pie/area), chart.dataPoints [{label, value, color}] | | **gauge** | gauge.value, gauge.min, gauge.max, gauge.label, gauge.color | | **progress** | progress (0.0-1.0), subtitle | | **metric** | title (label), subtitle (big value), detail (change), metricColor | | **link** | url (https/mailto), title, subtitle, icon | | **image** | imageBase64, icon (SF Symbol), title | ## Example: Push a Chart ```bash 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 ```bash 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 | Action | Purpose | Data Required | |--------|---------|---------------| | `push` | Display new view | Yes | | `update` | Update existing view | Yes | | `clear` | Clear current view | No | | `status` | Check connection | No | ## Status Check ```bash 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

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 moltenview-1775942381 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 moltenview-1775942381 技能

通过命令行安装

skillhub install moltenview-1775942381

下载 Zip 包

⬇ 下载 moltenview v1.0.0

文件大小: 2.04 KB | 发布时间: 2026-4-12 10:38

v1.0.0 最新 2026-4-12 10:38
Initial release of the MoltenView skill.

- Push persistent visual views (charts, metrics, lists, progress bars) to the MoltenView Mac app for long-lived visual displays.
- Supports structured data such as metrics, progress, charts, gauges, links, and images.
- Guidance provided for when to use/persist views versus transient text responses.
- Includes example scripts, required fields, supported item types, actions (push, update, clear, status), and status checks.
- Views remain until cleared or replaced; requires the MoltenView app running on Mac.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部