Lesson 4 of 7

5 min read

Always-on: why your agent needs a home

This is the lesson most beginners skip, and it is the one that decides whether your agent is a toy or a tool. An agent that is not running is just an idea.

By David Silva

Go back to the flight-price agent from Lesson 1. For it to message you the moment a price drops, something has to run that check every morning, whether or not you are at your desk, whether or not your laptop is open. That simple requirement is where a lot of first agents quietly die.

A chat session is not a running agent

When you use a chatbot, it only exists while the tab is open and you are typing. Close the tab and nothing is watching, waiting, or working. That is fine for a conversation. It is useless for an agent whose whole value is doing things while you are busy or asleep.

Why your laptop is the wrong home

The obvious idea is to run the agent on your own computer. It works for a quick experiment, and it is a fine place to learn. As a permanent home it falls apart quickly:

  • It stops the moment your laptop sleeps, closes, or loses wifi.
  • It cannot wake up at 7am to send your digest if the machine is off.
  • You become the operations team: updates, restarts, and crashes are all yours.
  • Your credentials and the agent's work sit on a personal device that travels with you.

What an always-on home gives you

  • It runs on a schedule, so your 7am digest actually arrives at 7am.
  • It reacts to events, like a new email or a price change, the instant they happen.
  • It keeps going for long tasks without babysitting.
  • It keeps secrets and work off your laptop, in one place you can monitor.

You can set this up yourself by renting a server and configuring it, which is real work and real maintenance. Or you can use a managed service that keeps the agent online for you, so you spend your time on what the agent should do rather than on servers. Qoren is one such service: it runs your agent in a managed, always-on environment so you never touch the plumbing. Either way, the lesson is the same. Decide where your agent lives before you fall in love with what it can do.

Now that your agent has somewhere to live, the next lesson gets practical: we design your first one, on paper, in plain language.

Key takeaways

  • An agent only delivers value while it is actually running.
  • A chat session ends when you close the tab; that is not an agent.
  • Your laptop is fine for experiments but a poor permanent home.
  • Always-on hosting gives you schedules, instant reactions, and secrets kept off your device. You can self-host it or use a managed service like Qoren.

Get the next lesson in your inbox

Up next: Design your first agent (no code). Join the free course and we'll send new lessons and practical ways to put agents to work.

Common questions

For learning and quick tests, yes, and it is a good place to start. For anything you want running reliably around the clock, a personal machine is the wrong home because it sleeps, moves, and needs you to maintain it.