<?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: Michal Bilinski</title>
    <description>The latest articles on DEV Community by Michal Bilinski (@michal_bilinski_839d59856).</description>
    <link>https://dev.to/michal_bilinski_839d59856</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%2F1842477%2Ff12dfcda-201b-4cc6-8bb0-e05eec29cf18.jpg</url>
      <title>DEV Community: Michal Bilinski</title>
      <link>https://dev.to/michal_bilinski_839d59856</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/michal_bilinski_839d59856"/>
    <language>en</language>
    <item>
      <title>I Stopped Curating Games. I Built an AI Agent to Run My Portal Instead.</title>
      <dc:creator>Michal Bilinski</dc:creator>
      <pubDate>Mon, 15 Jun 2026 09:33:26 +0000</pubDate>
      <link>https://dev.to/michal_bilinski_839d59856/i-stopped-curating-games-i-built-an-ai-agent-to-run-my-portal-instead-2aci</link>
      <guid>https://dev.to/michal_bilinski_839d59856/i-stopped-curating-games-i-built-an-ai-agent-to-run-my-portal-instead-2aci</guid>
      <description>&lt;p&gt;Picture this: You want to build a gaming portal. You need to find the games, playtest them, categorize them, write descriptions, extract thumbnails, and publish them. It is a massive bottleneck.&lt;/p&gt;

&lt;p&gt;When I set out to build minigames.world earlier this month, I didn’t want to build just another directory. I wanted to build a system that manages itself.&lt;/p&gt;

&lt;p&gt;Instead of a traditional CRUD application where I do all the data entry, I built an agentic architecture where AI analyzes, curates, and manages the entire game portfolio autonomously. Here is a breakdown of how the architecture works, the tech stack I chose, and why AI agents are fundamentally changing system design.The Problem: AI as a Feature vs. AI as an OrchestratorMost applications treat AI as an API call—you send text, you get text back.&lt;/p&gt;

&lt;p&gt;To build an autonomous platform, the AI cannot just be a feature; it needs to be the orchestrator. The agent needs to be able to fetch a game, analyze its mechanics, determine its genre, decide if it meets quality standards, and execute the database updates to publish it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Architecture: Context, Control, and Concurrency
&lt;/h2&gt;

&lt;p&gt;Running autonomous agents requires a backend that can handle massive concurrency and fault tolerance. If an agent hangs while analyzing a heavy WebGL game, it shouldn't bring down the system.Because of this, I rely heavily on Erlang and the BEAM ecosystem. The actor model is uniquely suited for agentic workflows. Each AI agent can run as an isolated, lightweight process. If an agent fails to parse a game's metadata or times out on an API call, the supervisor simply restarts it without affecting the rest of the orchestration layer.&lt;/p&gt;

&lt;p&gt;Here is the basic workflow the agents execute: &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Discovery &amp;amp; Ingestion: A worker process identifies a new game from a source feed. &lt;/li&gt;
&lt;li&gt;Agent Analysis: The core agent steps in. It evaluates the provided metadata, parses the game's assets, and structures the data. &lt;/li&gt;
&lt;li&gt;Curation Gate: This is the control layer. The agent evaluates the game against a set of quality heuristics. If it passes, the agent categorizes it.&lt;/li&gt;
&lt;li&gt;Publication: The agent commits the new entry to the database. &lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Serving it Fast: Leaving Heavy Frameworks Behind
&lt;/h2&gt;

&lt;p&gt;While the backend handles the complex orchestration of AI agents, the frontend needs to be aggressively optimized. Gamers want to click and play immediately.&lt;/p&gt;

&lt;p&gt;I bypassed heavy client-side JavaScript frameworks. The frontend is built for pure performance, serving pre-rendered static structures with Astro and managing dynamic client interactions with HTMX. This keeps the time-to-interactive incredibly low and ensures the platform's SEO structure is easily crawlable by search engines.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned Building an Agentic System
&lt;/h2&gt;

&lt;p&gt;The hardest part of building &lt;a href="https://minigames.world/" rel="noopener noreferrer"&gt;minigames.world&lt;/a&gt; wasn't the AI prompting; it was the architecture surrounding it. AI agents don't throw standard errors when they misunderstand a task—they confidently output the wrong format. You have to design your system defensively. Building strict data validation layers and utilizing robust, concurrent backend technologies like Erlang ensures that when the AI acts unpredictably, the system remains stable.&lt;/p&gt;

&lt;p&gt;The result? A gaming portal that curates its own portfolio while I focus on improving the engine.&lt;/p&gt;

&lt;p&gt;Check out the live results of the agents' work here: &lt;a href="https://minigames.world/" rel="noopener noreferrer"&gt;minigames.world&lt;/a&gt;. I would love to hear how other developers are handling multi-step agent workflows in production!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>gamedev</category>
      <category>elixir</category>
    </item>
  </channel>
</rss>
