<?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: James Walstonn</title>
    <description>The latest articles on DEV Community by James Walstonn (@jameswalstonn).</description>
    <link>https://dev.to/jameswalstonn</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%2F3971466%2F03a42f69-cca0-4615-8082-e9c0b9542cc0.png</url>
      <title>DEV Community: James Walstonn</title>
      <link>https://dev.to/jameswalstonn</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jameswalstonn"/>
    <language>en</language>
    <item>
      <title>I built a free macOS app to automate cross-border e-commerce sourcing (1688.com eBay/Etsy/Amazon)</title>
      <dc:creator>James Walstonn</dc:creator>
      <pubDate>Sat, 06 Jun 2026 15:38:43 +0000</pubDate>
      <link>https://dev.to/jameswalstonn/i-built-a-free-macos-app-to-automate-cross-border-e-commerce-sourcing-1688com-ebayetsyamazon-271p</link>
      <guid>https://dev.to/jameswalstonn/i-built-a-free-macos-app-to-automate-cross-border-e-commerce-sourcing-1688com-ebayetsyamazon-271p</guid>
      <description>&lt;p&gt;Cross-border e-commerce tools are expensive and built for Western markets. &lt;strong&gt;Helium 10 costs $700+/month. SellerSprite is $300–1000/month.&lt;/strong&gt; None of them integrate with &lt;a href="https://1688.com" rel="noopener noreferrer"&gt;1688.com&lt;/a&gt; — China's massive B2B wholesale platform where most Chinese cross-border sellers actually source their products.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;AutoStore&lt;/strong&gt; — a free macOS app that automates the entire sourcing-to-listing pipeline.&lt;/p&gt;

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

&lt;p&gt;The pipeline runs in five stages:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Discover&lt;/strong&gt; — searches 1688.com across 450+ blue-ocean product categories, filtering out saturated markets&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Brand filter&lt;/strong&gt; — checks every product title, description, specs, and seller name against a 548-brand blacklist. Uses letter-continuation regex (&lt;code&gt;Nike&lt;/code&gt; blocks &lt;code&gt;NikeAir&lt;/code&gt;, &lt;code&gt;iNike&lt;/code&gt;, etc.) to catch brand violations before they become listing violations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Image OCR&lt;/strong&gt; — scans product images for embedded Chinese text, watermarks, and brand logos that the text filter might miss&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Translation&lt;/strong&gt; — translates 1688 Chinese listings to English using a &lt;strong&gt;built-in free LLM&lt;/strong&gt; (no API key, no cost per translation)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;List&lt;/strong&gt; — pushes listings to eBay, Etsy, AliExpress, and Amazon via a Chrome extension that drives your already-logged-in browser session&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  The Chrome extension approach
&lt;/h2&gt;

&lt;p&gt;Most automation tools use headless browsers or platform APIs, which get flagged by anti-bot systems. AutoStore takes a different approach: the Chrome extension drives your &lt;strong&gt;real, already-logged-in Chrome session&lt;/strong&gt; — the same one you use manually. From the platform's perspective, it's indistinguishable from a human clicking.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;No bot detection issues&lt;/li&gt;
&lt;li&gt;No separate login management&lt;/li&gt;
&lt;li&gt;Works with seller accounts that have MFA&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;macOS app&lt;/strong&gt;: SwiftUI + SwiftData&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chrome extension&lt;/strong&gt;: vanilla JS, communicates with the app via native messaging&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Browser automation&lt;/strong&gt;: Playwright (for 1688 scraping on a China-network machine)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Local LLM&lt;/strong&gt;: bundled llama.cpp with a 3B parameter model — runs entirely on-device&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database&lt;/strong&gt;: MySQL (local) + macOS Keychain for credentials&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The two-machine architecture
&lt;/h2&gt;

&lt;p&gt;1688.com is best accessed from within China — foreign IPs get captchas and degraded content. So the scraping runs on a machine with a Chinese network connection, while the listing automation runs on the seller's local Mac.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why free?
&lt;/h2&gt;

&lt;p&gt;The goal is to build a user base of Chinese cross-border sellers first. The existing tools are all English-only, require VPNs to use, and charge monthly fees that eat into thin margins. A free tool that works natively removes all of those barriers.&lt;/p&gt;

&lt;p&gt;Future monetization will come from premium analytics, curated supplier data, and marketplace services — but only after proving real value.&lt;/p&gt;

&lt;h2&gt;
  
  
  Get it
&lt;/h2&gt;

&lt;p&gt;AutoStore is available at &lt;strong&gt;&lt;a href="https://spriterock.com" rel="noopener noreferrer"&gt;spriterock.com&lt;/a&gt;&lt;/strong&gt; — free download, no subscription, no commission.&lt;/p&gt;

&lt;p&gt;Happy to answer questions about the architecture, the brand safety system, or the 1688 scraping approach.&lt;/p&gt;

</description>
      <category>automation</category>
      <category>productivity</category>
      <category>showdev</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
