SiddharthAll posts
Source the Brain. Own the Harness.
Kimbho Thoughts|AI Strategy

Source the Brain. Own the Harness.

What you’ll learn
  • The core thesis is that frontier model intelligence is rapidly commoditizing, so true competitive advantage comes not from the model but from the "harness"—the proprietary orchestration layer connecting the LLM to your data, tools, and workflows.
  • The most important takeaway is that outsourcing this harness to a vendor exposes your operating model, strategy, and process IP, effectively training your competitor with every API call.
  • To win, you must own the NERVES framework (Navigate, Execute, Recall, Verify, Evolve, Sovereign) as your defensible moat.

Everyone is racing to plug into the same frontier models. The same APIs. The same reasoning engines. If everyone has the same brain, where is your differentiation? The answer — and the engineering blueprint to capture it — is below.


The Uncomfortable Question

Walk into any enterprise AI strategy meeting in 2026 and you will hear the same conversation. Which model are you using? Which API? Which agent framework? Which vendor's platform?

The uncomfortable truth is that these questions are converging on the same answers. Frontier model quality gaps now close in quarters, not years. APIs are commoditizing. Agent frameworks are open-source and improving fast. The model you chose last quarter will be matched or surpassed by three competitors next quarter.

So here is the question that should keep executives awake:

If everyone has access to the same intelligence, what makes your AI deployment yours?

The answer is not the model. The answer is the harness — the orchestration layer that connects raw intelligence to your business, your data, your tools, and your outcomes. And most companies are about to outsource it without realizing what they are giving up.


The Brain and the Nervous System

We all have brains of roughly equal capability. Yet some people become master surgeons, others become master criminals. The brain matters — but what makes a person effective is training, repetition, feedback, muscle memory, experience, and action. The nervous system connects intelligence to the real world.

AI works the same way.

The LLM is the brain. But on its own, it is inert — a brain in a jar. It cannot call your APIs, query your database, follow your compliance policy, remember what happened five minutes ago, verify its output, or improve based on its mistakes.

The harness does all of that. It routes work, calls tools, remembers context, follows policy, evaluates quality, and feeds failures back into improvement. It turns raw model capability into business outcomes.

And here is the empirical evidence that the harness matters more than people think. A 2026 survey of 110+ agent research papers found that a leading coding agent jumped 6.7 percentage points to 68.3% on the SWE-bench benchmark — the industry standard for software engineering capability — by changing nothing except the format of its edit tool. huggingface.co Same model underneath. Same benchmark. The harness alone moved performance by more than many full model upgrades do.

Separately, research on model routing shows that with proper classification, you can retain 95% of frontier model quality while routing 85% of queries to cheaper models, achieving cost reductions of 45–85%. tianpan.co The intelligence is there. The economics are unlocked by the harness.


The Exposure Problem

Most companies are solving their AI needs by plugging into a vendor's managed agent platform. It feels pragmatic — fast time-to-market, no infrastructure to build, no team to hire. But there is a hidden cost that does not appear on the invoice.

When you run your critical workflows inside someone else's harness, you are not just renting their intelligence. You are exposing your operating model.

YOUR COMPANYWhat you think you're sharingVENDOR'S HARNESSWhat they actually seePromptsTool callsWorkflowsEvalsException handlingHow you thinkHow you workHow your business runsWhat you valueWhere judgment lives
Fig 1 — What flows into a vendor's harness is not just data. It is your operating model.

Every prompt reveals how your team thinks. Every tool call reveals how your processes work. Every workflow reveals how your business actually operates. Every eval reveals what you consider good enough. Every exception handler reveals where human judgment lives.

That is strategy. Process IP. Institutional muscle memory — the accumulated knowledge of how your organization functions, compiled into running code.

If your critical workflows live inside someone else's harness, you hand all of that over. The vendor's team sees your patterns, their roadmap absorbs your innovations. You are training your own competitor, one API call at a time.


The NERVES Framework

If the harness is the moat, what exactly goes into building one? After studying the architecture of production agent systems, I have distilled the engineering design into six components. They spell NERVES — which is the point. This is your AI nervous system.

