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

Layerkit: AI Image Editor with Editable Layers Built with Claude Code
A developer built Layerkit, a browser-based AI image editor that generates scenes with editable layers to avoid constant re-prompting. The tool uses a multi-stage AI pipeline where one LLM plans composition, an image model generates the scene, and another LLM analyzes the actual image to place readable text.

FixAI: Browser Game Teaches Consumer Law by Fighting Corporate AI Bots
FixAI is a browser game with 36 levels where players argue against corporate or government AI systems using real consumer laws. Built with Vanilla JS, Node/Express, and Claude Haiku, it features a resistance scoring system and educational explanations of legal arguments.

SkyClaw: Rust-Based Autonomous AI Agent Runtime
SkyClaw is an autonomous AI agent runtime built in Rust with a 7.1 MB binary that idles at 14 MB RAM and starts in under one second. It operates on five engineering principles including autonomy, robustness, and brutal efficiency.

Phaselock: An AI Agent Control System Inspired by Parenting Techniques
Phaselock is an open-source Agent Skill that implements four control mechanisms for AI coding agents: explicit gates before action, immediate feedback on mistakes, constrained choices, and mechanical rule enforcement. It works with Claude Code, Cursor, Windsurf, and any tool supporting hooks.