SellerOS Lite is a self-serve micro-SaaS experiment for Russian marketplace sellers. The first version focuses on one clear pain: audit a product card and generate ready-to-use improvements for Ozon, Wildberries, and Yandex Market.
- Landing page for the product-card audit offer.
- Free product-card generator with limited output.
- Manual transfer checkout flow with order ID.
- Mailto-based order notification for Gmail handling.
- Pricing blocks for one-time audit packs.
- Download/delivery instructions for the first paid product.
- SEO pages for marketplace seller search demand.
- Buyer fills in the audit form.
- Buyer sees a generated order ID and transfer instructions.
- Buyer sends an order email via
mailto:. - ChatGPT monitors Gmail for
[AutoMoney Order]messages. - Owner confirms payment receipt.
- ChatGPT sends delivery email and labels the order as delivered.
npm install
npm run devOpen http://localhost:3000.
Copy .env.example to .env.local and fill in real values before deployment.
NEXT_PUBLIC_SUPPORT_EMAIL=
NEXT_PUBLIC_PAYMENT_RECIPIENT=
NEXT_PUBLIC_PAYMENT_BANK=
NEXT_PUBLIC_PAYMENT_PHONE=
NEXT_PUBLIC_PAYMENT_CARD=
NEXT_PUBLIC_PAYMENT_NOTE=
NEXT_PUBLIC_PRODUCT_PRICE=490The MVP works without a payment gateway. Later, manualTransfer can be replaced with Robokassa, YooKassa, CloudPayments, or T-Kassa.
The repository includes a GitHub Actions workflow that runs npm install and npm run build on pushes to master and pull requests targeting master.