<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Yanko Aleksandrov</title>
    <description>The latest articles on DEV Community by Yanko Aleksandrov (@yanko_aleksandrov).</description>
    <link>https://dev.to/yanko_aleksandrov</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3956602%2F93975d07-1071-457b-a959-ae874131f804.jpg</url>
      <title>DEV Community: Yanko Aleksandrov</title>
      <link>https://dev.to/yanko_aleksandrov</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yanko_aleksandrov"/>
    <language>en</language>
    <item>
      <title>I Replaced My Cloud AI Subscriptions With a $549 Box That Runs 24/7</title>
      <dc:creator>Yanko Aleksandrov</dc:creator>
      <pubDate>Thu, 28 May 2026 12:47:40 +0000</pubDate>
      <link>https://dev.to/yanko_aleksandrov/i-replaced-my-cloud-ai-subscriptions-with-a-549-box-that-runs-247-379n</link>
      <guid>https://dev.to/yanko_aleksandrov/i-replaced-my-cloud-ai-subscriptions-with-a-549-box-that-runs-247-379n</guid>
      <description>&lt;p&gt;I was paying for three different cloud AI subscriptions and still didn't have an assistant that could &lt;em&gt;actually do things&lt;/em&gt; — read my inbox, run on a schedule, and keep my data on my own network. So I moved the whole thing onto a small box that sits on my shelf and runs around the clock. Here's the setup, the trade-offs, and the numbers.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with cloud AI for "assistant" work
&lt;/h2&gt;

&lt;p&gt;Chat UIs are great for one-off questions. They fall apart the moment you want:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Always-on automation&lt;/strong&gt; — "every morning, check X and message me"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Real device/inbox access&lt;/strong&gt; without handing a third party your credentials&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Predictable cost&lt;/strong&gt; instead of metered tokens&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Privacy&lt;/strong&gt; — data that never leaves your LAN&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's an &lt;em&gt;infrastructure&lt;/em&gt; problem, not a prompt problem. You need a machine that's always on, sips power, and runs an agent runtime.&lt;/p&gt;

&lt;h2&gt;
  
  
  The hardware
&lt;/h2&gt;

&lt;p&gt;I landed on an &lt;strong&gt;NVIDIA Jetson Orin Nano&lt;/strong&gt; class device:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;67 TOPS of on-device inference&lt;/li&gt;
&lt;li&gt;~15 W under load (cheap to run 24/7)&lt;/li&gt;
&lt;li&gt;Runs local models + browser automation + messaging integrations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can absolutely DIY this. I went with a pre-built &lt;strong&gt;&lt;a href="https://clawbox.tech?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=jetson-assistant" rel="noopener noreferrer"&gt;ClawBox&lt;/a&gt;&lt;/strong&gt; (€549, plug-and-play) because I didn't want to spend a weekend on JetPack, thermals, and power modes — but the software stack below is open source and works on your own Jetson or Pi too.&lt;/p&gt;

&lt;p&gt;If you're weighing build-vs-buy, I wrote up the math here: &lt;strong&gt;&lt;a href="https://clawbox.tech/best-hardware?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=jetson-assistant" rel="noopener noreferrer"&gt;ClawBox vs Mac Mini vs DIY&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The software: OpenClaw
&lt;/h2&gt;

&lt;p&gt;The runtime is &lt;strong&gt;OpenClaw&lt;/strong&gt; — an open-source AI gateway that connects a model to Telegram/WhatsApp/Discord, gives it tools (browser, files, shell, MCP servers), and survives restarts so scheduled jobs keep running.&lt;/p&gt;

&lt;p&gt;Minimal mental model:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[ Telegram/WhatsApp ]  -&amp;gt;  [ OpenClaw gateway ]  -&amp;gt;  [ local model + tools ]
                                   |
                              runs 24/7 on the box
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Setup requirements and tiers (minimum / recommended / production) are documented here: &lt;strong&gt;&lt;a href="https://clawbox.tech/openclaw-hardware-requirements?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=jetson-assistant" rel="noopener noreferrer"&gt;OpenClaw hardware requirements&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it actually does for me
&lt;/h2&gt;

&lt;p&gt;Three jobs earned their keep in week one:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Inbox triage&lt;/strong&gt; — sorts mail, flags the 3 things that need me, drafts replies to the routine ones.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scheduled checks&lt;/strong&gt; — a morning cron that logs into a dashboard, pulls numbers, and DMs me a summary.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A support bot&lt;/strong&gt; — answers common product questions from a knowledge file.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;All of it runs locally. Credentials live on the box, on my network — not in someone's cloud.&lt;/p&gt;

&lt;h2&gt;
  
  
  The trade-offs (honest version)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Local models ≠ frontier models.&lt;/strong&gt; For heavy reasoning you'll still reach for a hosted model via API. The win is &lt;em&gt;where the orchestration and your data live&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You own the uptime.&lt;/strong&gt; It's a box in your house. Mine's been fine, but it's on you.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Setup time&lt;/strong&gt; if you DIY. That's the whole reason pre-built exists.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Cost, roughly
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Cloud subs (mine, before)&lt;/th&gt;
&lt;th&gt;Local box&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Up-front&lt;/td&gt;
&lt;td&gt;€0&lt;/td&gt;
&lt;td&gt;~€549 one-time&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Monthly&lt;/td&gt;
&lt;td&gt;~€60 across 3 services&lt;/td&gt;
&lt;td&gt;~€2 electricity + optional API&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Data location&lt;/td&gt;
&lt;td&gt;their cloud&lt;/td&gt;
&lt;td&gt;my LAN&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Break-even was under a year for me, and I stopped renting three things that each did 10% of what I wanted.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Hardware + the build-vs-buy breakdown: &lt;strong&gt;&lt;a href="https://clawbox.tech?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=jetson-assistant" rel="noopener noreferrer"&gt;clawbox.tech&lt;/a&gt;&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Full review with benchmarks (67 TOPS, ~15 tok/s): &lt;strong&gt;&lt;a href="https://clawbox.tech/clawbox-review?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=jetson-assistant" rel="noopener noreferrer"&gt;ClawBox Review 2026&lt;/a&gt;&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;OpenClaw is open source — run it on whatever Jetson/Pi you already have.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you've built a similar always-on local setup, I'd love to hear what jobs you handed to it first. That choice matters more than the hardware.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>selfhosted</category>
      <category>hardware</category>
      <category>privacy</category>
    </item>
  </channel>
</rss>
