Klaus offers a hosted, secure, and pre-configured environment for OpenClaw, an open-source autonomous agent framework. It addresses the complexity and security concerns of running OpenClaw by providing isolated EC2 instances with integrated OAuth for common services and automated SRE for instance maintenance. The product targets developers and prosumers who want to experiment with or deploy autonomous agents without the infrastructure overhead.
A starter prompt for Claude Code, what you'll need, and how to reach them.
You are an expert full-stack developer. Build a web application using Next.js 16 (App Router), React 19, Tailwind v4, and Neon Postgres on Vercel. The application should host a simplified version of OpenClaw (or a similar lightweight autonomous agent framework) on isolated cloud instances for individual users. Focus on the core MVP: a user signs up, clicks 'Launch Agent Instance', and is provided with a URL to their dedicated, pre-configured cloud VM running the agent. **MVP Core Features:** 1. **User Authentication:** Basic email/password authentication (e.g., Clerk or NextAuth.js). 2. **Instance Provisioning:** A server-side API endpoint that, upon user request, provisions a minimal cloud VM (e.g., a low-cost EC2 instance or equivalent from DigitalOcean/Linode) and installs a barebones autonomous agent framework. The VM should be accessible via a unique URL for the user. 3. **Basic Agent Configuration:** Programmatically inject a starter configuration for the agent, including an example API key for OpenRouter (use a placeholder or mock for now). 4. **Status Monitoring:** Display the status of the user's provisioned instance (e.g., 'pending', 'running', 'stopped') in the UI. 5. **Shutdown/Cleanup:** A button to gracefully terminate the cloud VM and clean up associated resources. **AWS Specifics (if using EC2):** - Use AWS SDK for JavaScript (v3) in the Next.js backend for EC2 instance management (RunInstances, TerminateInstances, DescribeInstances). - Focus on a single, small instance type (e.g., t3.micro). - For initial agent deployment on the VM, consider using cloud-init or a remote SSH script executed after instance launch to install necessary dependencies and clone/run the agent framework. **Development Steps:** 1. Set up the Next.js project with Tailwind CSS and NextAuth.js/Clerk. 2. Create API routes for `POST /api/instances/launch` and `DELETE /api/instances/terminate`, and `GET /api/instances/status`. 3. Implement the EC2 provisioning logic in the backend, ensuring secure handling of AWS credentials. 4. Develop the frontend UI for user login, instance listing, and control buttons. 5. Integrate Neon Postgres for storing user-instance mappings. **Build and Verify:** - Can a new user sign up, launch an agent instance, see it running, and then terminate it? - Does the agent framework appear to be installed and ready on the provisioned VM (verify via SSH into the VM if using cloud-init, or simply confirm instance is running)?
Reach developers interested in autonomous agents and AI tooling by showcasing how Lumivara's MCP starter kit and agent evaluation tools can complement Klaus's hosted OpenClaw environment.
We are Bailey and Robbie and we are working on Klaus ( https://klausai.com/ ): hosted OpenClaw that is secure and powerful out of the box. Running OpenClaw requires setting up a cloud VM or local container (a pain) or giving OpenClaw root access to your machine (insecure). Many basic integrations (eg Slack, Google Workspace) require you to create your own OAuth app. We make running OpenClaw simple by giving each user their own EC2 instance, preconfigured with keys for OpenRouter, AgentMail, and Orthogonal. And we have OAuth apps to make it easy to integrate with Slack and Google Workspace. We are both HN readers (Bailey has been on here for ~10 years) and we know OpenClaw has serious security concerns. We do a lot to make our users’ instances more secure: we run on a private subnet, automatically update the OpenClaw version our users run, and because you’re on our VM by default the only keys you leak if you get hacked belong to us. Connecting your email is still a risk. The best defense I know of is Opus 4.6 for resilience to prompt injection. If you have a better solution, we’d love to hear it! We learned a lot about infrastructure management in the past month. Kimi
Reply in the Hacker News thread to 'robthompson2018' and also check their Hacker News profile for a direct email if available.
“I've been following Klaus's journey and found the hosted OpenClaw solution intriguing. I've quickly prototyped a similar concept for provisioning agent VMs on demand, including a basic AI-driven SRE health check. I'd be interested in discussing how a solo operator could contribute or build out a similar tool in a focused niche.”
Open the original ↗