remote-from-telegram
GitHub连接当前 Agent 会话到 Telegram 频道,实现通过 Telegram 控制或聊天。流程包括检查状态、列出通道与代理、选择并启动桥接服务,以及指导用户完成授权。
Trigger Scenarios
Install
npx skills add codeaholicguy/ai-devkit --skill remote-from-telegram -g -y
SKILL.md
Frontmatter
{
"name": "remote-from-telegram",
"description": "AI DevKit · Connect the current agent session to an available Telegram channel bridge."
}
Remote From Telegram
Use this skill when the user wants to control or chat with the current session from Telegram.
Prefer the installed ai-devkit binary; if unavailable, use npx ai-devkit@latest. Run AI DevKit commands outside filesystem sandboxes because they inspect host-level agent and channel state.
Workflow
-
Check readiness:
ai-devkit status --jsonIf AI DevKit is not ready, use
ai-devkit-setupskill first. Stop if setup leaves manual actions. -
Inspect channels and agents:
ai-devkit channel list ai-devkit agent list --json -
Identify the current agent by matching this session to an
agent list --jsonentry. If unclear, ask for the agent name. -
Find configured Telegram channels. If none exist, tell the user to run:
ai-devkit channel connect telegramStop after giving that action.
-
Choose a channel. Use the requested channel or the only available Telegram channel. If multiple Telegram channels are available, ask the user which one to use. Available means Telegram, enabled, configured with bot credentials, and not already running. Do not reject a Telegram channel only because it is not authorized yet; Telegram authorization cannot complete until after the bridge is started and the user sends a message to the bot.
-
If no Telegram channel is available because bridges are already running, ask before stopping one. After confirmation:
ai-devkit channel stop <channel> -
Start the bridge in the background:
ai-devkit channel start <channel> --agent <agent-name> --daemon -
Report the connected channel, agent name, and how to stop it:
ai-devkit channel stop <channel>. If the channel was not authorized before start, explicitly tell the user the bridge is running and they must now send any message to the Telegram bot to authorize that chat before using it.
Boundaries
- Do not create or connect a Telegram channel for the user; only point them to
channel connect. - Do not stop a running bridge without explicit confirmation.
- Do not guess when both agent or channel selection are ambiguous.
Version History
-
e96ca22
Current 2026-09-22 05:12
澄清了 Telegram 频道授权流程,移除了对已授权状态的强制要求,允许在桥接启动后由用户发送消息完成授权。
- 5941ca5 2026-09-08 23:35


