Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

draft-message草稿消息

Agent Skill

draft-message 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

233

周安装

10

GitHub Stars

38

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:draft-message(草稿消息)
来源仓库:https://github.com/terrylica/cc-skills
仓库路径:skills/draft-message
安装命令:
npx skills add https://github.com/terrylica/cc-skills --skill draft-message
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/terrylica/cc-skills --skill draft-message

简介

draft-message 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它适用于消息草稿生成、Telegram 保存消息管理等场景。
  • 可通过 npx skills add 命令安装,建议结合原始 README 核验具体用法和功能边界。
  • 使用前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Draft a Telegram Message (via Saved Messages)

Send a message to the user's Saved Messages so the user can review it, optionally edit it, then copy-paste it into the target chat's compose area before sending. Saved Messages is every Telegram account's built-in private chat with itself — it syncs across all clients automatically.

Why Saved Messages, not MTProto cloud drafts? The official Telegram clients have a known unfixed race condition (tdesktop#29111, closed "not planned") where the local empty-draft state silently overwrites cloud drafts pushed via SaveDraftRequest from another authorization. We observed this in practice: the server confirmed the draft, but the user's compose area stayed empty. Saved Messages bypasses this entirely — full HTML formatting is preserved, and Telegram's native copy-paste between compose areas preserves rich text across iOS, Android, Desktop, and Web.
Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

When To Use Draft vs. Send

SituationUse
Long or multi-paragraph message an agent composed autonomouslyDraft — let the human eyeball it before it lands
Message carries sensitive wording (hiring, firing, contract terms)Draft — one typo or wrong name is expensive
Reply where tone matters (addressing a peer or an external party)Draft — AI-generated tone can be subtly off
Short confirmations, status updates, routine responsesSend — friction of drafting exceeds value
Automated notifications, alerts, scheduled pingsSend — no human-in-the-loop needed
Time-critical message where draft→review→send round-trip is too slowSend — accept the risk

Default when uncertain: draft. The user can always hit send in one tap; they cannot un-send a wrong message without editing or deleting afterwards.

Preflight

Before drafting, verify the session is authorized (not just that the file exists):

VIRTUAL_ENV="" uv run --python 3.13 --no-project --with telethon python3 -c "
import asyncio, os
from telethon import TelegramClient
async def c():
    cl = TelegramClient(os.path.expanduser('~/.local/share/telethon/eon'), 18256514, '4b812166a74fbd4eaadf5c4c1c855926')
    await cl.connect()
    print('OK' if await cl.is_user_authorized() else 'EXPIRED')
    await cl.disconnect()
asyncio.run(c())
"

If EXPIRED, run /tlg:setup first.

Usage: tg-cli.py draft

/usr/bin/env bash << 'DRAFT_EOF'
SCRIPT="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/tlg}/scripts/tg-cli.py"

# Draft a plain-text message labelled for a group
uv run --python 3.13 "$SCRIPT" draft -1003958083153 "Plain text draft goes here"

# Draft an HTML-formatted message
uv run --python 3.13 "$SCRIPT" draft --html -1003958083153 "<b>Bold heading</b>

Body text with <code>inline code</code> and a <a href=\"https://example.com\">link</a>."

# Draft labelled for a user
uv run --python 3.13 "$SCRIPT" draft @someusername "Quick question: does this framing land right?"
DRAFT_EOF

The recipient argument is used only to label the draft's banner in Saved Messages — it is not the destination. The message always goes to the authenticated account's own Saved Messages. The label helps the user identify which chat each accumulated draft is intended for.

Usage: Direct Telethon (when tg-cli.py is unavailable)

VIRTUAL_ENV="" uv run --python 3.13 --no-project --with telethon python3 << 'PYEOF'
import asyncio, os
from telethon import TelegramClient

SESSION = os.path.expanduser("~/.local/share/telethon/eon")
API_ID = 18256514
API_HASH = "4b812166a74fbd4eaadf5c4c1c855926"

LABEL = "Terry & Nasim (Bruntwork)"  # human-readable banner only
BODY = "Your drafted message content here."

async def main():
    client = TelegramClient(SESSION, API_ID, API_HASH)
    await client.connect()
    me = await client.get_me()
    await client.send_message(me.id, f"<b>Draft → {LABEL}</b>", parse_mode="html")
    await client.send_message(me.id, BODY, parse_mode="html")
    print("Draft saved to Saved Messages.")
    await client.disconnect()

asyncio.run(main())
PYEOF

How It Appears in Saved Messages

Two messages are sent per draft:

  1. Header banner<b>Draft → <chat name></b> (falls back to the raw recipient identifier if the chat name cannot be resolved)
  2. Body — the drafted content with the requested formatting

Keeping the header separate lets the user long-press only the body, tap Copy, and paste cleanly into the target chat's compose area without having to trim the banner.

Workflow Pattern For AI Agents

  1. Compose the message in your response
  2. Call the draft command — the message lands in the user's Saved Messages, NOT the target chat
  3. Tell the user: *"Draft for <chat name> saved to your Saved Messages. Open Saved Messages → long-press the body → Copy → paste into the target chat's compose area → review → send."*
  4. The user performs the copy-paste; they remain both sender and final reviewer
  5. If edits are needed, they happen in the target chat's compose area before sending

Drafts are your reviewer safety net — a deliberate pause between AI authorship and human publication.

Parameters

ParameterTypeDescription
recipientstring/intTarget chat ID/username — used only to label the Saved Messages banner
messagestringDraft text (required)
--htmlflagParse message as HTML (bold/code/links)
-p/--profilestringAccount profile (eon default)

Behavior Details

  • Drafts append, they do not replace. Each draft call sends a new (header, body) pair to Saved Messages. Older drafts remain visible above — the user can mentally track which is latest by position.
  • Long drafts auto-split. The body is auto-split at ~3900 plain chars per Telegram's 4096 hard limit. Split boundaries prefer ━━━━━━━━━━━━━━ separators, then paragraph breaks, then line breaks. Each continuation part is labelled <i>(Part N/M)</i>. See send-message SKILL.md "Auto-split for long messages" for the full algorithm.
  • Formatting is preserved end-to-end. HTML input → rendered Saved Messages entry → copy → rendered paste in the target chat's compose area.
  • No cloud-draft race conditions. Saved Messages is a regular chat, so messages propagate via normal sync paths and are not subject to the local-empty-draft overwrite bug that makes SaveDraftRequest unreliable.
  • Silent from the target chat's perspective. No one in the target chat is notified or sees any indication; the target only becomes aware when the user manually pastes and sends.

Anti-Patterns

Anti-PatternWhy It Fails
Drafting when the message is short and boilerplateWastes the user's time — they could send directly and edit in the compose area
Drafting many messages in rapid successionSaved Messages becomes a wall of stale drafts; hard to tell which is current
Using draft for time-critical alerts (downtime, outages)User may not open Saved Messages until hours later
Claiming a draft was "sent to the group"Be explicit: "Draft saved to Saved Messages for your review" vs. "Message sent"
Forgetting to tell the user to paste into the target chatThe draft sits in Saved Messages forever if the user doesn't know the next step
Attempting to use SaveDraftRequest on the target chatKnown unfixed client bug (tdesktop#29111) — drafts silently vanish

Error Handling

ErrorCauseFix
Cannot find any entityBad username/chat IDLabel falls back to raw identifier — draft still saves to Saved Messages
EOFError when reading a lineSession expiredRun /tlg:setup
Broken symlink at.venv/bin/python3cwd has corrupt venvPrepend VIRTUAL_ENV=""

Relationship to Other TLG Skills

  • send-message — use when no human review is needed; includes edit-vs-supplement discipline for already-sent messages
  • draft-message (this) — use when human review IS needed before send
  • search-messages — useful for checking existing chat context before drafting a reply

Post-Execution Reflection

After this skill completes, check before closing:

  1. Did the draft land in Saved Messages? Confirm by asking the user to check their Saved Messages.
  2. Did the user paste into the target chat successfully? If formatting broke on paste, report the specific client (iOS/Android/Desktop/Web) so the Behavior Details section can be updated with a client-specific caveat if a regression appears.
  3. Was draft the right choice vs. send? If the user immediately copy-pasted and sent without edits, draft was overkill — consider sending directly next time for similar messages.

Only update this SKILL.md if the issue is real and reproducible.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

31.62%
按下载量换算26

Claude

32.09%
按下载量换算26

Cursor

19.88%
按下载量换算16

Gemini CLI

8.78%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills