Skip to main content

How I Run My Own Personal AI Assistant with OpenClaw

For the past few weeks I've been running my own personal AI assistant, and the tool that makes it possible is OpenClaw. If you've ever wanted a ChatGPT-style helper that actually lives on your own machine, remembers your projects, and can take real actions instead of just talking, this one is worth a look.

What is OpenClaw?

OpenClaw is an open-source framework for running a persistent AI agent that you own. Instead of a chat window you open and close, it runs quietly in the background on your computer and talks to you through apps you already use — in my case, Telegram. I can message it from my phone and it responds even when my laptop lid is closed.

Why I like it

The big difference from a normal chatbot is memory and action. My assistant keeps notes across sessions, so it remembers my projects, my preferences, and what we worked on last time. It can also actually do things — read and edit files, run commands, deploy my web apps, check dashboards, and search the web — all with my permission.

A few things it does for me:

  • Deploys my side projects. I ask it to push a change and it handles the SSH, the file copy, and verifies the site is live.
  • Watches my accounts. It can open a managed browser, log into a dashboard, and report the numbers back to me in plain language.
  • Remembers context. It knows my stack, my domains, and my working style, so I don't have to re-explain everything each time.
  • Runs on a schedule. It checks things like email or a deploy a few times a day and only pings me when something actually matters.

The setup

OpenClaw runs on my Mac and connects to Telegram, so the assistant is basically always reachable. It has its own workspace folder that acts as its home — that's where its memory, notes, and tools live. Everything private stays on my machine.

Is it for everyone?

If you're comfortable with a bit of technical setup, it's genuinely useful. It's not a toy — it can touch real files and real services, so you grant access deliberately and it asks before doing anything risky. For developers and tinkerers, that trade-off is exactly the point.

I'll keep sharing what I build with it. For now, if you've been curious about running an AI agent that's truly yours, OpenClaw is the most capable option I've found.

 

Comments

Popular posts from this blog

Cursor AI Review: Is the AI Code Editor Worth It?

I've been using Cursor as my main code editor for a while now, and enough people have asked whether it's worth switching to that a proper review felt overdue. Short version: for me, yes — but with caveats. What is Cursor? Cursor is an AI-first code editor built as a fork of VS Code. That means every extension, theme, and keybinding you already use in VS Code works here, but with AI woven directly into the editing experience instead of bolted on as a plugin. It's made by Anysphere and can run models from OpenAI and Anthropic under the hood. What I like Tab completion is uncanny. Cursor predicts your next edit — not just the rest of the line, but the next change across the file. Once you get used to hitting Tab, going back to a plain editor feels slow. The Composer / Agent mode. You describe a change in plain language and it edits multiple files at once, showing you a diff to accept or reject. For refactors and boilerplate, this saves real time. It unde...

MacBook Pro M5 vs M5 Pro: Which One Should You Actually Buy?

Apple's latest 14-inch MacBook Pro comes in two very different flavors: the base M5 and the step-up M5 Pro . On paper they look similar — same gorgeous Liquid Retina XDR display, same design — but under the hood the gap is bigger than the names suggest. Here's a clear, no-hype breakdown, with concrete use cases so you can match the chip to your work. Quick spec comparison Spec M5 M5 Pro CPU 10-core (4 performance + 6 efficiency) Up to 18-core (6 performance + 12 efficiency) GPU 10-core Up to 20-core Neural Engine 16-core 16-core Memory bandwidth 153 GB/s 307 GB/s (roughly double) Unified memory 16 / 24 / 32 GB 24 / 48 / 64 GB Max storage Up to 4 TB SSD Up to 8 TB SSD Battery (video playback) Up to 24 hours Up to 22 hours Media engines Single encode/ProRes engine More encode/ProRes engines (higher configs) What actually changes between them More cores — the M5 Pro nearly doubles CPU cores and adds GPU cores, so sustained, multi-threaded work finishe...

How I used Google Sheets and Apps Script

Google Sheet is one of the most powerful spreadsheet application that exists online, rivaling with Microsoft's Excel. One of the main strengths is its strong support for collaboration with other users, much easier and popular than collaboration tools with Microsoft Office. Aside from plain spreadsheet, it also supports extensions such as macro. If you are familiar with macros on other office tools, they work almost the same. However, the most extension I use and tinker with is the Apps Scipt . Apps Script Extension One of the challenges I faced recently is how do I track or monitor reports in our department if they are submitted on time or worst, forgotten due to lack of better monitoring tools. So I thought if there can be simple applications that can be deployed or use by a more general user to allow reminding periodically what reports are approaching due dates or those that are past dues. Then I looked for a way, instead of creating a full blown app from scratc...