Always-On Cloud Agents: Inside Gemini Spark & Grok Bot, the New 24/7 Agent Tier in 2026
Google moved Gemini Spark to $19.99, xAI shipped Grok Bot's always-on cloud agents and Cloudflare added agent wallets. The agent no longer dies with your laptop — here is the architecture under the new 24/7 tier.
Deepak Bagada
CEO, SaaSNext
- Always-on agents run in the cloud: state and compute live in a VM or edge runtime, so closing the laptop changes nothing.
- Three properties define the tier: cloud residency, continuous execution on schedules and triggers, and delegated authority across sessions.
- The architecture is durable state, an event bus, on-demand VM leases, and push notifications — the same durable-execution patterns as enterprise workflows.
- A $19.99 price point works because idle agents cost pennies a day; the subscription pays for residency and reliability, not idle tokens.
- Trust comes from narrow capability, AI disclosure (Article 50), spending caps, and a persistent action log.
By Deepak Bagada, CEO at SaaSNext & Principal AI Architect.
Sometime in the second week of August 2026, the agent industry quietly stopped pretending that an assistant dies when you close your laptop. Google moved Gemini Spark, its always-on cloud agent, from the $99.99 Ultra plan down to the $19.99 AI Pro tier; xAI shipped Grok Bot for macOS and iOS — a team of always-on cloud agents that keep working when your devices are off; and Cloudflare launched Kitesurf, a browser built for agents to run in, plus spending-capped wallets so those agents can hold and spend money. Three companies, three products, one architectural decision: the agent no longer lives in your session, it lives in the cloud, and your device is just a window onto it.
That decision is the most consequential architecture shift of the year, and it is worth understanding on its own terms. This guide breaks down what an always-on agent actually is under the hood, why the price points matter, and what it means for the people building on top of this tier — with the same systems lens we apply across the AI workflows library.
The always-on agent tier, compared
Agent Runtime Pricing (Aug 2026) Key capability
Gemini Spark Google Cloud VM $19.99/mo (AI Pro) Continuous personal agent, cloud-resident
Grok Bot xAI cloud macOS/iOS app Team of always-on agents, cross-device
Kitesurf Cloudflare Edge Browser + agent Agent-first browser, spending-capped wallets
ChatGPT Operator Cloud session Existing plans Web task automation (human-started)
Three properties separate the always-on tier from everything that came before. Cloud residency: the agent's state, context, and compute live in a cloud VM or edge runtime, not in the app process — closing your laptop does nothing. Continuous execution: the agent can act on a schedule, on triggers, or while you sleep, because nothing has to be running locally to keep it alive. Delegated authority: because the agent persists, it can hold capabilities across sessions — a browser session, a wallet with a per-transaction cap, a phone number — which is the difference between an assistant and an employee.
The architecture of an always-on agent
# Sketch: a cloud-resident agent worker (pseudocode)
class AlwaysOnAgent:
def __init__(self, vm_lease, state_store, event_bus):
self.state = state_store.load(self.id) # durable state, not session memory
self.vm = vm_lease
self.events = event_bus # async queue, survives disconnects
async def run(self):
while True:
event = await self.events.next() # user msg, schedule tick, webhook
checkpoint = await self.vm.execute(event, self.state)
self.state = checkpoint # persist after every action
await self.notify(self.state.pending_asks) # push, don't wait
Every always-on agent is this loop with production hardening. The state store (a database, not a context window) holds the agent's memory across restarts. The event bus decouples arrival from execution — a message sent while the agent is busy is queued, not lost. The VM lease means compute is provisioned on demand and torn down when idle, which is the cost model that makes a $19.99 subscription viable. And push notification replaces the pull of a chat window: the agent pings you when it needs you or when a task completes, instead of sitting in your app waiting. These are the same durable-execution patterns we document in detail in our AI workflows library.
Why the price point matters
The Gemini Spark move from $99.99 to $19.99 is not a discount; it is a market signal. At $99.99 an always-on agent is a prosumer toy; at $19.99 it sits in the same tier as the streaming services people already pay for, which is the price band where a consumer actually leaves the agent running for a month. The economics only work if the cloud runtime is cheap: an idle agent on a paused VM costs pennies a day, and the marginal cost of an extra scheduled task is a few seconds of inference. The subscription, in other words, is paying for residency and reliability — the state store, the event bus, the uptime — not for the tokens. That is a fundamentally different cost structure from per-token APIs, and it is why the AI agent economics we analyze in the AI workflows library keep shifting from token math to subscription math.
Trust, transparency, and the always-on problem
Giving an agent a cloud home raises the trust question in a way session-based assistants never did: an agent that runs while you sleep can also act while you sleep. The industry's answer in August 2026 has three parts. Narrow capability by default — Gemini Spark and Grok Bot both scope what an agent can do without asking, and spend money only through capped wallets. Identifiable action — the EU AI Act's Article 50 disclosure rules came into force on August 10, so an agent that calls a business or posts content must say it is an AI, which applies directly to always-on agents acting in the real world. A record of what it did — always-on agents keep an action log by construction, because their state is a database, and that log is the audit trail that makes delegated authority tolerable. The containment and disclosure patterns behind these are covered in our AI workflows library.
What builders should do with this tier
For application developers, the always-on tier is a new primitive, not just a new product. Build your agent's state so it survives restarts from day one — if your state lives in a context window, you cannot graduate to an always-on runtime. Design for push, not pull — your agent needs a channel to reach the user asynchronously. Budget for the wallet, not the token — spending limits and per-transaction caps are a product requirement, not a compliance afterthought. And keep the action log — it is the difference between an agent users trust with always-on authority and one they uninstall. The workflow patterns that make all of this durable are catalogued in our AI workflows library.
Frequently Asked Questions
Q: What makes an agent "always-on" vs a regular assistant?
A: Three properties: cloud residency (state and compute live in the cloud, not the app), continuous execution (acts on schedules and triggers even when no device is on), and delegated authority (persistent capabilities like browsers and wallets across sessions).
Q: How does an always-on agent stay cheap enough for a $19.99 subscription?
A: Idle agents sit on paused VMs costing pennies a day, and compute is provisioned on demand. The subscription pays for residency and reliability — the state store, event bus, and uptime — not for idle tokens.
Q: Why is durable state the prerequisite?
A: An always-on agent persists across restarts by definition. If your agent's memory lives in a context window, it dies with the session; a state store in a database is what lets it resume work after a crash or a reboot.
Q: How do always-on agents stay trustworthy?
A: Narrow capability by default, identifiable action (including EU Article 50 AI disclosure), spending caps via wallets, and a persistent action log — the audit trail that makes delegated authority tolerable.
Q: What should builders change in their architecture?
A: Persist state outside the context window, design push-based async notifications, budget for spending limits rather than token math, and keep an action log — the four prerequisites for graduating to an always-on runtime.
Enjoyed this breakdown? Get our morning dispatch in your inbox.
Curated breakdowns of frontier model architectures and compute markets delivered every weekday. Zero fluff.
Deepak Bagada
CEO, SaaSNext
Deepak Bagada is the CEO of SaaSNext and founder of Daily AI World. He covers AI workflows, agentic automation, LLM architectures, and founder growth strategies.
Spending-Capped Agent Wallets: Giving Autonomous Agents Money with Per-Transaction Limits in 2026
Next Story →Open-Weight Models Catch the Frontier: MiniMax M3 & Grok 4.5 Lead the August 2026 Rankings
Related Intelligence Analysis
Cursor Agent Mode 2026 & Google Workspace Plugins: Multi-File Code Execution Architecture
Architecting autonomous code generation workflows using Cursor Agent Mode and Google Workspace integrations in 2026.
Cursor 2026 Agent Mode & Google Workspace Plugins: Multi-File Automated Code Execution Architecture
Explore the architecture behind Cursor's 2026 Agent Mode and Google Workspace integration, enabling safe, autonomous multi-file refactoring at scale.
Cursor 2026 Agent Mode & Google Workspace Plugins: Multi-File Automated Code Execution Architecture
Explore the architecture behind Cursor's 2026 Agent Mode and Google Workspace integration, enabling safe, autonomous multi-file refactoring at scale.