원클릭으로
telegram-install
Install the Copilot CLI Telegram Bridge extension. Copies extension.mjs into the Copilot extensions directory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Install the Copilot CLI Telegram Bridge extension. Copies extension.mjs into the Copilot extensions directory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | telegram-install |
| description | Install the Copilot CLI Telegram Bridge extension. Copies extension.mjs into the Copilot extensions directory. |
Install the Telegram Bridge extension so the user gets a /telegram slash command for remote interaction via a Telegram bot.
&& where possible. Do not add unnecessary pauses or confirmations between steps.$(...) inside commands. You must run Step 1 first, read its output, then plug the literal paths into later steps.H="${COPILOT_HOME:-$HOME/.copilot}" && echo "HOME=$H" && find "$H/installed-plugins" "$H/state/installed-plugins" -path "*/copilot-cli-telegram-bridge/extension.mjs" 2>/dev/null && echo "---EXT---" && ls "$H/extensions/copilot-cli-telegram-bridge/extension.mjs" 2>/dev/null
Read the output. Extract:
HOME=extension.mjs (strip the /extension.mjs suffix). May be empty if plugin not installed.ls after ---EXT--- found the extension in the extensions directoryIf ALREADY_INSTALLED is true, skip to Step 3 (already set up).
If no PLUGIN_SRC is found (no extension.mjs in installed-plugins), stop and tell the user:
The plugin is not installed yet. Run this first, then restart Copilot CLI and invoke this skill again:
copilot plugin install examon/copilot-cli-telegram-bridge
Run this single command (replace COPILOT_HOME and PLUGIN_SRC with literal paths from Step 1):
EXT="COPILOT_HOME/extensions/copilot-cli-telegram-bridge" && mkdir -p "$EXT" && cp "PLUGIN_SRC/extension.mjs" "$EXT/extension.mjs" && chmod 644 "$EXT/extension.mjs" && ls -la "$EXT/extension.mjs" && echo "OK: extension installed"
If the command fails, report the error and stop.
Tailor the message based on what happened:
If extension was already installed (skipped Step 2):
Telegram Bridge is already installed. Nothing to do.
/telegram setup <name>-- register a bot/telegram connect <name>-- start the bridge/telegram help-- see all commands
If installation was performed:
Telegram Bridge extension installed. Restart Copilot CLI to load it.
After restart:
/telegram setup <name>-- register a bot/telegram connect <name>-- start the bridge/telegram help-- see all commands