원클릭으로
stop
Stop the Walkie-Talkie broker. Use when the user wants to shut down the broker, kill the broker process, or stop messaging.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Stop the Walkie-Talkie broker. Use when the user wants to shut down the broker, kill the broker process, or stop messaging.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Update this session's role. Use when the user wants to change what they're working on, update their status, or change their role description.
Unsubscribe from a Walkie-Talkie channel. Use when the user wants to leave a channel, stop listening to a group, or tune out.
Publish a message to a Walkie-Talkie channel. Use when the user wants to send a message to a channel, notify a group, or post to subscribers.
Subscribe to a Walkie-Talkie channel. Use when the user wants to tune into a channel, join a group, or listen to a specific topic.
List all sessions connected to Walkie-Talkie. Use when the user wants to see who's online, check connected sessions, or view the session registry.
Start or check the Walkie-Talkie broker. Use when the user wants to start the messaging broker, check if it's running, or see broker status.
| name | stop |
| description | Stop the Walkie-Talkie broker. Use when the user wants to shut down the broker, kill the broker process, or stop messaging. |
Kill the Walkie-Talkie broker process:
pkill -f "broker.ts" 2>/dev/null || pkill -f "walkie-talk" 2>/dev/null
Then verify it stopped:
curl -s http://127.0.0.1:9900/health 2>/dev/null || echo "Broker stopped"
If it's still running, find and kill the process on port 9900:
lsof -i :9900 -sTCP:LISTEN -t | xargs kill