Design & media

ClawVision Plus

Try it

Companion plugin for ClawVision: add PDF, OG images, and Telegram sharing.

What it does

Companion plugin for ClawVision: add PDF, OG images, and Telegram sharing.

The skill document

ClawVision Plus — companion plugin for ClawVision

This is not a standalone skill. It extends ClawVision with three extra outputs for summaries it already generated.

Adds

  1. PDF export — multi-page PDF, one page per ClawVision tab (Main / Format / Built / Next).
  2. OG image — 1200×630 social-preview PNG.
  3. Telegram sharing — send the OG image + summary caption to a Telegram chat or channel.

When to use

Only after the main clawvision skill has generated the HTML card. Good triggers:

  • "Export this ClawVision summary as PDF."
  • "Generate an OG image for this ClawVision card."
  • "Send this ClawVision summary to Telegram."
  • "Run ClawVision Plus on the summary we just made."

Workflow

  1. Use clawvision to generate the summary card (HTML + JSON).
  2. Run clawvision-plus/scripts/extend_visual.py on the same JSON and output directory.
  3. Get the PDF, OG image, and/or Telegram delivery.

Usage

# 1. Generate summary with the main ClawVision skill
python clawvision/scripts/generate_visual.py \
  --summary summary.json \
  --output ./out \
  --png --md --pptx \
  --lang en

# 2. Run the companion plugin
python clawvision-plus/scripts/extend_visual.py \
  --summary summary.json \
  --output ./out \
  --pdf --og \
  --telegram \
  --telegram-chat-id "@your_channel" \
  --telegram-bot-token "YOUR_BOT_TOKEN"

Parameters

  • --summary — path to ClawVision summary JSON.
  • --output — directory containing the rendered HTML card.
  • --slug — optional slug override.
  • --pdf — export HTML to a multi-page PDF, one page per tab.
  • --og — generate 1200×630 OG image.
  • --telegram — send OG image + caption to Telegram.
  • --telegram-chat-id — Telegram chat/channel ID.
  • --telegram-bot-token — Telegram bot token.
  • --telegram-caption — override the generated caption.

Requirements

  • Python 3.10+
  • playwright (already required by ClawVision)
  • Pillow
  • reportlab (for multi-page PDF)
  • python-telegram-bot (only for Telegram sharing)

Safety

  • Do not send summaries to Telegram without explicit user confirmation.
  • Never share Telegram bot tokens in chat or logs.
  • The plugin does not upload raw session transcripts.

Related skills

ClawVision 1.0.13 — honest data-export description, offline-only analytics, explicit permissions table.

ClawVision 1.0.7 — explicit permission disclosure for security audit.

ClawVision 1.0.9 — explicit permission disclosure for security audit.

1 installs

ClawVision 1.0.6 — improve ClawHub security review transparency by rewriting description and removing unused skill_workshop permission.

ClawVision 中文版 1.0.7 — 本地导出工具。读取你选择的 OpenClaw 会话历史,使用本地 LLM 总结,并写入 HTML、Markdown、PowerPoint 和 PNG 导出文件到本地磁盘。需要权限:读取会话历史、列出会话、本地文件读写、执行本地 Python/Playwright 脚本、本地 LLM 推理。数据不会发送到外部 API。

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.