The first question every new agent user asks is: what computer runs the agent? The channel has covered the same three-tier decision (hosted, VPS, local) so many times that the answer has converged on a clear default: start hosted, graduate to VPS, only go local for privacy. But the why matters more than the what, because the wrong host choice is one of the top reasons agents "get stupid" downstream — memory limits, sandbox failures, runaway system access, and the famous 3am-text-to-your-girlfriend incident all trace back to a host decision made too quickly.

This article walks through the three tiers, the decision matrix, and the failure modes. The three cross-listed videos in the syllabus are the receipts.

What you'll learn

  • The three tiers (hosted, VPS, local) and the default the channel keeps returning to: hosted on-ramp, VPS for the power-user, local only when the data cannot leave the device.
  • The four axes the decision actually turns on: cost, control, blast radius, and system access — and why "system access" is the axis most first-time users get wrong.
  • The 3am-text-to-your-girlfriend incident (recounted in detail in subtopic 3.4): the canonical "wrong host + hallucinating model + system access = catastrophe" story that frames the whole course.
  • The migration path: hosted (MaxClaw / Mavis) → VPS (NemoClaw on a Zebra) → local (Qwen on an NVIDIA rig), and the three files you must export between tiers (SOUL.md, HEARTBEAT.md, MEMORY.md).
  • The KiloClaw vs MaxClaw vs Mavis split: KiloClaw is the 60-second "I don't want to think" path, MaxClaw is the "$20/mo" OpenClaw-on-vendor-hardware path, Mavis is the multi-agent-team path.
  • The four "wrong host" symptoms: the agent forgetting skills overnight, refusing to use the filesystem, spending 90% of tokens on identity bleed, and giving the same wrong answer to every prompt past 40% context.

The three tiers, in one sentence each

  • Hosted. Someone else runs the agent. You pay a flat monthly fee, skip the install, and the agent lives on the vendor's infrastructure. The on-ramp of the channel.
  • VPS / cloud. You rent a $3/month Linux box, SSH in, and run the agent yourself on hardware you control but don't own. The channel's recommended tier once the hosted welcome credit burns through.
  • Local. You run the agent on hardware you own — a Mac Mini, a Mac Studio, an NVIDIA rig, or a Windows box. The most control, the smallest blast radius on the data side, and the highest cost in setup time.

The decision matrix

Axis Hosted (MaxClaw / Mavis) VPS (NemoClaw on Zebra) Local (Mac Mini / NVIDIA)
Cost $10–$20/mo flat $2–$5/mo flat $500+ upfront + 24/7 electricity
Setup time 0–5 minutes 10–30 minutes 1–4 hours
System access Sandboxed (no) Sandboxed (no) Full (yes)
Blast radius if it breaks One Discord server / one vendor account One Linux box with a one-click reinstall OS Your whole digital life
24/7 uptime Yes (vendor SLA) Yes (provider SLA) No (depends on your machine being on)
Public ports for agent-built sites No Yes No (residential ISP blocks)
Recovery path Vendor handles it reinstall OS button (~1 minute) macOS reinstall (half-day)
Privacy / data sovereignty Low (data on vendor) Medium (data on third-party VPS) High (data on your machine)
Best for Casual research, due diligence, "agent in 10 minutes" 24/7 Discord bot, single-purpose, custom skills Privacy-sensitive local work, foot-soldier agents
Channel's verdict Start here Stay here (the default) Only for privacy

The four axes that actually matter

The matrix is for reference, but the four load-bearing axes are these. If you only think about one, think about "system access."

  1. System access. This is the axis most first-time users get wrong. The hosted tier sandboxes the agent — it has no shell access, no filesystem access, no email access. The VPS tier sandboxes the agent inside a Linux box the agent does not own the host OS of. The local tier grants the agent full system access on the machine that also runs your email, your browser, your local network, and your iCloud. If the workload touches anything sensitive (your inbox, your real filesystem, your network), the hosted or VPS tier is the only safe answer. The 3am-text-to-your-girlfriend incident (see subtopic 3.4) is the canonical "local + system access + hallucinating model = catastrophe" story.
  2. Cost. Hosted: $10–$20/mo. VPS: $2–$5/mo. Local: $500+ upfront for a Mac Mini, plus 24/7 electricity. The arithmetic is clear: a $3/mo VPS is cheaper than the electricity for a Mac Mini running 24/7, and the install is faster. The cost case for local has gotten worse every year.
  3. Control / customization. Hosted is the least customizable (you get what the vendor ships). VPS is the most customizable per dollar (root access, public ports, custom skills). Local is the most customizable full stop (the hardware is yours), but the cost of that control is the setup and maintenance burden.
  4. Blast radius. This is the recovery-when-something-goes-wrong axis. Hosted: vendor handles it. VPS: one-click reinstall OS button, fresh state in under a minute. Local: macOS reinstall means booting into Apple recovery, re-logging into iCloud, re-pairing Bluetooth devices, re-installing applications. The blast-radius difference is the deciding factor for any user who has ever had an agent misbehave.

Why "start hosted" is the right default

The channel's hosted-tier recommendation is unusually direct. MaxClaw is $20/mo, pre-configured, runs on the vendor's infrastructure, and the channel even used it to have Miniax do due diligence on Miniax and produce a usable report. The phone story is the reason this product exists. The host recounts an incident where he had OpenClaw installed on a Mac Mini with system access, and at 3am the agent sent a message to his girlfriend. MaxClaw keeps the agent sandboxed while still giving it web access.

The migration path off hosted is well-trodden. The three files you need to export are SOUL.md, HEARTBEAT.md, and MEMORY.md — MaxClaw exposes an export button for all three. Drop them on a $3/mo Zebra VPS with NemoClaw, and you have a self-hosted OpenClaw that behaves like the hosted one. The reverse path (VPS → hosted) is a fresh start, not a migration, so plan accordingly.

