saswatlife Your business runs. Your life returns.

Enduring systems for founder led firms

I do not begin with technology. I begin by understanding the business.

I diagnose how a firm runs today, where work is done twice, where information is retyped, where the founder is the only one who knows something, then design the system that removes them. What changes is that the business stops running on the founder's memory.

The order of work

  1. 01Understand
  2. 02Diagnose
  3. 03Architect
  4. 04Design
  5. 05Buildwhere most projects begin
  6. 06Test
  7. 07Deploy
  8. 08Evolve

Most software work starts at stage five, because that is the stage a founder knows how to ask for. The first three stages are where the cost of a system is actually decided, and they are the ones I will not skip.

The principle

  • Do not force a firm into a generic system. Design the system around the firm. A generic system fits by making somebody absorb the difference, and in a founder led firm that somebody is the founder. A system should be practical, modular, maintainable, scalable, secure, and proportional to the actual needs of the firm.
  • Design what the firm needs. Leave out what it doesn't. Every module that exists has to be maintained, understood and paid for. The ones a firm will never use cost it something every year, and understood usually means understood by the founder.
  • Technology comes after diagnosis and architecture. The choice between platforms, frameworks, databases, cloud infrastructure, automation, AI, mobile apps or websites is decided by the business requirement. Not the other way round.

What I design

The systems a firm runs on

  • Customer and order systems
  • Inventory and stock systems
  • Purchasing and vendor systems
  • Delivery and fulfilment systems
  • Payment and transaction systems
  • Data and reporting systems

Authentication, role based permissions, audit trails, reconciliation and automation are not separate products on a list. They are properties of a system that was designed properly, and every system I design has them. AI is added only where interpretation or prediction earns its place, and interfaces follow the system rather than the other way round.

Modular by default

Separated modules, defined responsibilities

A system built as one large block of functionality is a system that cannot be changed safely. Clear modules with defined responsibilities can be built in phases, tested on their own, and replaced one at a time as the firm changes.

A module map, showing interfaces, core and record separated Three layers. Interfaces on the left send to the core. The core holds orders, inventory, purchasing and payments, which depend on each other. The core writes to the record layer on the right, which holds reporting, audit and reconciliation and is never edited by hand. INTERFACES CORE. LOGIC AND DATA RECORD. DERIVED Customer portal Staff console Mobile, on the floor Orders Inventory Payments Purchasing Fulfilment Reporting Audit trail Reconciliation

writes to derived, never edited by hand

A distinction worth making

Business logic

The rule based logic required to operate the business. It is definite, testable, and it does the same thing every time.

If inventory falls below the reorder threshold,
create a reorder request.

Automation

A defined rule followed through a defined workflow. No interpretation, no prediction, and nothing to review.

When stock reaches the reorder threshold,
flag the item, create a purchase request,
notify the person responsible.

And AI, which is neither

AI is optional. It earns a place in a system when interpretation, prediction, generation or judgement provides genuine value, and it stays out when a rule would do the job more cheaply and more predictably. Most of what a business needs is a rule.

Security is architecture

Authentication, role based permissions, controlled exceptions, audit trails and appropriate data protection belong in the design from the first day. Not a shared PIN, and not an informal understanding of who is allowed to do what.

Data has a shape

Start with a coherent data architecture. One database where one will do, and separate databases or services only where there is a real architectural reason: a security boundary, independent scaling, reliability, or organisational separation.

The shape of the data

Records, and how they relate

The records a trading firm keeps, drawn with depth standing for distance from the customer. The near layer is what a customer touches. The middle layer is what an order resolves into. The far layer is supply. Relations inside a layer are cheap to change later. The ones that cross between layers are the expensive ones, which is why a diagnosis names them before anything gets built.

relates to crosses a boundary

Inside one layer

  • Customer places Order
  • Order is settled by Payment
  • Order line references Item
  • Supplier restocks Stock

Across a boundary

  • Order contains Order line
  • Item is tracked as Stock
  • Supplier supplies Item

Built in phases

Architect the destination. Build the priority.

The whole system gets designed before any of it gets built. What actually gets built first is whatever the firm needs first, which is usually whatever the founder is currently holding together by hand.

