Pleng: Self-Hosted Cloud Platform with AI-Driven Infrastructure Management

Pleng is a self-hosted cloud platform driven by an AI agent designed to simplify infrastructure deployment and management. The tool addresses what the creator calls "localhost syndrome"—the friction of manually setting up VPS, Docker, Traefik, and SSL certificates that often prevents side projects from reaching production.
How It Works
You install Pleng with a single command on a fresh Ubuntu VPS. Instead of using a dashboard, you manage your entire infrastructure through a Telegram bot using natural language commands. For example, you can text the bot: "Deploy the main branch of this GitHub repo to mydomain.com" or "Why is my app crashing?". The AI agent then handles cloning, Docker containers, reverse proxy setup, SSL configuration, and log reading.
Security Architecture
The creator acknowledges the security concerns of giving an AI root server access. Pleng addresses this with strict isolation measures:
- The agent runs inside a heavily sandboxed Docker container
- It has NO access to the host machine, NO sudo privileges, and NO access to the Docker socket
- It can only affect infrastructure by calling a separate platform API over HTTP
- It uses a deterministic CLI tool under the hood that can deploy, restart, fetch logs, or read metrics, but cannot execute destructive commands like
rm -rf /
Current Features
- Deploy from GitHub (public or private repos) or local directories
- Automated Traefik routing with Let's Encrypt SSL certificates
- Built-in basic analytics for pageviews and visitors
- Automated backups, health monitoring, and log inspection directly in the chat interface
The tool is licensed under AGPL-3.0 and represents an early version built primarily to solve the creator's own deployment challenges. It's positioned as useful for indie hackers and developers who want to push projects to production with minimal friction.
📖 Read the full source: r/openclaw
👀 See Also

Launch Engine MCP Server Provides 39-Tool Pipeline for Business Validation
Launch Engine is an MCP server that gives Claude a structured pipeline with 39 interconnected SOP tools organized into 5 layers for taking business ideas from concept to validated revenue. The system includes specialized subagents, prerequisite enforcement, and tools for batch evaluation and rapid testing.

Open Source Agent Skill for TypeScript, React, and Next.js Patterns
A developer has released a 4,000-line, 17-file structured markdown reference designed for AI agents like Claude Code to follow when generating or reviewing TypeScript, React, and Next.js code. It addresses common issues like improper API response validation and misuse of 'use client' directives.

Custom WhatsApp Channel Plugin for Claude Code Using Baileys
A developer built a custom channel plugin that adds WhatsApp support to Claude Code 2.1.80+ using Baileys v7, implementing the WhatsApp Web Multi-Device protocol as an MCP server with the experimental claude/channel capability.

Cortex: A Local Memory Layer for OpenClaw Agents with Ebbinghaus Decay
Cortex is an open-source memory tool built to solve context compaction issues in OpenClaw agents. It implements Ebbinghaus forgetting curves for fact decay, imports from files first, and runs as a single 19MB Go binary with SQLite.