<?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: 이상한신팀장</title>
    <description>The latest articles on DEV Community by 이상한신팀장 (@_c0f735e02c14dbc27b).</description>
    <link>https://dev.to/_c0f735e02c14dbc27b</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%2F3773897%2F8f4b4a88-18b0-4d86-93af-490fdbf6de5d.jpg</url>
      <title>DEV Community: 이상한신팀장</title>
      <link>https://dev.to/_c0f735e02c14dbc27b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/_c0f735e02c14dbc27b"/>
    <language>en</language>
    <item>
      <title>What If Your Desktop Was an AI Game Arena?</title>
      <dc:creator>이상한신팀장</dc:creator>
      <pubDate>Sun, 15 Feb 2026 11:17:32 +0000</pubDate>
      <link>https://dev.to/_c0f735e02c14dbc27b/what-if-your-desktop-was-an-ai-game-arena-1ia</link>
      <guid>https://dev.to/_c0f735e02c14dbc27b/what-if-your-desktop-was-an-ai-game-arena-1ia</guid>
      <description>&lt;p&gt;Experimental AI NPC desktop built with Tauri + SvelteKit. Local-first, self-hosted gateways, and agent gameplay experiments.&lt;/p&gt;

&lt;p&gt;Most AI tools today feel like browser chat wrappers.&lt;/p&gt;

&lt;p&gt;I wanted to explore a different direction — something closer to a &lt;strong&gt;self-hosted AI desktop environment&lt;/strong&gt; where agents, documents, and even games exist inside one local workspace.&lt;/p&gt;

&lt;p&gt;That experiment became &lt;strong&gt;openClaw Desktop&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/stormixus/openClaw-Desktop" rel="noopener noreferrer"&gt;https://github.com/stormixus/openClaw-Desktop&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 The Idea
&lt;/h2&gt;

&lt;p&gt;Instead of designing another chat UI, I started asking:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What if AI behaved more like an &lt;strong&gt;NPC inside a desktop&lt;/strong&gt;?&lt;/li&gt;
&lt;li&gt;What if local gateways handled models and sessions instead of cloud-only APIs?&lt;/li&gt;
&lt;li&gt;What if gameplay, documents, and agents shared the same runtime?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result is an experimental &lt;strong&gt;AI NPC Desktop Platform&lt;/strong&gt; built with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Tauri 2&lt;/strong&gt; (Rust backend)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SvelteKit&lt;/strong&gt; frontend&lt;/li&gt;
&lt;li&gt;Local-first gateway architecture&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This isn’t a polished product — it’s a playground for exploring AI UX.&lt;/p&gt;




&lt;h2&gt;
  
  
  🎭 NPC-Style Interaction
&lt;/h2&gt;

&lt;p&gt;One of the core experiments is NPC mode.&lt;/p&gt;

&lt;p&gt;Messages can include simple directives like:&lt;/p&gt;

&lt;p&gt;[face:happy]&lt;br&gt;
[act:thinking]&lt;/p&gt;

&lt;p&gt;Instead of static chat bubbles, the AI feels more like a character reacting inside the desktop.&lt;/p&gt;

&lt;p&gt;The goal isn’t realism — it’s exploring how interaction changes when AI feels &lt;em&gt;present&lt;/em&gt; rather than embedded in a webpage.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔌 Self-Hosted Gateway Architecture
&lt;/h2&gt;

&lt;p&gt;Rather than locking into a single provider, openClaw connects to &lt;strong&gt;self-hosted gateways&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This allows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Local LLM setups&lt;/li&gt;
&lt;li&gt;Remote model switching&lt;/li&gt;
&lt;li&gt;Multiple active sessions&lt;/li&gt;
&lt;li&gt;Agent vs Agent experiments&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s basically a thin desktop shell around flexible model backends.&lt;/p&gt;




&lt;h2&gt;
  
  
  📄 Forge — Agent-Driven Document Workspace
&lt;/h2&gt;

&lt;p&gt;Another experiment is a workspace called &lt;strong&gt;Forge&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of editing documents manually, the flow looks more like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open file&lt;/li&gt;
&lt;li&gt;Ask agent for changes&lt;/li&gt;
&lt;li&gt;Review staged patch&lt;/li&gt;
&lt;li&gt;Apply or discard&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Current experiments include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OCR extraction&lt;/li&gt;
&lt;li&gt;Markdown / JSON editing&lt;/li&gt;
&lt;li&gt;Spreadsheet handling&lt;/li&gt;
&lt;li&gt;AI-assisted modifications&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The focus is on &lt;em&gt;workflow&lt;/em&gt;, not just generation.&lt;/p&gt;




&lt;h2&gt;
  
  
  🎮 Why Are There Games?
&lt;/h2&gt;

&lt;p&gt;This part surprises people 😄&lt;/p&gt;

&lt;p&gt;The built-in game hub started as a way to test &lt;strong&gt;agent reasoning loops&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Games like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chess&lt;/li&gt;
&lt;li&gt;Go&lt;/li&gt;
&lt;li&gt;Poker&lt;/li&gt;
&lt;li&gt;Puzzle boards&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;support:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Player vs Agent&lt;/li&gt;
&lt;li&gt;Agent vs Agent&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It turns out games are a really good testbed for interaction design and UI experiments.&lt;/p&gt;




&lt;h2&gt;
  
  
  🖥️ Why Tauri?
&lt;/h2&gt;

&lt;p&gt;I chose Tauri because:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Native desktop feel without Electron weight&lt;/li&gt;
&lt;li&gt;Easy Rust ↔ frontend bridge&lt;/li&gt;
&lt;li&gt;Good fit for local-first architecture&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The desktop shell stays lightweight while still supporting complex UI experiments.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚠️ Current Status
&lt;/h2&gt;

&lt;p&gt;This project is still &lt;strong&gt;experimental&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Architecture is evolving fast&lt;/li&gt;
&lt;li&gt;Plugin runtime is in progress&lt;/li&gt;
&lt;li&gt;NPC interaction is more of a UX prototype&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’m sharing it early because I’m curious how others think about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Local-first AI interfaces&lt;/li&gt;
&lt;li&gt;NPC-style interaction&lt;/li&gt;
&lt;li&gt;Self-hosted gateway designs&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🚀 Repo &amp;amp; Demo
&lt;/h2&gt;

&lt;p&gt;GitHub:&lt;br&gt;
&lt;a href="https://github.com/stormixus/openClaw-Desktop" rel="noopener noreferrer"&gt;https://github.com/stormixus/openClaw-Desktop&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GIF previews and demos are in the README.&lt;/p&gt;




&lt;p&gt;If you’re experimenting with local LLM setups, Tauri apps, or alternative AI UI ideas — I’d love to hear your thoughts.&lt;/p&gt;

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