MeritSKU is a high-performance e-commerce intelligence platform that solves the critical blind spot facing multi-channel merchants: hidden margin erosion. While traditional analytics track top-line GMV, MeritSKU computes the true CM2 contribution margin of every inventory unit across Shopify, WooCommerce, and Amazon SP-API.
Engineered with an unwavering 100% draft-only invariant, the platform protects client catalogs by ensuring no AI recommendation or automated repricing changes live storefront listings without human authorization.
Enterprise SaaS Platform
Production — Live
meritsku.com
Turborepo Monorepo
PostgreSQL 16 (RLS)
Google Cloud Run
Modern e-commerce brands often see rising revenues alongside vanishing bank balances. Standard dashboard metrics conceal insidious operational costs: overseas shipping surcharges, demurrage fees, import tariffs, 3PL storage penalties for slow-moving inventory, platform transaction take-rates, and return processing losses.
Furthermore, merchants feared automated tools that aggressively push listing changes or price updates directly into active marketplaces, risking compliance flags, search rank penalties, or unintended inventory dumps. The industry demanded an enterprise-grade system combining rigorous financial math with ironclad operational safeguards.
MeritSKU replaces flawed gross-margin guesswork with surgical per-unit economics:
Instead of sorting inventory purely by sales volume or basic markup, MeritSKU scores each SKU dynamically from 0 to 100 across six weighted operational vectors:
A cornerstone of Razor Consulting's architectural design: MeritSKU enforces an unbreakable invariant across all store connections:
INVARIANT: All SKU title revisions, description rewrites, price adjustments, and bundle suggestions must be saved exclusively as merchant drafts. Direct production mutation is denied by design.
This eliminates catastrophic pricing errors and ensures human brand governance over every AI-generated asset.
Monorepo Architecture
Turborepo (TypeScript 5.8 + Node 22)
Frontend Framework
Next.js 15 (App Router + Server Components)
Database & Isolation
PostgreSQL 16 with Row-Level Security (RLS)
Data Access Layer
Drizzle ORM (Type-Safe Schema & Migrations)
Cloud Infrastructure
Google Cloud Run + Cloud SQL (Private VPC)
AI Reasoning Engines
Multi-Engine LLM (Google Gemini & Claude)
E-Commerce Integrations
Shopify GraphQL, WooCommerce REST, Amazon SP-API
Test Suite & Rigor
2,209 Passing Automated Tests (Unit, RLS, Invariant)
Design System
Tailwind CSS + Radix UI Primitives
Security & Auth
Multi-Tenant RBAC + Session Security Middleware
In multi-tenant SaaS, tenant isolation cannot rely on developer discipline or application-level WHERE org_id = ? clauses alone. MeritSKU delegates isolation to the PostgreSQL kernel itself.
app.current_org_id per transaction-- PostgreSQL Kernel RLS Policy
ALTER TABLE inventory_skus ENABLE ROW LEVEL SECURITY;
CREATE POLICY tenant_isolation_policy ON inventory_skus
USING (org_id = current_setting('app.current_org_id')::uuid);