一键导入
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.