The NERVES Framework — Six Components of an Owned HarnessNNavigateThe RouterClassifies every request bytask type — not difficulty.Routes to the right modeltier. Rules for the obvious.Cascade for the ambiguous.EExecuteTools & WorkflowsYour business tools, APIbindings, schemas. The agentcalls deterministic functions.It never holds state itself.Tools are typed & testable.RRecallMemory & ContextThree memory tiers: session(short-term), working (task-scoped), and long-term(knowledge graph). Decideswhat to persist vs. forget.VVerifyEvals & GuardrailsDeterministic checks for thebulk — schema validation,test execution, type checks.Model-based verification onlyfor the ambiguous tail.EEvolveFeedback LoopsRoutes, prompts, andthresholds improve from realperformance data. Failuresare captured, classified,and fed back automatically.SSovereignData & IP GovernanceContext minimization for thefrontier tier. Sensitive datanever crosses trust boundaries.Your data, your context,your IP, your policies.
Fig 2 — The NERVES Framework. Six components. Each is yours to own. Each is lost if you outsource the harness.

N — Navigate

The router classifies every request and decides which model handles it. The principle: classify by task type, not perceived difficulty. The router distinguishes single-turn from multi-step agentic. Best approach: hybrid — hard rules for obvious cases, cascade for the ambiguous middle.

E — Execute

The tool registry is where your business logic lives. Every tool is a deterministic function with a typed schema, an API binding, and a test suite. The agent calls these tools but never holds state itself — the tool is the source of truth, not the model's memory of what it thinks it did.

This is the neuro-symbolic pattern that makes agents safe enough for regulated environments. The LLM decides which tool to call and with what parameters. The tool executes deterministically. If the model hallucinates a tool call, the schema validation catches it. If the parameters are wrong, the tool returns a structured error. The agent can be wrong, but it cannot be silently wrong — every action is logged, typed, and auditable.

R — Recall

Three memory tiers: session (current conversation), working (task-scoped context), long-term (knowledge graph). The challenge is selection: what enters the context window, what gets compressed, what gets forgotten. Context engineering is becoming more important than prompt engineering.

V — Verify

If 70-85% of queries run on smaller models, you need verification. The solution: deterministic verification — schema validation, type checking, business-rule engines — for as much as possible. Reserve model-based verification for the ambiguous tail. Every failure feeds back into routing improvements.

E — Evolve

A harness without a feedback loop is static in a dynamic world. Routing accuracy is tracked, thresholds retuned, prompts A/B tested — all against real production traffic, not synthetic benchmarks.

S — Sovereign

The component that matters most in regulated industries: sensitive data never crosses a trust boundary unnecessarily. The local tier keeps data in-house. The frontier tier sees only minimal context. But sovereignty is also about IP — your prompts, schemas, evals, and exception handlers encode how your business thinks.


The Architecture

Here is how the three layers — model, harness, and data — fit together in a production deployment:

Production Architecture: Three Separable LayersTHE ROUTER (Navigate) — intent classifier & cost gatesingle-turn? · agentic multi-step? · sensitive? · context-heavy?OWNLOCAL MODEL TIER8B–70B self-hosted · vLLM~70–85% of queries · marginal costsub-second latency · full data sovereigntysingle-turn tasks, classification, extractionRENTFRONTIER MODEL TIERAPI · rented by the token~15–30% of queries · market pricecomplex multi-step reasoning onlysees minimal sanitized context onlyTHE HARNESS — your owned IP (the moat)ExecuteTool Registry · schemasAPI bindings · typed toolsdeterministic functionsagent never holds stateRecallsession · working memorylong-term knowledge graphcontext compressionwhat to persist vs forgetVerifyschema · type validationbusiness-rule enginefailure capturerouting-accuracy feedbackEvolveA/B tested promptsthreshold retuningdrift detectioncontinuous eval loopOWNDATA & CONTEXT LAYER — owned (Sovereign)business data · decisions · institutional IP · knowledge graph · conversation memoryOwned — your infrastructure, your IP, your controlRented — utility-priced, provider-agnostic, replaceable
Fig 3 — The full production stack. Teal = owned. Grey = rented. The harness sits between intelligence and data — it is the layer you must control.

The Economics

Consider a system processing one million queries per month at roughly 2,000 input and 500 output tokens per query.

All-frontier at current pricing ($5/M input, $25/M output): ~$22,500/month.

With tiered routing: 70% local at marginal cost, 15% mid-tier, 15% frontier. Total: ~$4,400/month. 80% reduction at 95% quality.

