Skip to content
Manthan Solanki

Does Agentic Software Really Make Sense for Small E-Commerce?

Today, I’d like to share how I personally think about system design. I am exploring whether agentic software really makes sense for a small product-based company that wants to enter the online market.

agentic software

Image credit: pixilart.com

Table of contents

Open Table of contents

My Assumptions

I am imagining a small traditional company that:

I am intentionally choosing cloud-native serverless because I do not want the company to waste time managing servers. I want them to focus on business, not hardware.

Part 1 — The Traditional Cloud-Native System

This architecture has a classic serverless e-commerce backend.

traditional could-native architecture

Why I Choose Serverless

Serverless is preferable because:

For a small company, this reduces operational complexity dramatically.

How I Imagine the Flow

The user enters the platform through CloudFront CDN, which reduces latency globally. AWS WAF is attached to CloudFront to protect against common web attacks (SQL injection, bots, etc).

Amazon Cognito is used for authentication. I like Cognito because it handles JWT tokens, user pools, login via email/phone, and removes the need to build auth from scratch.

Next, API Gateway (HTTP API) as the central routing layer. I think of it as the managed entry door to all backend services.

Inside a dedicated VPC, multiple AWS Lambda functions run:

I use DynamoDB for catalog data because it scales automatically and works well for product listings.

Amazon RDS (PostgreSQL) for transactional data like orders and users because it provides relational consistency.

For payments, I integrate with Stripe using webhooks. In addition, SQS FIFO to handle asynchronous payment confirmation and retries. If failures exceed retry limits, messages are pushed to SQS DLQ.

Zendesk API from Lambda for customer support.

For legacy inventory, I use an ECS Fargate Inventory Gateway Service that connects via Direct Connect (or secure hybrid connectivity) to the on-prem inventory system.

I store secrets in AWS Secrets Manager and monitor logs and metrics using CloudWatch.

Why This Architecture Works

This architecture is:

The availability is high because:

Security-wise:

which is production-grade and realistic.

Part 2 — The Agentic AI-Native System

Now I ask myself: what if the entire front-end interaction becomes conversational? Instead of navigating pages, I imagine the user chatting with an AI commerce assistant.

traditional could-native architecture

Why I consider Agents

Agents make sense for:

But they also introduce cost and complexity :/

How I Imagine the Agentic Flow

Keep CloudFront + WAF + Cognito same. Security fundamentals do not change.

HTTP API is replaced with WebSocket API and AWS Bedrock Agent as the brain.

The agent consists of:

I let Bedrock manage session memory (internally backed by DynamoDB).

Important part: Action Groups that map to backend tools:

Now the key difference:

The agent decides which Lambda to invoke.

Semantic Search Upgrade

In the traditional system, catalog search is keyword-based.

In the agentic version, Amazon OpenSearch (vector search) enables semantic search.

Imagine:

This is a major UX improvement.

Knowledge Base & FAQs

Let’s assume that the company documents and FAQs are uploaded into S3, which feeds the Bedrock Knowledge Base.

Now the agent can:

This reduces human support load.

What Stays the Same

I kept:

What is the difference then? Rather than replacing backend logic, the orchestration is changed, which is important.

Cost Estimation

Assumptions (/month):

SystemEstimated Total (/month)
Traditional€175 – €245
Agentic€400 – €750

The additional cost for agentic system is heavily coming from Bedrock followed by OpenSearch (small cluster).

Security Reflection:

Security remains strong in both cases. However, I must additionally worry about agentic system regarding:

So governance becomes more important.

Feature Comparison

Traditional System:

Agentic System:

Verdict

I think traditional cloud-native systems are about control and agentic systems are about adaptability.

I believe small companies should first build a stable deterministic backbone. I would not replace the core transactional system with an LLM, but an agent can be layered on top once the system is stable.

Agentic software makes sense when:

I don’t think every small company immediately needs an agent, but I do think the market is changing.

Overall, this is how I see it:

Cloud-native is about abstracting servers, and AI-native is about abstracting workflows.

Stay Connected

If you’d like to connect or have questions about my work, feel free to reach out.


Share this post on:

Next Post
My LoRA Failed, So I Did This - A Month Inside Controllable Video Generation