An interface added later, a mobile app for the floor staff or a desktop tool for the back office, should be able to use the same business logic and the same data architecture that is already there. If adding an interface means rebuilding the system, the system was designed wrong.

Who you would be working with

Natraj Thapa

Natraj Thapa

Business Systems Architect

One person, start to finish. The person who sits with you to understand how the firm runs is the same person who designs the data model, writes the business logic and hands over the system. Nothing is passed to a team you never meet.

That is a deliberate limit rather than a stage before scaling. It means fewer engagements at once, and it means the reasoning behind every decision in your system is held by someone you can still call a year later.

It would be a poor answer to founder dependence to replace it with dependence on me. That is what the written diagnosis, the data architecture and the business logic below are for. They are the reasoning taken out of my head as well as yours, and they stay yours whoever builds or maintains the system next.

What a diagnosis hands over

Documents you keep, whoever builds it

  1. 01

    A written diagnosis

    How the firm runs today, in plain language: where work is done twice, where information is retyped, where the founder is the only one who knows something, and what each of those costs.

  2. 02

    A module map

    The system drawn as separated parts with defined responsibilities, showing what talks to what, so the order of building is a decision rather than an accident.

  3. 03

    A data architecture

    What the business actually stores, how those records relate, and where the boundaries sit. This is the part that is expensive to change later, which is why it is decided early.

  4. 04

    The business logic, written down

    The rules the system will follow, stated so plainly that you can check them before anything is built. If a rule is wrong on paper it costs a sentence. If it is wrong in code it costs a release.

  5. 05

    A phased build plan

    What gets built first and why, sequenced by what the firm needs soonest rather than by what is easiest to start.

These are yours whether or not I build the system. A diagnosis that only makes sense if I do the work is not a diagnosis, it is a sales document.

Questions

Asked before the first call

What does a Business Systems Architect do?

I study how a firm currently operates, identify where work is duplicated, where information is retyped, where risk sits and where the firm depends on what one person remembers, then design the system that removes those problems. The design comes before any decision about software, platform or database.

What does founder led mean here?

A firm where the founder built something substantial and is still inside its daily operation, approving, remembering, unblocking, and being the person everything routes through. It is not a stage of size. A twelve person firm can be founder led and a sixty person one can have stopped being.

Do you design the system, or build it as well?

Both, and they are separate decisions. The diagnosis and architecture are delivered as documents you own, whether or not I build anything. If you want the build, it follows the plan in phases.

Do I need to know what software I want before contacting you?

No, and it is better if you do not. Arriving with a chosen platform means the decision that costs the most has already been made without a diagnosis. Four lines about how your firm runs today is a better starting point than a specification.

Will my system use AI?

Only where interpretation, prediction or generation genuinely adds value. Most of what a firm needs is rule based logic, which is cheaper, testable and does the same thing every time. A rule that reorders stock below a threshold does not need a model.

What is the difference between automation and AI?

Automation follows a rule you defined. When stock reaches the reorder threshold, flag the item, create a purchase request, notify the person responsible. Nothing is interpreted and nothing needs reviewing. AI makes a judgement, which is useful when a judgement is genuinely required and a liability when it is not.

Can the system be built in stages?

Yes, and it should be. The whole architecture is designed first so the destination is known, then building follows the order the firm needs. An interface added later, such as a mobile app for floor staff, uses the same business logic and data architecture rather than requiring a rebuild.

Do you work remotely?

Yes. The practice is registered in India and works entirely online, over call and screen share. There is no walk in office.

What happens in a first conversation?

It is about how your firm runs today. There is nothing to sign, no proposal presented and no specification required. If the work is not a fit, saying so early costs both of us less than starting.

The name

Your business runs. Your life returns.

A firm that runs on what one person remembers cannot be left alone, and the person it depends on is almost always the founder. Moving that knowledge out of heads and into systems the firm owns is what this practice does. What comes back is the founder's own time, which is the half worth naming.

Branding keeps its own line under the same name, Be Heard. Be Remembered. Presence and identity are a separate capability and are not merged into business systems design.

Where this starts

A conversation about how your firm runs today.

Not a proposal, and not a quote. I first understand how your firm works, find what it still runs on you for, and then design a system that fits the way you actually operate.

Get in touch
WhatsApp