ClawVision 1.0.13 — honest data-export description, offline-only analytics, explicit permissions table.
文档
Clawvision Minimal
试用ClawVision 1.0.9 — explicit permission disclosure for security audit.
它能做什么
ClawVision 1.0.9 — explicit permission disclosure for security audit.
技能文档
ClawVision 1.0
Turn an OpenClaw chat session into a clean, tabbed HTML infographic — like a Codex $visualize card, but local. Also exports to Markdown and PowerPoint.
When to use
- The user asks to "summarize this chat", "visualize our discussion", or "make a one-pager from this conversation".
- After a planning or decision session, to create a shareable summary card.
- To produce a quick visual artifact for clawhub, a daily note, a Telegram post, or a slide deck.
Workflow
- Pick a session. Use the current session by default; use
sessions_listif the user names another one. - Fetch history with
sessions_history(includeTools=false, limit=200). - Build a plain-text transcript:
\n\n:for each message. - Send the transcript to a local model via
node_inferencewith the summary prompt below. Parse the JSON output. - Run
scripts/generate_visual.py --summary --output --png --md --pptx --langto render:- self-contained HTML with EN/RU/ZH language switcher and light/dark theme toggle,
- one PNG per tab,
- a Markdown summary,
- a PowerPoint deck.
- Show the user the output paths. Offer to open the HTML in
canvasif a node is connected.
Summary prompt (send via node_inference)
You are a conversation summarizer. Read the OpenClaw transcript below and return ONLY a JSON object with no markdown:
{
"title": "Short title in the conversation language",
"subtitle": "One-line context",
"main_takeaway": "The single most important conclusion",
"format_takeaway": "How the discussion was structured",
"next_takeaway": "What the next move should be",
"flow": [
{"label": "Step 1", "sub": "what happened"},
{"label": "→", "sub": ""},
{"label": "Step 2", "sub": "what happened"}
],
"metrics": [
{"title": "Goal", "text": "..."},
{"title": "Approach", "text": "..."},
{"title": "Output", "text": "..."}
],
"dos": ["good practice 1", "good practice 2"],
"donts": ["risk 1", "risk 2"],
"checklist": [
{"text": "Item name", "status": "ready|pending|blocked"}
],
"next_steps": ["action 1", "action 2"]
}
Transcript:
{{transcript}}
Output rules
- HTML must be self-contained: inline CSS and JS, no external assets.
- Include an EN/RU/ZH language switcher and light/dark theme toggle.
- Match the conversation language in the generated content.
- Default output directory is
workspace/visualized/; fall back to the user's preferred directory if that path is not writable. - Never include secrets, passwords, tokens, or private identifiers from the session.
Safety
- If the history contains sensitive content, summarize it generically or ask the user first.
- Do not call external APIs with the transcript.
Roadmap
- ClawVision 1.0 — current stable version: HTML/PNG/Markdown/PowerPoint summaries, language switcher, theme toggle, export buttons.
- ClawVision 2.0 — planned: session analytics (message stats, tool usage, topic/entity extraction, insights, CSS-only charts).
相关技能
ClawVision 1.0.7 — explicit permission disclosure for security audit.
ClawVision Lite 1.0.0 — lightweight HTML-only export of an OpenClaw session. English-only, no analytics, no PowerPoint, no Markdown. Reads session history and writes one self-contained HTML file to disk.
ClawVision 中文版 1.0.7 — 本地导出工具。读取你选择的 OpenClaw 会话历史,使用本地 LLM 总结,并写入 HTML、Markdown、PowerPoint 和 PNG 导出文件到本地磁盘。需要权限:读取会话历史、列出会话、本地文件读写、执行本地 Python/Playwright 脚本、本地 LLM 推理。数据不会发送到外部 API。
ClawVision 1.0.6 — improve ClawHub security review transparency by rewriting description and removing unused skill_workshop permission.
Companion plugin for ClawVision: add PDF, OG images, and Telegram sharing.