The asymmetric insight: the 15% that needs frontier is where the value concentrates. The 70% that runs local is where the cost concentrates in a naive design. Owning the local tier does not save you money on the hard 15% — it eliminates the bill on the easy 85%.

And this gap will widen. As open-weight models improve, the capability ceiling of the local tier rises. Every future drop in local-model cost gets captured as margin, automatically, because the routing layer adapts without re-architecture.


Four Applied Architectures

Theory without application is just consulting. Four real-world workflows, each with NERVES applied. Each follows the same pattern — trust boundary, deterministic tools, local model for the bulk, frontier for the hard tail.


1. Investment Bank: M&A Due Diligence

The scenario. A $4B acquisition. The data room has 12,000 contracts (~96,000 pages). Every contract needs classification, clause extraction, risk scoring against the firm's 340-item diligence checklist (refined across 200+ deals), and escalation of novel provisions.

How NERVES applies. A fine-tuned 70B local model handles 85%: clause extraction, classification, entity mapping, checklist scoring. The frontier tier handles the 15% with novel provisions — indemnification chains, cross-document obligations, multi-jurisdictional intersections.

Applied Architecture: Investment Bank — M&A Due DiligenceFIRM BOUNDARY — OWNED INFRASTRUCTUREVirtual Data Room12,000 contracts~96,000 pages$4B acquisitionOWNLOCAL TIER (70B)• Clause extraction• Contract classification• Risk-scoring vs checklist• Entity & obligation mappingROUTERStandard clause?or novel / complex?Verify: schema check85%AUTO-SUMMARY + RISK REPORTClause-by-clause scoring against340-item checklist · Deal dashboard15%RENTFRONTIER TIER (API)• Indemnification chain analysis• Cross-document inference• Regulatory intersection logicReceives: clause text + question onlyVERIFY · EVOLVE (owned)Deterministic: schema validation on extracted clauses · checklist auto-scoringThreshold flagging: any clause scoring < 7/10 routed to partner reviewFeedback loop: partner markups retrain scoring weights · novel clauses added to libraryOWNEDTHE MOAT — institutional assets that never leave the firmDiligence Checklist340 items, refined across200+ live dealsClause LibraryMarket-standard ranges,red-flag patterns, fallbacksDeal Knowledge GraphPrior deals, comparableterms, negotiation outcomesRisk-Scoring RubricPartner-calibrated weightsper clause type & sector
Fig 5 — M&A due diligence on an owned harness. 85% of contracts never leave the firm's infrastructure. The frontier model sees only clause text and a legal question — never deal names, counterparties, or the data room itself.

What never leaves the firm. The 340-item checklist, clause library, deal knowledge graph, and risk-scoring rubric. The frontier model receives only clause text and a legal question.

The cost math. All-frontier: ~$180K. Tiered: ~$22K. 88% reduction.

Why this is better than a vendor platform. The firm's checklist, scoring logic, and exception patterns would be visible in vendor logs — core advisory IP handed to a third party.


2. Payments Network: Real-Time Fraud Monitoring

The scenario. A global payments network processes approximately 65,000 transactions per second — over 2 billion transactions per month. Every transaction must be scored for fraud risk in under 100 milliseconds. The network has accumulated 15 years of chargeback data, fraud signatures, and merchant risk profiles. The fraud team's institutional knowledge — which patterns matter, which thresholds trigger reviews, which behaviors correlate with confirmed fraud — is encoded in thousands of rules and scoring weights tuned over a decade and a half.

How NERVES applies. The rule engine — velocity thresholds, amount limits, blocklists, known-fraud signatures — handles 90% with zero model involvement. The local model (32B) handles behavioral scoring for 7%. Only 3% escalate to the frontier.