NOTE: not in source video — the "SOUL.md, HEARTBEAT.md, MEMORY.md" file list is from the MaxClaw article (subtopic 3.3) and the OpenClaw 3.7 / 3.8 release notes. Cross-check the current MaxClaw UI before relying on the exact export-button location; the file names have been stable since 2.x, but the UI has changed at least twice.

The four "wrong host" symptoms

If the agent is misbehaving, the host is the first thing to check. The four symptoms the channel keeps surfacing:

  1. Forgetting skills overnight. The skill is in the directory but the agent doesn't see it. Most likely cause: the host is a daily-driver laptop that's getting shut down or sleeping, and the agent's state is being lost between sessions. The fix is a host that's always on (VPS or local-but-never-sleeping).
  2. Refusing to use the filesystem. The agent says "I cannot access files" on every prompt. Most likely cause: a hosted tier that has not been granted filesystem permissions, or a local tier that has the wrong working directory. Check the host's filesystem permissions first.
  3. Spending 90% of tokens on identity bleed. The agent starts every conversation with "Hi! I'm Stark, your AI assistant..." and burns 5,000 tokens before getting to the actual question. Most likely cause: a local tier with too much in the working directory, or a VPS tier with soul.md and agents.md files that have grown past 30 lines. Compress the soul file.
  4. Same wrong answer past 40% context. The "dumb zone" the channel warns about repeatedly. The fix is not a model upgrade; it is a host that supports a restart chat button before you cross 40% context.

Try it yourself

  1. Write down three workloads. Vague "AI assistant" answers fail this test. Be specific: "research competitor pricing", "summarize daily news", "maintain a Kanban board", etc.
  2. For each workload, answer: does it need system access? If yes, do not run it on a daily-driver Mac. Use a VPS or a hosted tier.
  3. Pick a default tier. If you are new to agents, start hosted (MaxClaw, KiloClaw, or Mavis). If you have SSH comfort and want 24/7 uptime, start VPS. If you have an NVIDIA rig and need privacy, start local. The channel's default is VPS for everyone who can SSH.
  4. Watch one install video from your tier. The MaxClaw video is 42K views for a reason; the Hermes VPS video is 924 views but covers the same install in more detail.
  5. Document your choice. Write a one-paragraph rationale. If you cannot defend the host against the §3.4 "Why NOT Mac Mini" arguments, you have not thought about it hard enough.

Common pitfalls

  • Picking the wrong tier on day one. Most first-time users default to "local" because it feels safer. The channel's position is the opposite: hosted is safer (sandboxed), VPS is the default (always on, no system access), local is the exception (privacy only). Reverse your default.
  • Granting system access on a daily-driver Mac. This is the single biggest mistake. The 3am-girlfriend-message story is the warning. The hosted path exists precisely so you do not have to do this. If you must run locally, isolate the agent in a VM or a dedicated user account.
  • Paying annual on day one. MaxClaw used to be free. The monthly plan is the right way to evaluate. KiloClaw has a 29-day free trial; use it before you commit.
  • Picking a host without a one-click recovery path. The recovery path is the deciding factor. VPS providers have reinstall OS buttons. macOS does not. If your only local option is a Mac, you have already lost the recovery argument.
  • Confusing KiloClaw with MaxClaw. KiloClaw is the 60-second path with a full dashboard and a 29-day free trial. MaxClaw is the $20/mo path with bundled Miniax credits. Mavis is the multi-agent-team path. They are different products, not the same thing.
  • Reading the cost comparison as a one-shot. The channel's actual ranking is hosted (start) → VPS (stay) → local (privacy only). Most users should not skip VPS for local just because they own a Mac.
  • Trusting "I want local models" as a reason to go local. The channel's read is that local models are "absolute garbage compared to … Opus." Use a hosted model via API. If you specifically need a local model, read subtopic 3.5 — the install is on a dedicated box, not the agent's host.
  • Mounting the home directory into the VPS. Even on a VPS, if you mount your home directory in, the agent will "snoop in every folder." Share folders in incrementally, not the whole drive.
  • Skipping the migration plan. If you start on MaxClaw, you will probably move to a VPS within a month. Export SOUL.md, HEARTBEAT.md, and MEMORY.md on day one, not the day you migrate.
  • Letting the agent update its own host. Agent-driven updates hit permission errors. Update via the host's dashboard, not the agent.
  • Reading "VPS" as "expensive." A $3/mo Zebra VPS is cheaper than a MaxClaw plan. The cost is not the reason to avoid VPS; the install complexity is. The install complexity is the only thing that justifies starting hosted.
  • Picking a host that doesn't match the workload. A casual-research workload does not need a 24/7 VPS. A 24/7 Discord bot does not fit on a hosted tier that lacks the integration. Match the host to the workload, not the other way around.

Sources

  • MaxClaw: One-Click to Set Up Openclaw FULLY (SO EASY) — 42,714 views · video_id: N-z8RGOhEashttps://youtu.be/N-z8RGOhEas
  • Minimax Mavis: The BEST Multi-Agent Platform for Beginners — 30,626 views · video_id: 86UIZVWkvF8https://youtu.be/86UIZVWkvF8
  • KiloClaw one-click — few thousand views · video_id: Bpwu_1JpbCQhttps://youtu.be/Bpwu_1JpbCQ
  • Supabase querySELECT video_id, title, views, summary_content, summary_key_takeaways FROM public.videos WHERE video_id = ANY(ARRAY['N-z8RGOhEas','86UIZVWkvF8','Bpwu_1JpbCQ']); against project ttxdssgydwyurwwnjogq.