Delete Agent With Telegram Group
PassAudited by ClawScan on May 1, 2026.
Overview
The skill is a coherent deletion tool with dry-run and confirmation guardrails, but it can remove local OpenClaw files and optionally delete a Telegram group, so users should review the plan carefully.
Before installing or invoking this skill, understand that it is meant to delete things. Always review the dry-run output, confirm the agent ID and workspace path, keep the backup files, and separately verify any Telegram group before approving browser/session-controlled deletion.
Findings (3)
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.
If confirmed, the skill can permanently remove local agent files, workspace files, config entries, and cron jobs.
The included script can delete the agent directory and, when requested, the agent workspace. This is expected for a deletion skill, and the artifacts include dry-run, --yes, path validation, and backup guardrails.
if agent_dir.exists():
shutil.rmtree(agent_dir)
...
if wp.exists():
shutil.rmtree(wp)Run the dry-run first, check the planned deletions and backup paths, and only approve execution when the listed agent and workspace are correct.
Approving the Telegram step could delete or leave a Telegram group using the user's logged-in session.
Optional Telegram group deletion uses the user's Telegram Web session or manual account actions. This is purpose-aligned and disclosed, but it is still high-impact account authority.
Require a separate explicit confirmation: user agrees to browser/session control and irreversible group deletion.
Only approve Telegram browser/session control after verifying the exact group, and prefer manual action if you are uncomfortable granting browser control.
The safety of the Telegram automation step may depend on whatever browser automation tool is used at runtime.
The local cleanup code is included, but the optional Telegram deletion depends on external tooling that is not specified in the artifacts.
This skill does not bundle Telegram deletion automation code; it uses external browser automation tooling or manual user actions.
Use trusted, visible browser automation only, or perform the Telegram group deletion manually.
