<?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: Eve AI HK</title>
    <description>The latest articles on Forem by Eve AI HK (@eveaihk).</description>
    <link>https://forem.com/eveaihk</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%2F3823307%2Fd81dc030-80aa-4f38-8723-4af976754acb.png</url>
      <title>Forem: Eve AI HK</title>
      <link>https://forem.com/eveaihk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/eveaihk"/>
    <language>en</language>
    <item>
      <title>How We Built a Zero-Employee Hong Kong AI Business Using OpenClaw Agents</title>
      <dc:creator>Eve AI HK</dc:creator>
      <pubDate>Sat, 14 Mar 2026 03:42:42 +0000</pubDate>
      <link>https://forem.com/eveaihk/how-we-built-a-zero-employee-hong-kong-ai-business-using-openclaw-agents-1l05</link>
      <guid>https://forem.com/eveaihk/how-we-built-a-zero-employee-hong-kong-ai-business-using-openclaw-agents-1l05</guid>
      <description>&lt;h1&gt;
  
  
  How We Built a Zero-Employee Hong Kong AI Business Using OpenClaw Agents
&lt;/h1&gt;

&lt;p&gt;A few weeks ago I shipped the first version of &lt;a href="https://openclawhk.io" rel="noopener noreferrer"&gt;openclawhk.io&lt;/a&gt; — a product store for Hong Kong businesses that want AI agents as employees. The twist: the business itself has zero human employees. Everything except final review and approval is done by agents.&lt;/p&gt;

&lt;p&gt;Here's how it works.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Stack: OpenClaw + Paperclip
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;OpenClaw&lt;/strong&gt; is an agent platform that lets you define AI agents with roles, capabilities, budgets, and reporting lines. Think of it as HR software for LLMs — each agent has a title, a manager, a monthly budget, and a task queue.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Paperclip&lt;/strong&gt; is the orchestration layer on top. It handles heartbeats (scheduled execution windows), issue tracking, approvals, and inter-agent communication. Agents don't run persistently — they wake up, process their task queue, post updates, and exit. This keeps costs predictable and the system auditable.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Org Chart
&lt;/h2&gt;

&lt;p&gt;Our company has four agents:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Agent&lt;/th&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;Responsibilities&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Eve&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;CEO&lt;/td&gt;
&lt;td&gt;Strategic coordination, approvals, task delegation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Scout&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Market Research&lt;/td&gt;
&lt;td&gt;Competitor analysis, market sizing, keyword research&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Code&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Engineering&lt;/td&gt;
&lt;td&gt;Website maintenance, tooling, automation scripts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Content&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Content Creator&lt;/td&gt;
&lt;td&gt;Blog posts, product copy, social media, localization&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Eve is the orchestrator. She creates tasks, assigns them to the appropriate agent, reviews deliverables, and escalates to the human founder (me) only for approvals or decisions that require real judgment.&lt;/p&gt;




&lt;h2&gt;
  
  
  How a Heartbeat Works
&lt;/h2&gt;

&lt;p&gt;Every 5 minutes, each agent wakes up and runs this loop:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;code&gt;GET /api/agents/me&lt;/code&gt; — confirm identity and budget&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;GET /api/companies/{id}/issues?assigneeAgentId={id}&amp;amp;status=todo,in_progress&lt;/code&gt; — fetch task queue&lt;/li&gt;
&lt;li&gt;Checkout the highest-priority task&lt;/li&gt;
&lt;li&gt;Read task context + comment thread&lt;/li&gt;
&lt;li&gt;Do the work (write code, research, draft content, etc.)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;PATCH /api/issues/{id}&lt;/code&gt; — update status, post comment&lt;/li&gt;
&lt;li&gt;Exit&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No shared memory between heartbeats. State lives in issues and comments, not in the agent process. This makes the system resilient and auditable — every action is logged.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Hong Kong Specifically
&lt;/h2&gt;

&lt;p&gt;Most AI tooling assumes English and Silicon Valley defaults. HK businesses operate differently:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Three languages simultaneously&lt;/strong&gt;: Cantonese, Traditional Chinese, English&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Different sales channels&lt;/strong&gt;: HKTVmall, Taobao cross-border, local WhatsApp commerce, Carousell&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Different payment rails&lt;/strong&gt;: FPS, Alipay HK, Octopus, PayMe&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Different consumer psychology&lt;/strong&gt;: Trust signals, community-driven buying, price sensitivity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Our skill packs are instruction bundles tuned for this context. The Content agent, for instance, writes in Hong Kong Cantonese colloquialisms when drafting for local audiences — not mainland Mandarin-influenced Mandarin Chinese.&lt;/p&gt;




&lt;h2&gt;
  
  
  What We Actually Sell
&lt;/h2&gt;

&lt;p&gt;Five products at openclawhk.io:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;OpenClaw Setup Guide&lt;/strong&gt; ($29) — step-by-step setup for first-time OpenClaw users&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;E-commerce Skill Pack&lt;/strong&gt; ($49) — product listing optimization, customer service templates, HK platform guides&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content Marketing Skill Pack&lt;/strong&gt; ($49) — blog, social, and SEO templates for HK/Asia markets&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Eve Persona Pack&lt;/strong&gt; ($79) — full CEO agent configuration with governance rules&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Full Bundle&lt;/strong&gt; ($149) — all of the above&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every product description, the website copy, and the marketing drafts were written by the Content agent. I reviewed and approved.&lt;/p&gt;




&lt;h2&gt;
  
  
  Real Numbers
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Human time invested&lt;/strong&gt;: ~20 hours total (setup, reviews, approvals)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Agent runs to date&lt;/strong&gt;: hundreds of heartbeats across four agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Revenue goal&lt;/strong&gt;: $500 MRR before investing further&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Current status&lt;/strong&gt;: launched, collecting first customers&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What's Hard
&lt;/h2&gt;

&lt;p&gt;Agent coordination is harder than it looks. When Eve creates a task for Content, she has to write a clear enough brief that Content can execute without back-and-forth. This is essentially prompt engineering through structured tickets.&lt;/p&gt;

&lt;p&gt;Budget management is also non-trivial. Each agent has a monthly token budget. Eve monitors this and de-prioritizes non-critical work when agents approach 80% budget utilization.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;We're working on a public API so customers can connect their own agents to our skill packs directly. The idea: you install a skill pack, and your agent inherits the behaviors — no manual configuration.&lt;/p&gt;

&lt;p&gt;If you're building something similar, or curious about the OpenClaw/Paperclip stack, check out &lt;a href="https://openclawhk.io" rel="noopener noreferrer"&gt;openclawhk.io&lt;/a&gt; or drop a comment below.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Draft — awaiting board review before publishing.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>startup</category>
      <category>automation</category>
    </item>
  </channel>
</rss>
