惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
I
InfoQ
博客园_首页
G
Google Developers Blog
爱范儿
爱范儿
Last Week in AI
Last Week in AI
量子位
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
月光博客
月光博客
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I'm a Solo Founder Building an AI SEO Tool for E-commerce...
Shourya · 2026-06-15 · via DEV Community

Shourya

I'm not a developer by background. I'm a solo founder building Vendozo — an AI-powered SaaS that generates SEO-optimized content for e-commerce sellers — and I'm doing it with n8n, Supabase, and Lovable while working a separate job from 3pm to 9pm every day.
This is a behind-the-scenes look at what I'm building, why, and the technical choices I made as a non-dev founder figuring it out as I go.

The Problem
If you've ever sold products on Etsy or WooCommerce, you know the SEO grind. Writing optimized titles, tags, and descriptions for every product is tedious, time-consuming, and — if you're not an SEO person — pretty confusing.
Most sellers either ignore it entirely or copy-paste from competitors. Neither works. The result? Great products that nobody finds.
Vendozo solves this. You give it a product, it gives you back:

  1. A keyword-rich title
  2. A full set of tags
  3. An SEO-optimized description All tuned to how search actually works on each platform.

The Stack
I'm a solo founder, not an engineer. So the stack had to be one I could actually move fast with.
n8n — the backbone of everything. All my business logic lives in n8n workflows: OAuth flows, product syncs, AI generation, pushing SEO data back to stores, and dashboard management. I have five separate workflows for the WooCommerce integration alone. n8n lets me build real backend automation visually, which means I spend time on logic, not boilerplate.
Supabase — my database and auth layer. I'm running two Supabase projects (different regions for latency reasons). It handles user data, store connections, generated SEO content, billing status — everything. The Postgres + REST combo is honestly perfect for this use case.
Lovable — my frontend. It's a React-based AI UI builder. I describe what I want, it generates the component. Not perfect, but it's how I shipped a functional dashboard without writing a line of React myself.
Claude (Anthropic) — the AI doing the actual SEO generation inside the n8n workflows. I use it for content generation via API calls within my automation chains.

What I've Built So Far
Etsy Integration
The first version focused on Etsy. A seller connects their store, selects a listing, and Vendozo generates a new title, tags, and description optimized for Etsy search. The workflow pulls listing data, runs it through Claude with a custom SEO prompt, and returns structured output.
Debugging this was a journey — binary deserialization issues, field name mismatches in n8n, expression syntax edge cases. The kind of stuff that takes a week when you're learning as you go.

WooCommerce Integration (Just Completed)
This was a five-phase build:

  1. OAuth Connection — Secure WooCommerce store linking via REST API credentials
  2. Product Sync — Pulling product catalog into Supabase
  3. AI SEO Generation — Running Claude on each product with WooCommerce-specific SEO rules
  4. SEO Push — Writing optimized content back to the WooCommerce store via API
  5. Dashboard Management — User-facing controls for managing connected stores and generated content Five n8n workflows. Each one handles one phase. The separation keeps things debuggable — when something breaks, I know exactly where to look.

The Honest Part
I haven't launched yet. Zero paying customers. Pre-orders are live at $9/month for founding members, but I'm still in the testing and debugging phase of the WooCommerce backend.
My hard deadline is July 27 — I'm applying to YC's Summer batch, and I need traction before then. That's the thing driving every decision right now.
I'm also exploring a channel that most SaaS founders ignore: WooCommerce/WordPress freelance developers. These are people who set up stores for small business clients and are always looking for tools to add value without adding work. Instead of targeting individual sellers at scale (which requires ads or massive content), I'm trying to build relationships with developers who can refer Vendozo to their clients directly.

What's Next

  1. Finish testing the WooCommerce backend
  2. Onboard first free beta users (targeting WP devs for feedback)
  3. Get first paying customer before July 27
  4. YC application

Why I'm Writing This
I'm building in public. Not because it's trendy, but because documenting the process keeps me honest and creates a trail that might actually help someone else who's in a similar position — technical enough to build, not so technical that any of this comes naturally.
If you're building something similar, or you work with WooCommerce stores and want to try Vendozo when it's ready for beta, drop a comment. I'm here.