<?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.us-east-2.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>An AI VTuber that pays you to spread her URLs — the design of Kurage URL2Earn</title>
      <dc:creator>BittensorMan</dc:creator>
      <pubDate>Mon, 27 Jul 2026 02:40:45 +0000</pubDate>
      <link>https://dev.to/xb_bittensor/an-ai-vtuber-that-pays-you-to-spread-her-urls-the-design-of-kurage-url2earn-3d0j</link>
      <guid>https://dev.to/xb_bittensor/an-ai-vtuber-that-pays-you-to-spread-her-urls-the-design-of-kurage-url2earn-3d0j</guid>
      <description>&lt;p&gt;Kurage is a jellyfish AI VTuber that ships real products: an AI crypto/FX trading system, a video generation pipeline, a URL-to-blog publisher. Her newest system flips the marketing budget model: &lt;strong&gt;instead of paying an ad network, she pays the people who spread her URLs — in tokens.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This post explains how Kurage URL2Earn works, the anti-abuse ledger design, and the tokenomics thinking behind "a token you give away, not sell."&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;You introduce any Kurage-series URL (e.g. &lt;code&gt;kfreqai.exbridge.jp&lt;/code&gt;) in a post on X or your blog. One honest line of impressions is fine. Since the post is rewarded, you add &lt;strong&gt;#PR&lt;/strong&gt; (required by Japan's stealth-marketing regulations).&lt;/li&gt;
&lt;li&gt;You paste your post's URL on the claim page and connect a wallet — &lt;strong&gt;address only, no signing, no trade delegation, no deposit&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Kurage-san actually fetches your page, verifies that the body contains a Kurage URL, and delivers &lt;strong&gt;10,000 URLAI&lt;/strong&gt; to your Base wallet.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Limits: one claim per person (X login), each post URL usable once, first 1,000 people per domain group. Live status is shown on the page.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;English overview: &lt;a href="https://kurl2earn.exbridge.jp/" rel="noopener noreferrer"&gt;https://kurl2earn.exbridge.jp/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Claim page: &lt;a href="https://kurl2earn.exbridge.jp/kurl2earn.php?lang=en" rel="noopener noreferrer"&gt;https://kurl2earn.exbridge.jp/kurl2earn.php?lang=en&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The design, honestly
&lt;/h2&gt;

&lt;p&gt;The stack is deliberately boring: a PHP page on shared hosting relays to a small FastAPI backend, and a &lt;strong&gt;sqlite ledger is the single source of truth&lt;/strong&gt;. Everything that matters is enforced there, atomically:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;UNIQUE(url)&lt;/code&gt; — a post URL can never pay out twice, even under race conditions&lt;/li&gt;
&lt;li&gt;one claim per X account&lt;/li&gt;
&lt;li&gt;a quota per &lt;strong&gt;domain group&lt;/strong&gt; (sponsors can add their own domain, which adds its own 1,000-person quota)&lt;/li&gt;
&lt;li&gt;payouts go through the Bankr API with an idempotency key per claim — &lt;strong&gt;no raw private keys anywhere near the web server&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;real transfers only happen when an explicit &lt;code&gt;LIVE=1&lt;/code&gt; flag is set; the default is DRY-RUN&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;URL verification is a plain fetch with size/timeout/scheme limits — no headless browser, no scraping framework. If your page's body contains a Kurage domain, you qualify. Matched domains are recorded per claim, so per-sponsor reporting is a SQL query, not a spreadsheet project.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why give tokens away?
&lt;/h2&gt;

&lt;p&gt;URLAI is a Base token (total supply 100B) whose job is &lt;strong&gt;not&lt;/strong&gt; to be sold by the project — it is distributed to the people who spread the ecosystem: URL2Earn claimants and ambassadors of Kurage's AI trading products. The thesis:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Attention earned by real people posting real links compounds better than ad spend — if the reward ledger makes farming unprofitable.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Sponsorship works the same direction: a company can pay a flat fee (¥100,000) to add its own site to the eligible list, so posts introducing &lt;em&gt;their&lt;/em&gt; site also earn URLAI. The fee is used by the operator to &lt;strong&gt;buy URLAI back from the market&lt;/strong&gt; to replenish the distribution pool. Buying the token themselves is entirely optional and always on the open market — the operator never sells or brokers tokens.&lt;/p&gt;

&lt;p&gt;There is also the reverse pattern: &lt;a href="https://url2ai.exbridge.jp/url2pub.php?lang=en" rel="noopener noreferrer"&gt;URL2AI Publisher&lt;/a&gt; — give Kurage-san a URL and she reads it, writes a commentary, and publishes it to 5 media (Bluesky, Hatena Bookmark, Hatena Blog, AIxSNS, Kurage Blog). Crowd spreads you, or Kurage spreads you. Both are live.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd tell anyone building a spread-to-earn system
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Put every rule in one ledger.&lt;/strong&gt; Per-person, per-URL, per-quota — one sqlite file with the right UNIQUE constraints beats distributed cleverness.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Default to DRY-RUN.&lt;/strong&gt; We ran the whole flow with payouts disabled until the ledger behaved under duplicate/racing claims.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Make disclosure a rule, not a hope.&lt;/strong&gt; #PR is required and posts without it can be disqualified. This is both law (in Japan) and long-term trust.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Record &lt;em&gt;why&lt;/em&gt; each payout happened.&lt;/strong&gt; We store which domain matched each claim — that one column is the difference between "trust me" and an auditable sponsor report.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;URLAI has no guaranteed monetary value and claiming is not investment advice — the interesting part here is the mechanism, not the price. If you're curious, the first 1,000 slots are counting up on the page.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Built and operated by &lt;a href="https://exbridge.jp/" rel="noopener noreferrer"&gt;EXBRIDGE Inc.&lt;/a&gt; — the jellyfish does the talking.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>web3</category>
      <category>ai</category>
      <category>crypto</category>
      <category>showdev</category>
    </item>
    <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>
