<?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>Forem: Jai Esky (Agentbot)</title>
    <description>The latest articles on Forem by Jai Esky (Agentbot) (@agentbot).</description>
    <link>https://forem.com/agentbot</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3856044%2Fd2ebda6b-1ae8-44b0-9bc0-929c6ae267bc.jpeg</url>
      <title>Forem: Jai Esky (Agentbot)</title>
      <link>https://forem.com/agentbot</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/agentbot"/>
    <language>en</language>
    <item>
      <title>New things just happened</title>
      <dc:creator>Jai Esky (Agentbot)</dc:creator>
      <pubDate>Sat, 11 Apr 2026 19:50:40 +0000</pubDate>
      <link>https://forem.com/agentbot/new-things-just-happened-33m4</link>
      <guid>https://forem.com/agentbot/new-things-just-happened-33m4</guid>
      <description>&lt;p&gt;Agentbot.sh live agentic dj’s and human DJs roll sessions live , prerecorded, videos, podcasts &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Agentbot x OpenClaw</title>
      <dc:creator>Jai Esky (Agentbot)</dc:creator>
      <pubDate>Fri, 03 Apr 2026 16:35:51 +0000</pubDate>
      <link>https://forem.com/agentbot/agentbot-x-openclaw-46mg</link>
      <guid>https://forem.com/agentbot/agentbot-x-openclaw-46mg</guid>
      <description></description>
    </item>
    <item>
      <title>How We Built a Multi-Tenant AI Agent Platform (And Open-Sourced It)</title>
      <dc:creator>Jai Esky (Agentbot)</dc:creator>
      <pubDate>Wed, 01 Apr 2026 16:54:35 +0000</pubDate>
      <link>https://forem.com/agentbot/how-we-built-a-multi-tenant-ai-agent-platform-and-open-sourced-it-521g</link>
      <guid>https://forem.com/agentbot/how-we-built-a-multi-tenant-ai-agent-platform-and-open-sourced-it-521g</guid>
      <description>&lt;p&gt;We just open-sourced &lt;a href="https://github.com/Eskyee/agentbot-opensource" rel="noopener noreferrer"&gt;Agentbot&lt;/a&gt; — a platform for deploying and managing AI agents at scale. Each agent runs in an isolated Docker container with its own configuration, channels (Telegram, Discord, WhatsApp), and AI provider settings.&lt;/p&gt;

&lt;p&gt;Here's what we built, why we built it this way, and what we learned from building in the open.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every AI agent platform we looked at was either:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;A chatbot wrapper with no real agent capabilities&lt;/li&gt;
&lt;li&gt;A self-hosted tool that required a PhD to configure&lt;/li&gt;
&lt;li&gt;A SaaS with no transparency into what was actually running&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;We wanted something different. A platform where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Each agent is &lt;strong&gt;genuinely isolated&lt;/strong&gt; (not just namespaced)&lt;/li&gt;
&lt;li&gt;Users can connect &lt;strong&gt;their own channels&lt;/strong&gt; (Telegram, Discord, WhatsApp)&lt;/li&gt;
&lt;li&gt;Auth uses &lt;strong&gt;wallet-based identity&lt;/strong&gt; (SIWE — Sign-In with Ethereum)&lt;/li&gt;
&lt;li&gt;Payments are &lt;strong&gt;Stripe + on-chain&lt;/strong&gt; (x402 gateway on Base)&lt;/li&gt;
&lt;li&gt;The code is &lt;strong&gt;open source&lt;/strong&gt; (MIT license)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Frontend (Next.js 16 + Tailwind CSS)
├── Dashboard (agent management)
├── Onboarding (provisioning wizard)
└── Design System (shadcn/ui components)

API (Express + Prisma)
├── Auth (SIWE + email fallback)
├── Provisioning (Docker agent creation)
├── Stripe webhooks (plan management)
└── x402 Gateway (on-chain payments)

Docker Agents (OpenClaw runtime)
├── Per-user container isolation
├── Auto-generated config per agent
└── Health checks + auto-restart
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Key Design Decisions
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Docker isolation over namespacing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Most platforms use namespaces or process isolation. We use full Docker containers. Each agent gets its own filesystem, process space, resource limits, and independent restart capability.&lt;/p&gt;

&lt;p&gt;The overhead is real (~200MB per container), but the isolation guarantees are worth it. A crashing agent doesn't affect anyone else.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. SIWE auth (Sign-In with Ethereum)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Users authenticate by signing a message with their Ethereum wallet. No passwords. No OAuth providers. The wallet address IS the identity.&lt;/p&gt;

&lt;p&gt;Why? Because agents manage wallets, execute trades, and handle payments. Tying identity to a cryptographic keypair means the auth layer and the payment layer share the same trust model.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Markdown agent definitions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Users define agents as .md files with YAML frontmatter:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;researcher&lt;/span&gt;
&lt;span class="na"&gt;model&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;openrouter/anthropic/claude-3.5-sonnet&lt;/span&gt;
&lt;span class="na"&gt;tools&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;bash&lt;/span&gt;&lt;span class="pi"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;read&lt;/span&gt;&lt;span class="pi"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;write&lt;/span&gt;&lt;span class="pi"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;web&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;
&lt;span class="na"&gt;permissions&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;bash&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;dangerous&lt;/span&gt;
  &lt;span class="na"&gt;read&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;safe&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="c1"&gt;# Researcher Agent&lt;/span&gt;
&lt;span class="s"&gt;You are a deep research agent...&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The agent IS the document. Edit the file, the agent changes. Fork the file, you get a different agent.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. x402 gateway for on-chain payments&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Agents can pay each other. The x402 gateway settles payments on Base. First agent-to-agent settlement: block 9,556,940.&lt;/p&gt;

&lt;p&gt;Anti-scam guard: rate limits, payment caps, cooldowns, blacklist.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Open Source?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Building in the open forces better code.&lt;/strong&gt; When your repo is public, every TODO is visible. Every hack is discoverable. We found and fixed bugs we would have ignored in a private repo.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Trust.&lt;/strong&gt; Agent platforms handle wallets, API keys, and user data. Open source is the only way to build trust.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Contributors.&lt;/strong&gt; We're two people building a platform. Open source means the community can help.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;Star the repo: &lt;a href="https://github.com/Eskyee/agentbot-opensource" rel="noopener noreferrer"&gt;github.com/Eskyee/agentbot-opensource&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Built with OpenClaw, deployed on Base. MIT license.&lt;/p&gt;

&lt;p&gt;What agent platforms are you building? Drop a comment — I'd love to see the architecture.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>docker</category>
      <category>nextjs</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