Applied Architecture: Payments Network — Real-Time Fraud MonitoringNETWORK BOUNDARY — OWNED INFRASTRUCTURETransaction Stream~65,000 TPS2B+ txns/month<100ms SLARULE ENGINE• Velocity thresholds• Hard amount limits• Geographic blocklists• Known-fraud signaturesAUTO-PASS / BLOCK90% of transactionsLOCAL MODEL (32B)Behavioral scoring · 7%APPROVED / DECLINEDSub-50ms decisioning on 97% oftransactions · zero model API cost3%RENTFRONTIER TIER (API)• Coordinated attack detection• Multi-account behavioral graph• Novel fraud pattern inferenceReceives: abstracted features onlyVERIFY · EVOLVE (owned)Chargeback outcomes → threshold retuningConfirmed fraud → signature library updateFalse positives → scoring weight adjustmentOWNEDTHE MOAT — institutional assets that never leave the networkFraud Signature DB15 years of confirmedfraud patterns & trendsRisk ThresholdsTuned on chargebackdata · merchant profilesBehavioral BaselinesPer-cardholder velocity,geography, merchant patternsInvestigation PlaybooksStructured escalationprotocols per fraud type
Fig 6 — Real-time fraud monitoring on an owned harness. 90% of transactions are decided by deterministic rules at zero model cost. The frontier model sees only abstracted behavioral features — never card numbers, PII, or the full transaction graph.

What never leaves the network. Fraud signature database, risk thresholds, behavioral baselines, investigation playbooks. The frontier model receives only abstracted features.

The cost math. All-frontier: ~$50M/month, blows the 100ms SLA. Owned: 97% at zero/marginal cost. The only architecture that meets real-time constraints.

Why this is better than a vendor platform. The vendor sees every transaction and scoring decision, then aggregates patterns across all clients.


3. Global Law Firm: Cross-Border Regulatory Review

The scenario. A multinational in 40 jurisdictions needs compliance assessment across GDPR, SOX, FCPA. Corpus: 500,000 documents, backed by a 20-year regulatory knowledge base.

How NERVES applies. Local tier handles 80%: jurisdiction classification, PII/privilege detection, checklist matching, obligation extraction. Frontier handles 20%: novel interpretation, cross-jurisdictional conflicts.

Applied Architecture: Global Law Firm — Cross-Border Regulatory ReviewFIRM BOUNDARY — OWNED INFRASTRUCTUREDocument Corpus500,000 docs40 jurisdictions5 regulatory regimesOWNLOCAL TIER (70B)• Jurisdiction classification• PII & privilege detection• Regulatory checklist match• Obligation extractionROUTERStandard compliance?or novel interpretation?Verify: checklist scoring80%COMPLIANCE REPORTPer-jurisdiction gap analysis,obligation register, risk heatmap20%RENTFRONTIER TIER (API)• Novel regulatory interpretation• Cross-jurisdictional conflicts• Complex privilege determinationReceives: legal question + statute textVERIFY · EVOLVE (owned)Deterministic: jurisdiction-tag validation · privilege-rule checksChecklist scoring: each obligation matched to jurisdiction-specific requirementFeedback: regulatory updates trigger automatic re-scoring of corpusOWNEDTHE MOAT — institutional assets that never leave the firmRegulatory Knowledge Base20 years of precedent,guidance, enforcement actionsPrivilege CriteriaFirm-specific privilege rulesacross all jurisdictionsMatter HistoryPrior client outcomes,negotiated positions, strategiesJurisdiction ChecklistsPer-regime compliance itemsGDPR · SOX · FCPA · DPDP
Fig 7 — Cross-border regulatory review on an owned harness. The firm's regulatory knowledge base and privilege criteria never leave the building. The frontier model receives legal questions and statute text — never client identities or matter strategy.

What never leaves the firm. Regulatory knowledge base, privilege criteria, matter history, jurisdiction checklists. The frontier model receives only the legal question and statute text.

The cost math. All-frontier: ~$250K. Tiered: ~$38K. 85% reduction. Client data never leaves the firm.

Why this is better than a vendor platform. The vendor sees checklists, privilege logic, and matter strategy — then commoditizes the judgment clients pay premium rates for.


4. Managed Services Provider: IT Incident Response

The scenario. 200 clients, 5,000 servers, ~50,000 alerts/day. A decade of operations yielded 3,000+ runbook resolutions, client topology maps, and an incident history knowledge graph.

How NERVES applies. Local tier handles 85%: log parsing, classification, known-issue matching, standard remediation. Frontier handles 15%: novel incidents requiring multi-step root cause analysis.

