원클릭으로
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.