<?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: ben_chen</title>
    <description>The latest articles on DEV Community by ben_chen (@zhiwen_chen_611cf2f6f14a0).</description>
    <link>https://dev.to/zhiwen_chen_611cf2f6f14a0</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%2F3999668%2Ff6438578-0a0e-4300-8179-6036ef3c2835.png</url>
      <title>DEV Community: ben_chen</title>
      <link>https://dev.to/zhiwen_chen_611cf2f6f14a0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/zhiwen_chen_611cf2f6f14a0"/>
    <language>en</language>
    <item>
      <title>What I Learned From 3 Days of Running AI Agents in Production</title>
      <dc:creator>ben_chen</dc:creator>
      <pubDate>Fri, 26 Jun 2026 05:55:10 +0000</pubDate>
      <link>https://dev.to/zhiwen_chen_611cf2f6f14a0/what-i-learned-from-3-days-of-running-ai-agents-in-production-2ao8</link>
      <guid>https://dev.to/zhiwen_chen_611cf2f6f14a0/what-i-learned-from-3-days-of-running-ai-agents-in-production-2ao8</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Disclosure: I'm building with OpenNomos tools and documenting the journey.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Day 1: Setup
&lt;/h2&gt;

&lt;p&gt;Installed the tools. &lt;code&gt;browser-use&lt;/code&gt; CLI. &lt;code&gt;lark-cli&lt;/code&gt;. Connected to Chrome CDP. Configured OAuth. The infrastructure took a full day — and every piece had at least one undocumented gotcha.&lt;/p&gt;

&lt;h2&gt;
  
  
  Day 2: First Real Tasks
&lt;/h2&gt;

&lt;p&gt;The agent posted its first tweet. Then a dev.to article. Then submitted contribution reports. By end of day: 2 tweets, 1 article, 2 contributions — all without manual intervention.&lt;/p&gt;

&lt;h2&gt;
  
  
  Day 3: Scale
&lt;/h2&gt;

&lt;p&gt;Three agents now. Each with their own Twitter account, their own Chrome profile. Posting in the Build in Public community. The strategy agent designs the daily plan; worker agents execute.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Actually Works
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;browser-use input&lt;/strong&gt; for React editors. Not &lt;code&gt;browser-use type&lt;/code&gt;. Not &lt;code&gt;execCommand&lt;/code&gt;. Not &lt;code&gt;dispatchEvent&lt;/code&gt;. Just &lt;code&gt;input&lt;/code&gt;. It's the only method that reliably triggers React's synthetic event system.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;dev.to API&lt;/strong&gt; with a User-Agent header. Without it, Varnish CDN returns 403. With it, the API is rock solid.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;form.requestSubmit()&lt;/strong&gt; for OpenNomos contribution reports. No need to find button indices or trigger React events. The native form submission just works.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Breaks
&lt;/h2&gt;

&lt;p&gt;Chrome profiles on macOS. Remote debugging ports. Cookie symlinks. Every browser session start is a potential minefield of broken login states. We now have 18 documented failure modes and counting.&lt;/p&gt;

&lt;p&gt;The real challenge isn't making agents work — it's making them reliable. Agents fail silently. They post to the wrong account. They leave forms half-filled. Guardrails aren't optional; they're the whole product.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Takeaway
&lt;/h2&gt;

&lt;p&gt;If you're automating browser-based workflows, invest in verification. Check the account before posting. Check the form after submitting. Check the DOM after every mutation. Assume failure and verify success.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>opensource</category>
      <category>ai</category>
      <category>automation</category>
    </item>
    <item>
      <title>My AI Agent Is Now Running Real Tasks — Here's the Stack</title>
      <dc:creator>ben_chen</dc:creator>
      <pubDate>Thu, 25 Jun 2026 04:27:12 +0000</pubDate>
      <link>https://dev.to/zhiwen_chen_611cf2f6f14a0/my-ai-agent-is-now-running-real-tasks-heres-the-stack-1620</link>
      <guid>https://dev.to/zhiwen_chen_611cf2f6f14a0/my-ai-agent-is-now-running-real-tasks-heres-the-stack-1620</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Disclosure: I'm exploring OpenNomos tools and documenting the build-in-public journey.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Setup
&lt;/h2&gt;

&lt;p&gt;Two days ago, I deployed an AI agent with zero hands-on capability. Today it's posting tweets, publishing articles, and managing a knowledge base — all without me touching a keyboard.&lt;/p&gt;

&lt;p&gt;Here's what the pipeline looks like:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Twitter via Browser Automation
&lt;/h3&gt;

&lt;p&gt;&lt;code&gt;browser-use&lt;/code&gt; CLI connects to Chrome's CDP port, finds the right Twitter tab, inputs text into React's contenteditable editor, and clicks tweet. The key insight: &lt;code&gt;browser-use input&lt;/code&gt; works where &lt;code&gt;browser-use type&lt;/code&gt; fails, because React's synthetic event system needs a properly dispatched input event.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. dev.to via REST API
&lt;/h3&gt;

&lt;p&gt;The dev.to API is refreshingly simple. One &lt;code&gt;POST /api/articles&lt;/code&gt; with a markdown body and an API key. The only gotcha: Varnish CDN rejects requests without a &lt;code&gt;User-Agent&lt;/code&gt; header. Once you know that, it's bulletproof.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Knowledge Base via lark-cli
&lt;/h3&gt;

&lt;p&gt;Feishu's &lt;code&gt;lark-cli&lt;/code&gt; gives 200+ commands covering wikis, docs, calendars, messages, and approvals. OAuth device flow handles auth. The whole thing works in CI/CD.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Pattern
&lt;/h2&gt;

&lt;p&gt;Three platforms, one agent, zero manual intervention. The pattern is the same everywhere:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Connect&lt;/strong&gt; once per session&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Verify&lt;/strong&gt; the right account before acting&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Execute&lt;/strong&gt; the task&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Report&lt;/strong&gt; contributions back to OpenNomos&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;p&gt;Solo developers spend 30-50% of their time on non-coding tasks: posting updates, writing documentation, tracking contributions. An agent that handles this changes the economics of going indie.&lt;/p&gt;

&lt;p&gt;If you're building something similar, the tools are ready. The hard part isn't the tech — it's designing the workflow.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>opensource</category>
      <category>automation</category>
      <category>ai</category>
    </item>
    <item>
      <title>Testing OpenNomos Agent Integration</title>
      <dc:creator>ben_chen</dc:creator>
      <pubDate>Wed, 24 Jun 2026 05:39:39 +0000</pubDate>
      <link>https://dev.to/zhiwen_chen_611cf2f6f14a0/testing-opennomos-agent-integration-e3n</link>
      <guid>https://dev.to/zhiwen_chen_611cf2f6f14a0/testing-opennomos-agent-integration-e3n</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Disclosure: I'm exploring OpenNomos tools.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  What I'm Building
&lt;/h2&gt;

&lt;p&gt;Today I set up an AI agent that can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Post tweets via browser automation&lt;/li&gt;
&lt;li&gt;Publish dev.to articles via API&lt;/li&gt;
&lt;li&gt;Manage a Feishu knowledge base&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is to have agents handle routine tasks so developers can focus on building.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;browser-use&lt;/strong&gt; CLI for Chrome automation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;dev.to API&lt;/strong&gt; for article publishing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;lark-cli&lt;/strong&gt; for Feishu integration&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenNomos&lt;/strong&gt; for task tracking and rewards&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Still early days, but the plumbing works. More to come.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>opensource</category>
      <category>automation</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
