Skip to content

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”
Signal DM — alice
👤
Alice

Hey, can you build me a simple todo app?

🤖
Agent

Klar! I’ll spin up a todo app for you. Let me check your namespace first…

GET /api/friends/alice/namespace/status
🤖
Agent

Your namespace is healthy — 0/3 pods used, plenty of room. I’ll deploy a Node.js todo app with persistent storage.

POST /api/friends/alice/namespace/apply → Deployment + Service
🤖
Agent

App is running! Let me expose it so you can reach it from the internet.

POST /api/friends/alice/namespace/expose → todo-alice.your-domain.net
🤖
Agent

Done! Your todo app is live at https://todo-alice.your-domain.net — just open the link and start adding tasks.

Discord DM — bob
👤
Bob

I need to store my OpenAI API key somewhere safe. Can your apps use it?

🤖
Agent

I’ll send you a portal login link — you can manage secrets securely from there. One moment…

POST /api/auth/portal-session → creates 30-day session
🤖
Agent

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.

Friend Portal — bob
Bob opens portal → Secrets tab → New Secret
👤
Bob

Secret name: openai-key

Key: OPENAI_API_KEY

Value: sk-…

Secret created in friend-bob namespace

Adding Infrastructure: Friend extends their app

Section titled “Adding Infrastructure: Friend extends their app”
Signal DM — alice
👤
Alice

My todo app needs a database. Can you add Postgres?

🤖
Agent

Sure! I’ll deploy Postgres to your namespace and wire it up.

POST /api/friends/alice/namespace/apply → Postgres Deployment + Service + PVC
POST /api/friends/alice/namespace/apply → Update todo-app with DATABASE_URL
🤖
Agent

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?

👤
Alice

Yeah, back it up daily at 3am.

POST /api/friends/alice/namespace/apply → CronJob pg_dump at 0 3 * * *
🤖
Agent

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”
WhatsApp DM — alice
👤
Alice

What’s running in my namespace right now?

GET /api/friends/alice/namespace/status
🤖
Agent

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!

Signal DM — bob
👤
Bob

Can you remind me every morning at 9am to check my portfolio?

Creates workspace cron → 0 9 * * * Europe/Berlin
🤖
Agent

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”
Signal DM — alice
👤
Alice Signal

Hey, what’s the status of my todo app?

🤖
Agent

Still running great! 3 pods healthy, all services up. https://todo-alice.your-domain.net is live.

Discord DM — alice
👤
Alice Discord

Can you add a dark mode toggle to the todo app?

🤖
Agent

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…

POST /api/friends/alice/namespace/apply → Updated todo-app image