DEV Community

Induwara Ashinsana
Induwara Ashinsana

Posted on Originally published at induwara.lk

Instinct raised $350M. The moat is your app permissions

Instinct, the AI startup that lets you text and call an assistant wired into your own apps, has raised $350 million at a $2.5 billion valuation. TechCrunch reported the round on 26 August 2026, and the number that stopped me wasn't the valuation.

It was this: the product is still in private beta, and the loudest public criticism is about app permissions. Investors priced that combination at $2.5 billion anyway. That tells you exactly what is being bought here, and it isn't a model.


🔍 What actually got funded

Here is what the reporting establishes, and nothing beyond it:

Fact Detail
Company Instinct, operating as Spear Street Technology
Founder Noah Shinn, age 23
Age of company Roughly one year
Series B $250 million, co-led by Index Ventures and Benchmark
Total raised $350 million
Valuation $2.5 billion
Status Private beta as of 26 August 2026
User count / revenue Not disclosed

Note the last row. No user numbers, no revenue. Arithmetic on the first two rows implies roughly $100 million raised before this round, which is a lot of runway for a one-year-old company that hasn't opened the door yet.

The product itself is easy to describe: an assistant you connect to your apps and devices, and then talk to over text and calls. Shinn's own framing of what people do with it:

"They've planned cross-country road trips, bought weekly groceries and concert tickets, and cancelled hundreds of dollars of subscriptions. Someone's even planning their wedding with Instinct." — Noah Shinn


🔑 The demo is cheap. The permissions are not

Read that quote again as an engineer rather than as a user. Every single item on it is the same technical shape:

  1. Take a natural-language instruction.
  2. Pick the right API.
  3. Fill in the arguments.
  4. Execute, with the user's credentials.

Steps 1 through 3 are a solved problem. Any current frontier model with tool-calling does them well enough to demo. If you have a laptop and a free-tier API key, you can build a convincing version of "cancel my subscriptions" this weekend. I'd budget an evening for the plumbing and a second one for the error handling.

Step 4 is the entire business. "With the user's credentials" is where the $2.5 billion sits.

Key takeaway: Instinct's moat is not intelligence, it's authorisation. Whoever holds the OAuth scopes for your calendar, your inbox, your card and your delivery apps owns the workflow — and that position is far harder to copy than the prompt that sits on top of it.

This is why the privacy complaints and the valuation are the same story, not two competing ones. Users flagged permissions they found overly generous and terms of use they found invasive. From an investor's seat, wide permissions read as depth of integration. From the user's seat, the same thing reads as exposure. Both are correct.


🛠️ Commodity vs. moat, for anyone building an agent

If you're a small team here thinking about an agent product, this is the split worth being honest about before you write a line of code:

Layer Commodity or moat? Why
LLM reasoning + tool-calling Commodity Available to anyone with an API key
Prompt engineering / planner loop Commodity Replicable in days; nobody defends this
Voice + SMS transport Commodity Off-the-shelf telephony providers
Connectors to third-party apps Partial moat Real engineering, but copyable
Held user authorisations at scale Moat Requires trust, and trust takes years
Liability when the agent buys the wrong thing Nobody's asked yet The open question in this whole category

That last row deserves more attention than it gets. An assistant that "bought weekly groceries" is an assistant with live payment authority. The failure mode of a chatbot is a wrong answer. The failure mode of an agent with your card is a wrong charge, and there is no established norm yet for who eats it.

If you're pricing out the model layer for your own build, our AI API cost calculator will get you a realistic per-call figure in a minute. Fair warning: the model cost is usually the cheapest line item in an agent product. Support and refunds are not.


🇱🇰 Why "connect it to everything" is a heavier ask here

The permission trade looks different on a Sri Lankan phone than it does on a San Francisco one, and I don't think that difference is well understood by anyone building these products.

  • The phone is the whole stack. For most people here, banking, QR payments, government services, remittances from family abroad and work chat all live on one device with one number. There is no laptop-and-phone separation to fall back on.
  • Recovery is slower. Disputing an unauthorised transaction is a branch-and-paperwork process, not a tap in an app. The cost of an agent's mistake is measured in days, not minutes.
  • The terms are drafted elsewhere. Terms of use written for a US consumer market don't map cleanly onto local banking rules or onto Sri Lanka's data protection legislation. If something goes wrong, the recourse is a foreign entity's support queue.
  • Availability is not guaranteed. Private beta means invite-only, US-first. Don't architect anything you're planning to ship around a service you can't sign up for.

None of this means don't build agents. It means the "just connect everything" onboarding that reads as frictionless in a launch video reads as reckless to a user who has one phone and one bank account.


💡 What this means for you

My read, plainly:

  1. Stop treating the model as your differentiator. It's rented, and your competitor rents the same one. What you own is the integration surface and the trust to use it.
  2. Build the narrow version first. One workflow, executed properly, with permissions scoped to exactly that workflow, beats a general assistant that asks for everything on day one. Narrow scopes are also a genuine selling point in a market that has just watched a $2.5 billion company get criticised for the opposite.
  3. Design the confirmation step before the happy path. Any action that spends money or sends something on the user's behalf should be reversible or confirmed. That constraint will shape your architecture, so decide it early rather than bolting it on.
  4. Watch this company, don't chase it. Instinct is running an expensive experiment on how much authority people will hand an agent. The result will be useful to you whichever way it goes, and it costs you nothing to wait for it.

Bottom line: $350 million bought a bet that users will trade broad app permissions for convenience. If that bet pays off, the playbook becomes standard. If it doesn't, the teams that asked for less will be the ones still standing.

Top comments (0)