Applied Architecture: Managed Services Provider — IT Incident ResponseMSP BOUNDARY — OWNED INFRASTRUCTUREClient Telemetry200 clients5,000 servers~50,000 alerts/dayOWNLOCAL TIER (32B)• Log parsing & correlation• Alert classification• Known-issue matching• Standard remediationROUTERKnown issue?or novel incident?Verify: health check85%AUTO-RESOLVEDRunbook executed, health confirmed,ticket auto-closed · zero API cost15%RENTFRONTIER TIER (API)• Multi-step root cause analysis• Cross-system dependency tracing• Novel failure pattern IDReceives: abstracted system state onlyVERIFY · EVOLVE (owned)Deterministic: post-remediation health check · alert correlation validationEvery resolved incident → runbook library update · known-issue matcher retrainedNovel incidents → SME-authored runbook → future auto-resolutionOWNEDTHE MOAT — institutional assets that never leave the MSPRunbook Library3,000+ documentedresolutions over a decadeClient TopologyPer-client system maps,dependencies, configurationsIncident History10 years of resolvedincidents & root causesSLA & Escalation RulesClient-specific SLAs,priority, escalation paths
Fig 8 — IT incident response on an owned harness. 85% of alerts are auto-resolved using the firm's runbook library. Every resolved incident makes the system smarter — the runbook library grows, the known-issue matcher improves.

What never leaves the MSP. Runbook library, client topology maps, incident history, SLA/escalation rules. The frontier model receives only abstracted system state.

The cost math. All-frontier: ~$225K/month. Tiered: ~$34K. 85% reduction. Every resolved incident updates the runbook, so auto-resolution climbs over time.

Why this is better than a vendor platform. The runbook library is operational DNA. A vendor offers the same capability to every competitor — neutralizing a 10-year head start.


The Pattern Across All Four

Look at the four architectures side by side and the same structural insight appears in every one:

In every case, the frontier model touches only a small fraction of the workload. The harness owns the rest. And the institutional assets — the checklists, the signatures, the knowledge bases, the runbooks — are the assets that compound over time, that competitors cannot download, and that make the harness more valuable with every transaction.

In every case, the frontier model — the expensive, rented brain — touches only a small fraction of the workload. The harness owns the rest. And the institutional assets at the bottom of each diagram — the checklists, the signatures, the knowledge bases, the runbooks — are the assets that compound over time, that competitors cannot download, and that make the harness more valuable with every transaction, every contract, every alert, every incident.

That is the moat. Not the model. The nervous system that connects intelligence to your business, your data, and your outcomes. Built on your workflows. Connected to your tools. Grounded in your data. Governed by your policies. Measured by your evals. Improved through your feedback loops.


The Multiplicative Effect

Here is where the harness thesis gets strategically interesting in a way that goes beyond cost and defensibility. The harness is not just a moat against competitors. It is a multiplicative skill layer that makes every employee operate at the level of your best experts.

Expertise does not scale today. A partner's 20 years of deal-risk judgment. A fraud investigator's intuition. An engineer's diagnostic pattern recognition. These people are force multipliers — but you cannot hire 200 more of them, and when they leave, their judgment walks.

The harness changes this equation. When you encode that partner's diligence checklist into the routing logic, the investigator's fraud signatures into the scoring thresholds, and the engineer's diagnostic patterns into the runbook library, you have captured their judgment in running code. Now every junior analyst, every new hire, every offshore team member who interacts with the system is wielding that accumulated expertise. The harness does not replace the expert. It distributes the expert's judgment across the entire organization, simultaneously, on every transaction.

The Harness as a Multiplicative Skill LayerOne expert's knowledge, encoded once, available to every employee foreverEXPERTISE INSenior partnerTop traderLead investigatorVeteran analystTHE HARNESSCaptures expertise in:tools · checklists · workflowsevals · thresholds · playbooksrouting logic · exception rulesEncodes once · compounds foreverCAPABILITY OUTJunior analystNew associateBack-office teamRegional officeOffshore teamEvery new hire×A partner's 20 years of judgment does not scale by hiring 200 more partners.It scales by encoding it into the harness — where every analyst, associate, and contractor can wield it on day one.
Fig 9 — The harness as a multiplicative skill layer. Expertise encoded once becomes available to every employee, every team, every office — simultaneously and permanently.

A frontier model gives every company the same raw intelligence. But the harness is where your expertise lives — and expertise, once encoded, compounds. Every resolved incident makes the runbook smarter. Every partner markup refines the scoring. The improvements accrue only to you. A vendor platform cannot replicate this: your lessons benefit everyone on the platform equally.


