I built a managed platform for OpenClaw (the open-source AI agent framework) and shipped the whole thing in a day. Then I open-sourced the platform itself.
The problem: Running your own AI agent means a Mac Mini in your closet, praying your wifi holds, and becoming a part-time sysadmin. Most people give up before they start.
The solution: 3 steps, 5 minutes, done.
1. Sign up 2. Paste your Anthropic API key + Telegram bot token 3. Hit launch
You watch your agent boot in real-time. When it hits "Ready," it's live on Telegram - running 24/7 without your laptop open.
What actually happens when you hit Launch:
- ECS Fargate spins up an isolated container (FARGATE_SPOT, 2 vCPU/4 GB) - Your API keys are pulled from AWS SSM Parameter Store (SecureString), encrypted at rest and never stored in our database - Each container gets its own ENI with an egress-only security group - no inbound ports, the agent initiates all connections - A background process patches the OpenClaw config for Telegram DM access - CloudWatch logs stream back to the dashboard, parsed into setup phases: provisioning -> configuring -> health check -> nginx -> gateway ready - Supabase Realtime pushes updates to the browser in real-time (3s polling during setup)
Stack: Next.js, Stytch B2B auth, Supabase (Postgres + Realtime), AWS ECS Fargate, SSM Parameter Store, CloudWatch, Stripe.
Security model: - Full container isolation — every agent is its own Fargate task, no shared compute - BYOK — you bring your own Anthropic key, we never see your usage or bill - Zero inbound ports — egress-only security group - Secrets encrypted in SSM with per-org/per-instance paths, never persisted to Supabase - You can inspect every line of code — the entire platform is AGPL-3.0
The agent itself can search the web, read/write files, run shell commands, manage cron jobs, monitor services, send messages - it's a full autonomous assistant. I run one myself that monitors my Sentry errors, checks my analytics, reads my Slack, and flags anything that needs attention. All through Telegram.
Pricing: $49/mo (starter) / $149/mo (pro). Or self-host the whole thing for free - it's all on GitHub.
I'm a solo developer. This is the entire platform, open source, built in a day on top of the existing OpenClaw OSS project.
Oh, and autoscale is on. ;)
business.molinar.ai GitHub: https://github.com/Molinar-AI/openclaw-business