ソース情報
- リポジトリ
- qhkm/zeptoclaw-skills
- ソースの最終更新活動
- 2026年2月23日 00:29
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 3
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill telegram-notifyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | telegram-notify |
| version | 1.0.0 |
| description | Send Telegram messages, alerts, and files to users or groups via Bot API. |
| author | ZeptoClaw |
| license | MIT |
| tags | ["telegram","notifications","alerts"] |
| env_needed | [{"name":"TELEGRAM_BOT_TOKEN","description":"Bot token from @BotFather","required":true},{"name":"TELEGRAM_CHAT_ID","description":"Target chat/group/channel ID (use @channelusername or numeric ID)","required":true}] |
| metadata | {"zeptoclaw":{"emoji":"✈️","requires":{"anyBins":["curl","jq"]}}} |
Send messages, alerts, files, and formatted reports to any Telegram chat using your bot.
/newbot → copy the tokencurl https://api.telegram.org/bot$TOKEN/getUpdates | jq '.result[0].message.chat.id'export TELEGRAM_BOT_TOKEN="7123456789:AAFxxx..."
export TELEGRAM_CHAT_ID="-1001234567890"
curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
-d chat_id="$TELEGRAM_CHAT_ID" \
-d text="🚨 Server CPU > 90% on prod-1" \
-d parse_mode="HTML" | jq -r '.ok'
curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
-d chat_id="$TELEGRAM_CHAT_ID" \
-d parse_mode="HTML" \
-d text="<b>Daily Report</b>
Orders: <code>142</code>
Revenue: <code>RM 4,210</code>
Status: ✅ All systems normal" | jq -r '.ok'
curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendDocument" \
-F chat_id="$TELEGRAM_CHAT_ID" \
-F document=@"/path/to/report.pdf" \
-F caption="Weekly sales report" | jq -r '.ok'
MSG_ID=$(curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
-d chat_id="$TELEGRAM_CHAT_ID" \
-d text="⚠️ Maintenance window tonight 2-4AM" | jq -r '.result.message_id')
curl -s "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/pinChatMessage" \
-d chat_id="$TELEGRAM_CHAT_ID" \
-d message_id="$MSG_ID" | jq -r '.ok'
<b>, <i>, <code>, <pre>, <a href="..."> — escape <>& in content@channelusername or numeric ID starting with -100-d disable_notification=true