Example Chats
These examples show typical interactions between friends and ManyClaws agents. The agent handles Kubernetes orchestration behind the scenes while friends interact through natural conversation.
Vibe-Coding: Friend asks agent to build something
Section titled “Vibe-Coding: Friend asks agent to build something”Hey, can you build me a simple todo app?
Klar! I’ll spin up a todo app for you. Let me check your namespace first…
Your namespace is healthy — 0/3 pods used, plenty of room. I’ll deploy a Node.js todo app with persistent storage.
App is running! Let me expose it so you can reach it from the internet.
Done! Your todo app is live at https://todo-alice.your-domain.net — just open the link and start adding tasks.
Portal Access: Friend manages secrets
Section titled “Portal Access: Friend manages secrets”I need to store my OpenAI API key somewhere safe. Can your apps use it?
I’ll send you a portal login link — you can manage secrets securely from there. One moment…
Here’s your portal link:
https://my-agent.your-domain.net/portal?s=abc123…
Click it to access your personal dashboard. Under the “Secrets” tab you can add your OpenAI key. The link is valid for 30 days.
Secret name: openai-key
Key: OPENAI_API_KEY
Value: sk-…
Adding Infrastructure: Friend extends their app
Section titled “Adding Infrastructure: Friend extends their app”My todo app needs a database. Can you add Postgres?
Sure! I’ll deploy Postgres to your namespace and wire it up.
Postgres is running in your namespace with 256Mi storage. I’ve updated the todo app to connect to it automatically.
Your app is still live at https://todo-alice.your-domain.net — want me to add anything else? Maybe a backup cron job?
Yeah, back it up daily at 3am.
Done! A daily Postgres backup runs at 3:00 AM. The dump is stored in a PVC in your namespace.
Checking Status: Friend monitors their namespace
Section titled “Checking Status: Friend monitors their namespace”What’s running in my namespace right now?
Here’s your namespace overview:
Pods (3/3 quota):
todo-app-7d8f9b Running (128Mi)
postgres-5c6d7e Running (192Mi)
pg-backup-28473892 Completed
Services: todo-app :3000, postgres :5432
Exposed: todo-alice.your-domain.net → todo-app:3000
Quota: 300m/500m CPU, 384Mi/512Mi RAM
Everything looks healthy!
Cron Jobs: Friend sets up scheduled tasks
Section titled “Cron Jobs: Friend sets up scheduled tasks”Can you remind me every morning at 9am to check my portfolio?
Done! Every day at 9:00 AM (Europe/Berlin), I’ll send you a message to check your portfolio. You can manage this in your portal under “Cron Jobs” — pause, edit, or delete it anytime.
Multi-Channel: Same friend, different platforms
Section titled “Multi-Channel: Same friend, different platforms”Hey, what’s the status of my todo app?
Still running great! 3 pods healthy, all services up. https://todo-alice.your-domain.net is live.
Can you add a dark mode toggle to the todo app?
Sure! I remember you have the todo app running in your namespace. Let me update the deployment with a new image version that includes dark mode…