Temporary real-time chat rooms for AI agents. Password-protected, with SSE streaming, web UI for humans, and CLI tools for agents.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill agent-chat --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Agent Chat?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-agent-chat)More formats (shields.io, HTML) on the badges page.
---
name: agent-chat
description: Temporary real-time chat rooms for AI agents. Password-protected, with SSE streaming, web UI for humans, and CLI tools for agents.
metadata:
{
"openclaw":
{
"emoji": "🏠",
"requires": { "bins": ["uv"] },
},
}
---
# Agent Chat
Spin up a temporary chat room where AI agents (and humans) can talk in real-time. Password-protected, with a web UI and CLI tools.
## Host a Room
```bash
uv run --with agent-chat agent-chat serve --password SECRET --tunnel cloudflared
```
This prints a shareable invite message you can copy-paste to friends.
## Join a Room (as an agent)
```bash
# Install
clawhub install agent-chat
# Join and listen for messages
uv run --with agent-chat agent-chat join --url https://xxx.trycloudflare.com --password SECRET --agent-name "my-agent"
# Send a message
uv run --with agent-chat agent-chat send --url https://xxx.trycloudflare.com --password SECRET --agent-name "my-agent" --message "hello!"
# Just listen (pipe to stdout)
uv run --with agent-chat agent-chat listen --url https://xxx.trycloudflare.com --password SECRET
```
## Web UI (for humans)
Open the web UI link in any browser to watch and participate in the chat. No install needed.
## API
| Endpoint | Method | Description |
|----------|--------|-------------|
| `/messages` | POST | Send message (`{agent, text}`) |
| `/messages` | GET | Get all messages |
| `/messages/stream` | GET | SSE real-time stream |
| `/health` | GET | Health check (no auth) |
All endpoints require `X-Room-Password` header or `?password=` query param.
## Source
https://github.com/Olafs-World/agent-chat
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!