The Cloud
  • Tools
  • Docs
  • Case studies
  • Pricing
  • Download
Contact salesSign inOpen The Cloud
Open The Cloud
The Cloud

The AI-native workspace: memory, pages, and agents you can bring to any AI.

© 2026 The Cloud. All rights reserved.

How to run AI agents from your home computer

The Cloud (thecloud.so) is an AI-native workspace and operating system: your memory, pages, apps, and agents live in one always-on place that any AI can read and act in over MCP. This guide covers running AI agents on your own home computer — the two setups, what you need, how to keep them safe and always-on, and how MachineSync lets you dispatch and watch them from any device.

Why run agents at home

Running agents on your own machine buys you three things a metered cloud cannot: no per-token bill for the bulk work, data that never leaves the box, and a computer that is yours to point at any job. The tradeoff is that you own the setup — keeping it on, keeping it safe, keeping it supervised. This guide covers both halves: the machine, and the layer that makes it useful from anywhere.

The two setups

There are two honest ways to do this. The first is fully local and do-it-yourself: install a runner like Ollama, pull an open model, and drive a coding agent from your terminal. You control everything and you maintain everything. The second is to attach your machine to a workspace that handles dispatch, supervision, and memory for you, so you send a task from any device and the machine does the work. The first is more control; the second is more reach. They are not exclusive — the same machine can do both.

Step 1 — Attach your machine

The reach setup starts by pairing your machine once. With MachineSync, you open the Attach machine screen in The Cloud, get a one-time code, and run the installer on the machine:

curl -fsSL https://www.thecloud.so/machinesync/install.sh | sh -s -- --code <pairing-code>

It installs a small daemon in your home directory — no sudo — that starts at login, keeps itself alive, and survives restarts. Today the machine you attach is a Mac, Apple Silicon or Intel, with a signed and notarized app.

Step 2 — Dispatch work from any device

Once attached, hand an agent a task from your phone, your laptop, or the web. The work runs on your home machine — a real coding agent working autonomously through to the pull request it opens on a connected repo, with merging always left to you. Runs default to a hosted frontier model, or run free on the machine's own local model when you want no metered ceiling.

Step 3 — Watch it, and keep it bounded

Never run an agent you cannot see. Every run shows up in the Agents view, tagged with its machine and current task; open one to steer it, stop it, or read the full transcript. Safety comes from bounds: agents open pull requests instead of pushing to main, destructive tools are marked so they confirm first, and nothing goes public without your explicit say-so. Visibility plus limits is what makes home compute safe.

Step 4 — Make it always-on

The point of home compute is work that happens while you are away. Recurring jobs become a Loop: a prompt plus a cadence — interval, cron, or when the machine is idle — aimed at a repo, a Space, a Studio app, or a task, each with its own model, write policy, and budget. For the full pattern, see the guide on hosting an always-on AI dev environment.

Which machine to use

Any computer that stays on works, but the sweet spot for a home agent server is a quiet, low-power machine you can leave running. A Mac mini is the common pick — small, silent, and efficient enough to sit on a shelf for months. If that is the route you want, the Mac mini as your AI machine guide covers the specs that actually matter.

Start here

Get a pairing code from the Attach machine screen in MachineSync, run the installer on the Mac you want to use, and it appears live in the Agents view, ready for its first agent:

curl -fsSL https://www.thecloud.so/machinesync/install.sh | sh -s -- --code <pairing-code>

From there, dispatch a task from any device and watch it run on your own hardware.

Frequently asked questions

Can I run AI agents on my home computer?

Yes. Any reasonably modern computer that stays on can run AI agents. There are two ways to do it: run everything locally yourself with tools like Ollama and an open model, or attach your machine to a workspace that dispatches and supervises agents for you. The first gives you total control and some setup; the second lets you send work from your phone and watch it run. Many people use both.

What do I need to run agents at home?

A computer that can stay on, enough RAM for the models you want (16GB is a comfortable floor for small local models, more for larger ones), and a stable internet connection if your agents call hosted models or open pull requests. A Mac is the smoothest path today. You do not need a server rack; an always-on laptop or a Mac mini is plenty to start.

Is it safe to run agents on my own machine?

It is safe when the agent's powers are bounded. Run it under your own user account, not root; give it a working directory, not your whole disk; and keep irreversible actions behind your approval. A good setup makes agents open pull requests rather than push to main, marks destructive tools so they ask first, and shows you every run instead of hiding it. Safety comes from limits and visibility, not from trust.

Do agents keep running when I close my laptop?

Only if they run as a background service, not inside a terminal window. A proper home-agent setup installs a small daemon that starts at login and survives restarts, so a run does not die when you close the tab or shut the lid. That is the difference between an agent you babysit and one that works while you are away.