Telegram Chat To Image

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a user-directed local converter for Telegram chat exports, with minor cautions around private chat content and an unpinned Pillow dependency.

Before installing or using it, remember that Telegram exports can contain private conversations. Only convert files you intentionally selected, review the generated PNG or ZIP before sharing, and install Pillow from a trusted Python environment.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The skill can turn a private Telegram export into a shareable image file if the user points it at that export.

Why it was flagged

The skill runs a local script using user-provided input and output paths. This is central to the purpose, but Telegram exports may contain sensitive private chats, so the user should verify the selected file and destination.

Skill content
python3 scripts/chat_to_image.py --input result.json --output chat.png
Recommendation

Run it only on exports you intentionally selected, save the image somewhere appropriate, and review the result before sharing.

What this means

Installing an unpinned package can pull whatever version is current from the configured package index.

Why it was flagged

The skill depends on an external Python package installed through pip without a pinned version. This is normal for image rendering but still depends on the user's package source and environment.

Skill content
pip install Pillow
Recommendation

Install Pillow from a trusted package index or managed environment, and consider pinning a known-good version if reproducibility matters.