Install
openclaw skills install @monaxamo/clawvision-plusCompanion plugin for ClawVision: add PDF, OG images, and Telegram sharing.
openclaw skills install @monaxamo/clawvision-plusThis is not a standalone skill. It extends ClawVision with three extra outputs for summaries it already generated.
Only after the main clawvision skill has generated the HTML card. Good triggers:
clawvision to generate the summary card (HTML + JSON).clawvision-plus/scripts/extend_visual.py on the same JSON and output directory.# 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"
--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.playwright (already required by ClawVision)Pillowreportlab (for multi-page PDF)python-telegram-bot (only for Telegram sharing)