<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Manh</title>
    <description>The latest articles on DEV Community by Manh (@mankhb2k).</description>
    <link>https://dev.to/mankhb2k</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3995310%2F9493d381-5354-42eb-a992-4cbe9221f45e.jpg</url>
      <title>DEV Community: Manh</title>
      <link>https://dev.to/mankhb2k</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mankhb2k"/>
    <language>en</language>
    <item>
      <title>I've built an open-source OpenClaw UI for End Users. No Code, no CLI.</title>
      <dc:creator>Manh</dc:creator>
      <pubDate>Sun, 21 Jun 2026 14:09:02 +0000</pubDate>
      <link>https://dev.to/mankhb2k/ive-built-an-open-source-openclaw-ui-for-end-users-no-code-no-cli-35hb</link>
      <guid>https://dev.to/mankhb2k/ive-built-an-open-source-openclaw-ui-for-end-users-no-code-no-cli-35hb</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fceb9xv0p73sfjbddxx8n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fceb9xv0p73sfjbddxx8n.png" alt=" " width="800" height="414"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hey guys,&lt;/p&gt;

&lt;p&gt;OpenClaw is everywhere right now. Honestly, the idea of running a local AI agent 24/7 on Telegram or Discord without paying any subscription fees sounds amazing.&lt;/p&gt;

&lt;p&gt;But let's be real for a second: OpenClaw was built for power users and developers. It is definitely not friendly for regular end-users or non-technical teams.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why vanilla OpenClaw is a headache for regular users
&lt;/h2&gt;

&lt;p&gt;Looking at how people actually use OpenClaw, setting it up yourself comes with some pretty big roadblocks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The CLI nightmare:&lt;/strong&gt; To even start, you have to be comfortable with the terminal, upgrade to Node 24, run daemon install scripts, and manually tweak everything inside a confusing &lt;code&gt;openclaw.json&lt;/code&gt; file. If you don't code, you'll probably give up right here.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security can be scary:&lt;/strong&gt; OpenClaw has had some serious security issues (like a critical remote code execution bug) and it saves your tokens and passwords in plaintext by default. If you don't know how to secure port 18789 or set up a VPS firewall, your data is wide open.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The maintenance tax:&lt;/strong&gt; You easily lose 1 to 2 hours every single month just updating patches, digging through error logs, and keeping the system alive.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because of this, most regular users just give up and pay for cloud services like Claude Cowork, Perplexity Computer, or Codex just to avoid the headache.&lt;/p&gt;




&lt;p&gt;Over the last few months, I've been diving deep into OpenClaw and how agent runtimes work. I wanted the raw power of OpenClaw, but with the smooth experience of a cloud app. So, I built AucoBot a self-hosted platform that wraps a clean web UI around the engine so you can run agents across Telegram, Discord, Google Drive, and Calendar without the stress.&lt;/p&gt;

&lt;p&gt;Here is how it makes life easier:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;One-line setup:&lt;/strong&gt; Just run &lt;code&gt;docker compose up -d&lt;/code&gt;. The web dashboard, core API, Postgres database, and OpenClaw gateway all spin up automatically and sync together through a shared volume.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chat right in your browser:&lt;/strong&gt; It has a built-in chat window on the dashboard that safely proxies your messages to the gateway, so you don't need any extra software.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Point-and-click management:&lt;/strong&gt; You can toggle API keys (OpenAI, Claude, Gemini, DeepSeek), edit your agent's personality, set permissions, and link your chat channels using simple forms and buttons. No more editing &lt;code&gt;openclaw.json&lt;/code&gt; by hand.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Browser (Visual UI)
   │
   ▼
 web :8386 ──REST /api──► api :8387 ──► postgres :5432
   │                         │
   │                         ├── sync ──► openclaw_data (Auto-writes config files)
   │                         │
   │                         └── WS proxy ──► gateway :18789 (OpenClaw Engine)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Completely Open-Source
&lt;/h2&gt;

&lt;p&gt;AucoBot is free and open-source under the Apache-2.0 / MIT license. I built this to help individuals, startups, and small teams self-host their own secure AI agents without burning out over the technical overhead.&lt;/p&gt;

&lt;p&gt;📂 &lt;strong&gt;GitHub Repository:&lt;/strong&gt; &lt;a href="https://github.com/aucobot/aucobot" rel="noopener noreferrer"&gt;github.com/aucobot/aucobot&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you want to deploy an autonomous AI agent for yourself or your team but want to stay far away from the CLI, give AucoBot a shot! Let me know what you think — I'd love any feedback to make it better.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>showdev</category>
      <category>ai</category>
      <category>openclaw</category>
    </item>
  </channel>
</rss>
