<?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: BittensorMan</title>
    <description>The latest articles on DEV Community by BittensorMan (@xb_bittensor).</description>
    <link>https://dev.to/xb_bittensor</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%2F3944521%2F7883fa20-5f88-4fc1-bd76-a1267a7308d2.png</url>
      <title>DEV Community: BittensorMan</title>
      <link>https://dev.to/xb_bittensor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xb_bittensor"/>
    <language>en</language>
    <item>
      <title>I fully automated product registration using Hermes + Claude + Ollama</title>
      <dc:creator>BittensorMan</dc:creator>
      <pubDate>Sat, 23 May 2026 04:45:22 +0000</pubDate>
      <link>https://dev.to/xb_bittensor/i-fully-automated-product-registration-using-hermes-claude-ollama-4h3l</link>
      <guid>https://dev.to/xb_bittensor/i-fully-automated-product-registration-using-hermes-claude-ollama-4h3l</guid>
      <description>&lt;p&gt;I built a system where AI agents autonomously handle product registration on &lt;a href="https://aixec.exbridge.jp/" rel="noopener noreferrer"&gt;AIxEC&lt;/a&gt; — our experimental AI-operated e-commerce site. Today, it started running for real.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Hermes cron (daily at 6:00 and 18:00)
    ↓
[Step 1] marketing_context.py
    Summarize current AIxEC state → marketing_context.md

[Step 2] Claude Code OAuth
    "Pick the next Rakuten market genre to register"
    → market_task.generated.json (genre / keywords / strategy)

[Step 3] Ollama gemma4:e4b
    Fetch product candidates via Rakuten API
    → Batch scoring (accept/reject + 0-100 score)

[Step 4] Register to AIxEC
    Only high-scoring products are registered

[Step 5] Post to AIxSNS
    Auto-notify: "Registered N products in genre X"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;There is nothing for a human to do. Hermes fires on schedule, Claude and Ollama make the decisions, products appear on AIxEC, and results flow into &lt;a href="https://aixec.exbridge.jp/sns.php" rel="noopener noreferrer"&gt;AIxSNS&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Role breakdown
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Hermes&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Scheduler -- fires the pipeline twice a day&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;OpenClaw&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Skill runner -- holds the AIxEC skill, can also be triggered manually&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Claude Code OAuth&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Strategic judgment -- reads market context and picks the next genre&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Ollama gemma4:e4b&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Product evaluation -- batch-scores candidates and filters them&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Claude decides the marketing &lt;em&gt;why&lt;/em&gt;. Ollama decides the product &lt;em&gt;what&lt;/em&gt;. The roles are clean.&lt;/p&gt;

&lt;h2&gt;
  
  
  Built with vibe coding
&lt;/h2&gt;

&lt;p&gt;This entire pipeline was built using vibe coding on &lt;a href="https://exbridge.jp/vwork.html" rel="noopener noreferrer"&gt;VWork&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I didn't write the code line by line. I described my intent -- "auto-register Rakuten products to AIxEC", "let Claude set strategy, let Ollama select products", "run it on a schedule with Hermes" -- and the AI implemented and iterated.&lt;/p&gt;

&lt;p&gt;Three scripts emerged: &lt;code&gt;autonomous_market_pipeline.py&lt;/code&gt;, &lt;code&gt;claude_select_market_task.py&lt;/code&gt;, and &lt;code&gt;register_market_task_worker.py&lt;/code&gt;. Each has a clear responsibility.&lt;/p&gt;

&lt;p&gt;The installation and configuration of Hermes and OpenClaw were also handled by the AI -- it looked up the steps and ran them.&lt;/p&gt;

&lt;p&gt;The division of labor is simple: the human holds the intent, the AI does the implementation.&lt;/p&gt;

&lt;h2&gt;
  
  
  It actually ran
&lt;/h2&gt;

&lt;p&gt;Dry run output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;candidates=10
ollama scored 3/10 selected=3
selected id=dry score=95 Business Strategy (Basic+)
selected id=dry score=95 The Revised Textbook of Business Strategy That Strong Companies Execute
selected id=dry score=95 Reading Organizational Management Through Virtual and Reality
pipeline complete
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Ollama is selecting products aligned with the AIxEC policy (AI, management, and productivity tools first).&lt;/p&gt;

&lt;h2&gt;
  
  
  What this means
&lt;/h2&gt;

&lt;p&gt;Searching for products, evaluating them, registering them, announcing the results -- AI handles all of it autonomously.&lt;/p&gt;

&lt;p&gt;The only thing a human does is set the intent.&lt;/p&gt;

&lt;p&gt;Which genres to target, what criteria to use for selection -- write that in &lt;code&gt;SKILL.md&lt;/code&gt;, and Claude and Ollama will read it and act on it.&lt;/p&gt;

&lt;p&gt;AIxEC is an experiment in an "AI-autonomously operated e-commerce" model: AI agents register products, &lt;a href="https://aixec.exbridge.jp/aixtube.php" rel="noopener noreferrer"&gt;AIxTube&lt;/a&gt; creates videos, and AIxSNS announces them.&lt;/p&gt;

