Order, Inventory & Warehouse Intelligence
From one shelf to ten distribution centres — no re-platform, no module fees, no consultant engagement.
ClearOPS is the operations layer of QuantumOS X3. It handles everything between a customer clicking "buy" and a parcel reaching their door: routing, reservation, picking, packing, shipping, and returns. Built on an append-only event ledger that makes every operational decision auditable, reversible, and provable at any point in history.
Smart Order Routing
Route every order to the optimal fulfilment node in under 200 ms — balancing cost, SLA, carbon, and capacity in real time.
When an order is placed, ClearOPS fires a routing evaluation against every eligible fulfilment node simultaneously. Each node is scored on four weighted axes: shipping cost (fetched live from carrier APIs at the moment of order, not cached rate tables), SLA feasibility (can this node ship by the required carrier cutoff?), carbon footprint (distance × weight × carrier emission factor), and available pick capacity (current queue depth at the node). The winning node is assigned in <200 ms. Every routing decision — including the scores for every rejected node — is written as an immutable event on the order timeline, so you can audit exactly why an order went to Warehouse C rather than Warehouse A six months later. Split-order routing handles scenarios where no single node can fulfil the complete order: ClearOPS partitions line items across nodes, issues sub-shipments with individual tracking, and presents the customer a unified view. Manual override is always available for staff; overrides are recorded on the timeline with the operator ID and a mandatory reason field.
- Live carrier rate fetch at order time — UPS, FedEx, DHL, USPS, Royal Mail, AusPost
- Four-axis weighted scoring: cost / SLA / carbon / capacity
- Split-order routing with unified customer tracking view
- Full routing audit trail on every order timeline
- Manual override with mandatory reason capture
- <200 ms median routing decision, p99 under 400 ms
Multi-Location Inventory Reservations
Append-only optimistic reservations eliminate row locks and keep inventory accurate at 100k RPS — zero oversells, sub-second reconciliation.
Classical inventory systems decrement a stock counter inside a transaction. Under high concurrency — a flash sale, a viral moment, a coordinated drop — those row locks serialize every write and collapse throughput. ClearOPS uses an append-only reservation ledger instead. When a cart is created, a reservation event is appended; when the order is confirmed, a commitment event is appended; when goods are shipped, a fulfil event is appended; when a return is accepted, a restock event is appended. The current available quantity at any location is computed as: on_hand − sum(active reservations) − sum(commitments). This computation runs from an in-memory projection that is updated on every write, never queried from the ledger itself. Reservation events carry a short TTL (configurable, default 30 minutes for guest carts, 4 hours for authenticated carts). An async reconciliation job runs every 30 seconds, expiring stale reservations and unlocking stock. If the reconciler detects that confirmed commitments exceed on-hand (possible only if a goods-receipt shortfall was entered post-commitment), the affected order is moved to an exception queue for staff review — it never silently oversells. Flash-sale mode extends this: a pre-sale reservation gate lets merchandisers pre-commit inventory to a waitlist before the sale window opens, guaranteeing that only customers who received an allocation token can convert.
- Append-only ledger — no row locks, no serialised writes
- In-memory projection for sub-millisecond available-qty reads
- Configurable reservation TTL (guest vs authenticated carts)
- 30-second async reconciliation, exceptions surfaced to staff
- Flash-sale gate with pre-allocation tokens
- Zero oversells demonstrated at 100k RPS in load testing
Wave + Batch Picking
Group orders into carrier-cutoff waves, optimise travel routes by slot-location map, and let one picker handle multiple orders simultaneously.
ClearOPS WMS wave planning runs on a configurable schedule — typically one wave per carrier cutoff window. Orders are grouped into waves by carrier cutoff time, ship-from zone, and order priority (SLA urgency, loyalty tier, hazmat flag). Within a wave, the system constructs cluster pick lists: instead of one picker walking one order, a single picker carries a multi-order tote and processes all SKUs in a zone before moving. The slot-location map (entered once by warehouse managers, maintained as a structured JSON floorplan) drives travel-distance optimisation: the system calculates the shortest path through the physical aisles that covers all required locations for the cluster, applying a nearest-neighbour heuristic by default with an optional exact-solve mode for small clusters. Pickers work on Android or iOS with the ClearOPS mobile PWA. Each pick is confirmed by scanning the item barcode (GS1 GTIN or internal SKU barcode) against the expected SKU — mismatches halt the pick and surface a resolution workflow. Supervisors see a live wave dashboard: overall progress, picker-by-picker completion rate, exception count, and an estimated on-time percentage for the current cutoff.
- Wave grouping by carrier cutoff, zone, and order priority
- Cluster picking — multiple orders per picker per zone pass
- Slot-location map drives shortest-path travel optimisation
- Scan-to-confirm on Android and iOS (PWA, no MDM required)
- Supervisor live dashboard: progress, exceptions, cutoff risk
- Nearest-neighbour path heuristic, optional exact-solve mode
Returns Network
Accept returns at any store, grade on the spot, trigger refunds immediately — no central DC bottleneck, no days-long customer waits.
The returns journey starts with a QR-authenticated return authorisation. The customer generates a return from their account (or staff creates one from the order timeline); the platform issues a signed QR code valid for the configured return window (default 30 days). Any store equipped with ClearOPS can scan that QR code and accept the return — network-wide, cross-location. Once the QR is scanned, the in-store staff member enters a guided grading workflow on their POS terminal: they inspect each returned item and grade it as Sellable (return directly to shelf), Refurbishable (route to secondary handling), Liquidatable (route to clearance channel), or Discard (write-off, photos attached for the claims record). The refund is triggered at grading completion — not when the item arrives at a central DC. This collapses the customer refund wait from the typical 7–14 days to minutes. Configurable restock rules determine where graded items go: Sellable items can be auto-restocked at the accepting store's inventory, or routed back to a preferred fulfilment node. All return events are appended to the order event ledger, preserving the full lifecycle on one timeline.
- QR return auth — valid cross-network, any store can accept
- Guided grading: Sellable / Refurbishable / Liquidatable / Discard
- Refund triggered at grading, not at central DC receipt
- Configurable restock rules per grade and per category
- Full return event appended to the original order ledger
- Photo capture at grading for insurance and supplier claims
Lot, Serial & Expiry Tracking
Full chain-of-custody from goods receipt to customer doorstep — lot numbers, serial numbers, and expiry dates enforced at every scan.
ClearOPS captures lot and serial attributes at goods receipt: every GRN line has a mandatory lot number field (or serial number range for serialised SKUs) and an optional expiry date. These attributes flow through every downstream document — putaway, transfer order, pick list, pack slip, and despatch note. At pack-out, the packer scans the GS1 GTIN barcode from the item packaging; ClearOPS resolves the lot from the active reservation and writes the lot/serial into the shipment manifest. This means every shipment has a complete chain of custody from supplier GRN to customer delivery. FEFO (First Expired First Out) is enforced by the wave planner: when multiple lots are available for a SKU, the wave is built such that the soonest-expiring lot is always picked first. Configurable expiry alerts notify category managers when stock is approaching the configured threshold (e.g., 90 days before expiry, 30 days before expiry) so they can run promotional markdowns or initiate supplier credit claims before the stock expires unsold. The audit log for any lot or serial number — every movement, every scan, every document reference — is queryable by lot number and exportable as a CSV for regulatory recall response or supplier audit.
- Lot/serial captured at goods receipt, propagated to all documents
- FEFO enforcement in wave planning — oldest expiry picked first
- GS1 GTIN scan at pack-out writes lot/serial to shipment manifest
- Configurable expiry alerts at category level
- Full chain-of-custody audit log queryable by lot or serial number
- CSV export for recall response within minutes, not days
Carrier Direct Integrations
Direct API connections to six global carriers using your own merchant credentials — no rate markup, real-time rate shopping, unified tracking.
ClearOPS connects directly to UPS, FedEx, DHL Express, USPS, Royal Mail, and Australia Post using the merchant's own carrier account credentials — not a third-party aggregator that marks up rates. This matters: merchants on volume agreements with carriers pay their negotiated rate, not an aggregator's floor. At shipment time, ClearOPS fetches live rates from every eligible carrier for the shipment's weight, dimensions, origin, and destination. The routing engine selects the cheapest carrier that can meet the required SLA. Label generation, tracking number assignment, and manifest submission all happen in the same API call sequence. Tracking events from all carriers are normalised to a unified event schema (carrier-agnostic status codes: ordered, picked_up, in_transit, out_for_delivery, delivered, exception) so customers and ops staff see consistent language regardless of carrier. Tracking webhooks are delivered to merchants with a 99.99% reliability SLA, using a signed-payload retry queue with exponential backoff. When a carrier API is degraded, ClearOPS falls back to the last-known rate and flags the affected shipments for manual rate confirmation — it never silently generates incorrect charges.
- UPS, FedEx, DHL Express, USPS, Royal Mail, AusPost — direct APIs
- Merchant-own credentials — no aggregator rate markup
- Real-time rate shop at shipment time, not cached tables
- Unified tracking event schema across all carriers
- 99.99% webhook delivery with signed payloads and retry queue
- Graceful degradation with carrier API downtime alerts
The event ledger
Every state change in ClearOPS — order, inventory, shipment, return — is written as an immutable event. Nothing is deleted. Nothing is overwritten. The current state of any entity is always a projection over its history.
Events are appended, never mutated or deleted. This is not soft-delete: the storage engine does not accept UPDATE or DELETE on event rows. Current state is computed from the event stream.
Replay the event stream to any timestamp and see the exact state of any order, any lot, any inventory position as it stood at that moment. Useful for dispute resolution, post-incident analysis, and compliance audits.
The complete chain of custody — from supplier GRN to customer doorstep — is always reconstructible. Exportable as structured JSON or CSV for recall response, financial audit, or regulatory submission.
- T+0 msorder.createdPayment intent attached, line items snapshotted
- T+12 msinventory.reservation_createdOptimistic reservation appended per line item, TTL 4h for authenticated cart
- T+180 msorder.routing_decisionNode scored, winner selected, all rejected nodes recorded with scores
- T+210 msorder.committedReservation converted to commitment, routing node locked
- T+4h 12mwms.wave_assignedOrder included in wave #4821, cluster pick list generated
- T+5h 03mwms.pick_confirmedEach line item scanned by picker P-042, lot numbers recorded
- T+5h 31mwms.pack_confirmedGS1 GTIN scanned at pack-out, serial confirmed against shipment
- T+5h 34mshipment.label_generatedFedEx label generated at merchant rate, tracking number written
- T+5h 40mshipment.manifestedCarrier manifest submitted, carrier confirmed acceptance
- T+2d 11hshipment.deliveredDelivery event received via carrier webhook, customer notified
Verified operational benchmarks
Numbers from load tests and 90-day trailing production metrics on live tenants.
ClearOPS vs NetSuite WMS vs SAP EWM vs Shopify vs spreadsheets
Architecture-level differences, not feature-checkbox marketing. Each capability reflects the underlying design of the system.
| Capability | X3 ClearOPS | NetSuite WMS | SAP EWM | Shopify Built-in | Spreadsheets |
|---|---|---|---|---|---|
| Order routing decision latency | <200 ms live | Seconds (batch) | Seconds (batch) | No multi-node routing | Hours (spreadsheet) |
| Inventory reservation model | Append-only, lock-free | Row-lock FIFO | Row-lock FIFO | Counter decrement | Manual adjustment |
| Wave + cluster picking | Built-in, path-optimised | Add-on module | SAP EWM only (expensive) | Not available | Paper pick lists |
| Returns grading workflow | Any-store, instant refund | Central DC only | Central DC only | Basic, no grading | Untracked |
| Lot / serial / expiry tracking | Native, FEFO enforced | Native, costly config | Native (ERP-grade) | Third-party app required | Error-prone |
| Carrier direct integration | 6 carriers, own creds | Aggregator via partner | SAP TM module | Shopify Shipping (markup) | Manual booking |
| Event ledger / audit trail | Append-only, time-travel | Partial, per module | Change documents | Order timeline only | None |
| Offline fulfilment | 72 h, local-first sync | Online required | Online required | Online required | Paper, no sync |
Who runs ClearOPS
ClearOPS handles the full complexity range — from a single-store boutique to a 3PL running 30 merchant accounts.
Route online orders to the store nearest the customer. Accept returns at any location without a central-DC round-trip. Live cross-location inventory gives staff accurate availability for assisted selling.
Wave planning maximises throughput on high-volume days. Real-time carrier rate shopping keeps fulfilment cost at the minimum within your SLA promise. The event ledger gives you the audit trail customers expect when they ask where their order is.
Run multiple merchant tenants on a single warehouse floor. Lot/serial tracking meets pharma and electronics compliance requirements. Carrier direct integrations mean each merchant's own rate agreement applies to their shipments.
Multi-channel orders from your own storefront, Amazon, Myntra, and Meesho funnel into a single routing queue. ClearOPS normalises order schemas so your warehouse floor never needs to know the origin channel.
FEFO enforcement means the shortest-expiry lot is always picked first. Expiry alerts let category managers run promotions before waste occurs. Lot-level chain of custody supports food safety recall response in minutes.
Every unit gets a serial number at goods receipt. Pack-out scans confirm the correct serial ships to each customer. Returns match returned serials to original orders for warranty validation — no manual cross-reference.
Operations questions, answered
Yes. ClearOPS models locations as first-class objects from day one. Adding a new fulfilment node is a configuration action: enter the address, connect carrier accounts, define the slot-location map, and set the routing weight for that node. Your historical data and routing logic remain unchanged. There is no migration and no re-implementation required.
The append-only ledger means every cart reservation is an event, not a counter decrement. The in-memory projection runs continuously and serves available-qty reads in under a millisecond. Confirmed commitments are bounded by on-hand — if a GRN shortfall is entered post-commitment, affected orders move to an exception queue rather than silently fulfilling partial stock. In load tests simulating a 100,000 RPS flash sale event, zero oversells occurred.
No. The WMS mobile interface is a Progressive Web App that runs in the browser on any Android or iOS device. There is no MDM requirement, no app store deployment, and no version management beyond the standard browser update cycle. Staff scan barcodes using the device camera or a paired Bluetooth scanner.
ClearOPS connects directly to UPS, FedEx, DHL Express, USPS, Royal Mail, and Australia Post using the merchant's own carrier account credentials. We do not intermediate the rate — your volume agreement with the carrier is what you pay. We do not add a per-label fee or markup. Additional carrier integrations are roadmapped based on merchant geography.
The refund is triggered when a staff member completes the grading workflow at the accepting store — not when the item arrives at a central distribution centre, which is the bottleneck in most retail return processes. The grading step takes under two minutes with guided prompts. For payment methods that support instant refund (card, UPI, store credit), the customer sees the credit within minutes of drop-off.
FEFO stands for First Expired First Out. When building pick waves, ClearOPS sorts available lots for each SKU by expiry date and always assigns the soonest-expiring lot to the next pick. This is enforced at the wave-planning stage — the picker is directed to the specific lot location, not just the SKU location. If a picker scans a different lot, the scan-to-confirm step rejects the pick and redirects them.
Yes. ClearOPS exposes a documented REST and webhook API for all order, inventory, shipment, and returns events. Common ERP integrations (SAP, NetSuite, Tally, Dynamics) are accomplished via the event webhook stream: ClearOPS pushes signed event payloads; your ERP or iPaaS layer consumes them. We maintain certified connector packages for SAP and NetSuite on the enterprise tier.
Every action in ClearOPS — order created, inventory reserved, pick confirmed, shipment despatched, return graded, lot allocated — is written as an immutable event to an append-only ledger. Nothing is deleted or overwritten. This means you can reconstruct the exact state of any order or any inventory position at any point in history by replaying events to a given timestamp. For food safety recalls, serialised electronics warranties, or financial audit, the complete chain of custody is always available and exportable.
QuantumOS Dispatch
Weekly insights for commerce operators
100 competitive moats, real operator stories, platform updates. No fluff. Every Tuesday.
No spam. Unsubscribe any time. 60k+ readers.