Design Considerations

None of this means the architecture is trivial to build. Three engineering decisions deserve attention — not as blockers, but as design choices that determine how well the system performs.

Local Models Are Ready

A common assumption is that local models are meaningfully weaker than frontier models — that routing 80% of traffic to a local tier means accepting a quality sacrifice. The evidence says otherwise. Today's open-weight models in the 32B–70B range are genuinely capable: they handle classification, extraction, summarization, drafting, and retrieval-synthesis tasks at quality levels that match or are within a few percentage points of frontier models on enterprise workloads. The research cited earlier shows that proper routing retains 95% of frontier quality while serving 85% of queries from cheaper models. tianpan.co

The practical design principle is to route on task structure rather than perceived difficulty. A multi-step tool chain — even one where each individual step is simple — benefits from frontier reasoning. A complex single-turn analysis — even one involving dense domain content — is well within local-model capability. The router classifies how many steps and how many tools are involved, not how "hard" the question sounds. Get this right and the local tier handles the bulk of the work at quality parity.

Human-in-the-Loop Is Easier in Your Own Harness

The concern that local models need more verification is real — but the solution is actually easier in an owned harness than in a vendor's. Here is why: when you control the workflow, you design the checkpoints. You decide exactly where human review enters the loop, what triggers escalation, and what gets auto-approved. You can see every exception, every edge case, every judgment call — because the workflow is yours.

In a vendor's harness, the verification logic is opaque. You see the inputs and the outputs but not the intermediate steps. You cannot insert a checkpoint at the precise moment where your domain expertise says judgment is needed. You cannot tune the escalation threshold to your risk appetite. You are trusting the vendor's generic guardrails to protect your specific business logic.

In your own harness, deterministic verification handles the bulk — schema validation, type checking, business-rule enforcement — at zero model cost. Human-in-the-loop review handles the judgment calls, and because you designed the workflow, the review surfaces land at exactly the right desk: the partner for deal risk, the senior investigator for fraud, the lead engineer for incidents. The harness makes human oversight surgical rather than blanket. You review the 5% that matters, not the 95% that does not.

And every human review feeds back into the Evolve layer. The partner's markup retrains the scoring weights. The investigator's disposition updates the fraud signatures. The engineer's root cause analysis becomes a new runbook entry. Human judgment does not just verify the system — it makes the system smarter, permanently, for everyone.

Router Calibration

The router's classification accuracy determines both cost (over-routing to frontier wastes money) and quality (under-routing to local causes failures). But LLM self-reported confidence is notoriously poorly calibrated — a model can produce a fluent, authoritative-sounding response with high internal confidence while being factually wrong. Pure confidence-based escalation is dangerous.

The solution is a router with its own evaluation loop: continuous measurement of routing accuracy, drift detection as query distributions shift, and a feedback path from the Verify layer that catches mis-routed queries and retunes the classifier.

Does the Harness Commoditize Too?

Open-source harnesses — full agent frameworks with tool registries, memory systems, and eval loops — are improving rapidly. So is the moat really durable?

Yes — but only if you are clear about what creates it. A generic harness is table stakes. The moat is a harness tuned to your specific workflows, your data distributions, your regulatory constraints, and your failure modes. It is calibrated on your actual production traffic, not synthetic benchmarks. It encodes your institutional knowledge in running code. A competitor can download the same open-source framework, but they cannot download your query log, your edge-case handling, or your domain-specific fine-tuning.


The Decision

Every organization faces the same choice: plug into a vendor's managed platform (fast, easy, quietly extractive) or build your own harness (slower to start, durably yours).

The model will become table stakes. In two years, "which model are you using?" will be as meaningful as "which electricity provider powers your data center?"

The harness will become the company. Your tools, memory, workflows, evals, feedback loops — where your business logic lives. What competitors cannot copy without your institutional knowledge.

The organizations that internalize this compound advantage over time. Those that do not will wake up having trained their vendors into competitors, with nothing they own and everything they rent.

Do not outsource your nervous system.

1 comments
Siddharth
Siddharth

Thoughts and essays, published with Yokush. See more posts

Comments 1

Name & email required. Your email is never shown publicly.
J
John LemurJuly 2, 2026
Very apt and relevant ! I wonder how difficult is it for smaller businesses like ours to adopt this.