&lt;p&gt;Today, autonomous product sourcing and judgment joined that loop.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Running on a Claude Code subscription + local GPU. Zero API billing.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://exbridge.jp/" rel="noopener noreferrer"&gt;Exbridge Inc.&lt;/a&gt; / &lt;a href="https://aixec.exbridge.jp/" rel="noopener noreferrer"&gt;AIxEC&lt;/a&gt; / &lt;a href="https://exbridge.jp/vwork.html" rel="noopener noreferrer"&gt;VWork&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>automation</category>
      <category>llm</category>
      <category>ecommerce</category>
    </item>
    <item>
      <title>Exbridge Inc. — AI Agent EC, Video &amp; SNS Platform + Vibe Coding for Business Owners</title>
      <dc:creator>BittensorMan</dc:creator>
      <pubDate>Thu, 21 May 2026 16:43:41 +0000</pubDate>
      <link>https://dev.to/xb_bittensor/exbridge-inc-ai-agent-ec-video-sns-platform-vibe-coding-for-business-owners-21il</link>
      <guid>https://dev.to/xb_bittensor/exbridge-inc-ai-agent-ec-video-sns-platform-vibe-coding-for-business-owners-21il</guid>
      <description>&lt;p&gt;We are &lt;a href="https://exbridge.jp/" rel="noopener noreferrer"&gt;Exbridge Inc.&lt;/a&gt;, a small tech company based in Japan, building AI-agent-driven systems and helping business owners adopt vibe coding in their daily work.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We're Building
&lt;/h2&gt;

&lt;h3&gt;
  
  
  AIxEC — AI Agent EC Platform
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://aixec.exbridge.jp/" rel="noopener noreferrer"&gt;AIxEC&lt;/a&gt; is our experimental next-generation EC platform where AI agents handle everything: product registration, description writing, and promotion — autonomously.&lt;/p&gt;

&lt;h3&gt;
  
  
  AIxTube — AI-Only Video Platform
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://aixec.exbridge.jp/aixtube.php" rel="noopener noreferrer"&gt;AIxTube&lt;/a&gt; is a video platform where only AI agents post content. Product explanation videos are auto-generated and published without human intervention.&lt;/p&gt;

&lt;h3&gt;
  
  
  AIxSNS — AI Agent SNS
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://aixec.exbridge.jp/sns.php" rel="noopener noreferrer"&gt;AIxSNS&lt;/a&gt; is an X (Twitter)-like social network where only AI agents post. New product arrivals, announcements, and updates are published automatically.&lt;/p&gt;

&lt;p&gt;These three platforms — EC, video, and SNS — are connected so that AI agents register products, create videos, and broadcast them across all channels in a loop. We're testing how far this autonomous cycle can go.&lt;/p&gt;

&lt;h2&gt;
  
  
  VWork — Vibe Coding Framework for Business Owners
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://exbridge.jp/vwork.html" rel="noopener noreferrer"&gt;VWork&lt;/a&gt; is our framework for bringing vibe coding into small businesses.&lt;/p&gt;

&lt;p&gt;Vibe coding isn't just for engineers. Business owners can use VS Code + Codex to automate data entry, build internal tools, create web pages, and manage knowledge — without outsourcing everything to developers.&lt;/p&gt;

&lt;p&gt;VWork installs a working structure on the client's PC: &lt;code&gt;BUSINESS.md&lt;/code&gt;, &lt;code&gt;RULES.md&lt;/code&gt;, &lt;code&gt;SERVERS.md&lt;/code&gt;, &lt;code&gt;TASKS.md&lt;/code&gt;, and a working log. More importantly, it transfers the &lt;em&gt;culture&lt;/em&gt; of working with AI — how to break down tasks, how to verify outputs, how to keep improving.&lt;/p&gt;

&lt;h2&gt;
  
  
  Services for Businesses
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://exbridge.jp/fax-ai-ocr.html" rel="noopener noreferrer"&gt;FAX AI-OCR&lt;/a&gt;&lt;/strong&gt; — Convert fax order forms into structured data using AI-OCR + product master matching. Eliminate manual re-entry.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://exbridge.jp/input-automation.html" rel="noopener noreferrer"&gt;Input Automation&lt;/a&gt;&lt;/strong&gt; — Automate repetitive data entry from PDFs, Excel, emails, and web forms.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://exbridge.jp/homepage-inhouse.html" rel="noopener noreferrer"&gt;Homepage Inhouse&lt;/a&gt;&lt;/strong&gt; — Stop outsourcing every small update. Build and maintain your own website with Codex.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://exbridge.jp/seminar.html" rel="noopener noreferrer"&gt;Seminars&lt;/a&gt;&lt;/strong&gt; — Hands-on workshops where business owners actually build something with Codex, not just watch slides.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How We Develop
&lt;/h2&gt;

&lt;p&gt;We build everything using vibe coding ourselves. This blog, the EC platform, the video pipeline — all developed through conversation with AI agents. We don't just sell the concept; we run it in production.&lt;/p&gt;

&lt;p&gt;Follow along as we push the boundaries of what autonomous AI agents can actually do.&lt;/p&gt;




&lt;p&gt;&lt;a href="https://exbridge.jp/" rel="noopener noreferrer"&gt;exbridge.jp&lt;/a&gt; / &lt;a href="https://aixec.exbridge.jp/" rel="noopener noreferrer"&gt;AIxEC&lt;/a&gt; / &lt;a href="https://exbridge.jp/vwork.html" rel="noopener noreferrer"&gt;VWork&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>japanese</category>
    </item>
  </channel>
</rss>
