AI inventory management
AI Inventory Management for Vancouver Shops and Grocers
Ask a grocer in East Vancouver what inventory really costs them and you rarely get a number. You get a story. The case of berries that went soft over a slow weekend. The regular who wanted the good olive oil on Saturday and got told to try again Tuesday. Both are the same failure: the count in the system stopped matching the count on the shelf, and nobody noticed until it cost money.
That gap is what AI inventory management is supposed to close. Not a chat box. A background process that watches sales and stock levels and tells a human what to reorder before the shelf empties or the yogurt dates out.
Here's what holds up as of August 2026, including the parts that argue against spending anything.
Use the alerts you already paid for first
Before anyone forecasts anything, turn on what your point of sale already ships with.
Square exposes a threshold per item variation. In its Catalog reference, `inventory_alert_type` set to `LOW_QUANTITY` makes a variation display an alert in the merchant dashboard once quantity falls to or below `inventory_alert_threshold` (Square developer docs). Worth knowing before you build on it: both fields are flagged deprecated in that reference because they were never location aware, with per location behaviour handled through `ItemVariationLocationOverrides`. If you run a New Westminster store and a Burnaby store off one catalogue, a single global threshold will lie to you.
Shopify splits stock into states rather than one number. Its inventory docs define `available` as stock a merchant can sell, `committed` as units on a placed but unfulfilled order, `incoming` as stock on its way to the location, and `on_hand` as what's physically there (Shopify developer docs). The same page notes that changes to `committed`, `reserved`, `damaged`, `safety_stock` and `quality_control` don't trigger webhooks. So an event driven reorder alert that only listens for webhooks will quietly miss damage and safety stock movement. You have to poll for those.
Neither of these is AI. Both are included in what you already pay for, and a shop that hasn't switched them on doesn't need a model yet.
Where a model actually earns its keep
Fixed thresholds fire the same way in December as in a dead February week. Forecasting is the part worth paying for: predicting next week's demand per item per location, then setting the reorder point from that prediction plus supplier lead time.
The research is more sober than vendor decks suggest. In a study revised in March 2026, Hobor, Brcic, Polutnik and Kapetanovic tested statistical baselines against tree ensembles (XGBoost, LightGBM) and deep learning architectures (N-BEATS, N-HiTS, Temporal Fusion Transformer) on retail data with intermittent demand, heavy missingness and frequent product turnover. Localized tree based methods won, with XGBoost recording the lowest RMSE at 4.833, and the neural models stayed behind the ensembles even after imputation helped them. Their advice is to prioritise alignment with problem characteristics over architectural sophistication (arXiv).
Sources disagree here, which is useful to know. Damato, Rubattu, Azzimonti and Corani, working across five datasets totalling more than 40,000 real world series, found that a simple global neural architecture called TiDE achieved the best accuracy while needing less compute than large global alternatives (arXiv). The reasonable read of both papers: the winning method depends on your data, and anyone who names the best model for your store before seeing your sales history is guessing.
One piece of comfort for small shops. Theodorou and colleagues compared the Walmart based M5 competition data against a Corporacion Favorita dataset and a Greek supermarket chain and reported only small discrepancies, supporting the representativeness of the M5 data (arXiv). Findings from big grocery datasets tend to travel to smaller ones.
What a reorder alert should actually contain
An alert that just says low stock gets ignored by week three. A useful one carries:
- The item, the location, and the current sellable count, not a blended company wide number
- Forecast demand over the supplier lead time, so a five day lead item and a next day item trigger differently
- A suggested order quantity with case or pack size already applied
- The reason, for example a sales rate that has doubled against the four week average
- A confidence signal, so slow movers with mostly zero sale days are marked as rough guesses
- A one tap way for staff to approve, adjust or snooze, which doubles as your feedback loop
Where this doesn't apply
Plenty of Metro Vancouver businesses shouldn't buy this yet.
If your on hand counts are wrong, forecasting just makes wrong numbers arrive faster. Cycle counting first, models later.
If you carry a few hundred SKUs and the owner orders from three suppliers they've used for a decade, that intuition is already good and the software mostly adds admin.
Very intermittent items are genuinely hard. Products that sell one unit some weeks and none the rest carry little signal, which is exactly the regime the intermittent demand literature is still wrestling with. Expect ranges, not precision.
The productivity evidence should cool expectations too. Statistics Canada researchers Jiang Li and Huju Liu found AI adopters showed 16.8% higher productivity at first glance, but that gap fell to 10.2% after controlling for pre existing productivity, and to 5.1% and statistically insignificant once complementary capabilities were included. They conclude that gains take time and depend on organisational change and complementary investments (Statistics Canada). Firms already doing data analytics were 15 percentage points likelier to adopt in the first place. The AI isn't the whole ingredient.
Adoption is also still early. In the second quarter of 2026, Statistics Canada reported that 19.2% of Canadian businesses used AI to produce goods or deliver services over the preceding 12 months, while 40.0% said AI is not relevant to their business (Statistics Canada). Being deliberate is not the same as being behind.
Keep a person on the purchase order
Let the system recommend and let a human confirm, at least until you've got a season of history. NIST frames that kind of ongoing oversight through the four functions of its AI Risk Management Framework, Govern, Map, Measure and Manage, released as AI RMF 1.0 on January 26, 2023 (NIST). For a corner store that translates into something small: log every suggestion and every override, review the misses monthly, and cap what the system can order without a signature.
One illustrative example, not a client result: a shop carrying 800 SKUs that writes off 2% of a $40,000 monthly grocery order is losing $800 a month. Cutting that in half is worth $400. Run the math on your own write off log rather than on that number.
Sources
- Square Developer, CatalogItemVariation object reference, accessed August 2026. https://developer.squareup.com/reference/square/objects/CatalogItemVariation
- Shopify Developer, Inventory management apps, accessed August 2026. https://shopify.dev/docs/apps/build/orders-fulfillment/inventory-management-apps
- Hobor, L., Brcic, M., Polutnik, L., Kapetanovic, A. Comparative Analysis of Modern Machine Learning Models for Retail Sales Forecasting. arXiv preprint, v2 revised March 2026. https://arxiv.org/abs/2506.05941
- Damato, S., Rubattu, N., Azzimonti, D., Corani, G. Intermittent time series forecasting: local vs global models. arXiv preprint, revised June 2026. https://arxiv.org/abs/2601.14031
- Theodorou, E., Wang, S., Kang, Y., Spiliotis, E., Makridakis, S., Assimakopoulos, V. Exploring the representativeness of the M5 competition data. arXiv preprint, 2021. https://arxiv.org/abs/2103.02941
- Statistics Canada. Analysis on artificial intelligence use by businesses in Canada, second quarter of 2026. Released June 11, 2026. https://www150.statcan.gc.ca/n1/pub/11-621-m/11-621-m2026010-eng.htm
- Li, J., Liu, H. Artificial intelligence adoption and productivity in Canadian firms. Statistics Canada, April 22, 2026. https://www150.statcan.gc.ca/n1/pub/36-28-0001/2026004/article/00002-eng.htm
- National Institute of Standards and Technology. AI Risk Management Framework (AI RMF 1.0), January 26, 2023. https://www.nist.gov/itl/ai-risk-management-framework
If you run a shop or a small grocery around Burnaby, Vancouver or New Westminster and you want an honest read on whether reorder alerts are worth it for your SKU count, book a free call with Autana Solutions. We'll look at your actual sales export and tell you if the answer is no.
Want an AI employee for your business?
We install a 24/7 AI worker for businesses in Vancouver, Burnaby, and beyond. Book a free Discovery Call.
Book a call →

