ワンクリックで
relay
Send a message to ClaudeClaw (Telegram bot) via its dashboard API. Usage: /relay <message>
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Send a message to ClaudeClaw (Telegram bot) via its dashboard API. Usage: /relay <message>
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Prepend session handoff to DaysActivity.md
Initialize session with context briefing
File production feedback about a zgent's behavior. Routes to CSO for diagnosis and artifact tuning. Usage: /zgent-feedback <zgent> <description>
Run A/B tests comparing convention variants to measure compliance improvements
Archive yesterday's DaysActivity and create fresh file for today
DaysActivity.md formatting conventions. Use when writing handoff entries, hourly summaries, or any content destined for DaysActivity.md.
| name | relay |
| description | Send a message to ClaudeClaw (Telegram bot) via its dashboard API. Usage: /relay <message> |
Send a message to the ClaudeClaw bot running on localhost:3141. The message is processed as if Steve typed it in Telegram — ClaudeClaw's Claude instance will act on it and reply in the Telegram chat.
Take the user's argument as the message to send. If no argument was provided, ask what message to relay.
Read the dashboard token from /root/projects/claudeclaw/.env:
grep 'DASHBOARD_TOKEN' /root/projects/claudeclaw/.env | cut -d'=' -f2
Send via curl:
curl -s -X POST "http://localhost:3141/api/chat/send?token=${DASH_TOKEN}" \
-H "Content-Type: application/json" \
-d "{\"message\": \"<the message>\"}"
Report whether the send succeeded ({"ok":true}) or failed.
Do NOT monitor the response — ClaudeClaw replies asynchronously in Telegram.