From Chatbot to Digital Partner: My Experiment with OpenClaw

Feb 20, 2026
5 min read
AI, Experiment, Automation
Cover

We’ve all grown used to the standard back-and-forth with AI like ChatGPT. You ask a question, it gives an answer. It’s useful, but it’s passive. I wanted to see what happens when the AI can actually leave the chat window and interact with the real world—touching files, running code, and negotiating with other software.

That’s the promise of OpenClaw, “The AI that actually does things,” and I decided to put it to the test.

I started by turning an old HP ProDesk (i3, 32 GB RAM) into a local Linux server. I wanted this intelligence to live on my own hardware, not just in the cloud.

This gave me a secure sandbox where the agent—whom I named Stone Bot—could have deep system access without compromising my main computer. I hooked him up to Discord, turning a simple chat app into a command line for my new digital coworker.

The Assistant Test: Notion & Jobs

My first real attempt to put Stone to work was automating my search for an apprenticeship. I thought I could just say “find me jobs,” but it was a harsh reality check. We spent hours fighting with Notion’s API because Stone, running blindly on my server, couldn’t see that the documentation had changed.

I had to be his eyes, feeding him error logs and API keys. It was frustrating, but it taught me that agentic AI isn’t magic; it’s a collaboration. When standard tools failed due to GDPR blocks on job sites, we pivoted to using Firecrawl to scrape web data directly. It wasn’t perfect immediately, but we built a working pipeline that now logs opportunities for me automatically.

The Developer Test: Instant Snake Game

Things got really interesting when I asked Stone to build a Snake game just to test his coding speed. In less than three minutes, he didn’t just write the HTML and JavaScript; he acted like a DevOps engineer.

He realized my server was hidden inside a VirtualBox machine—effectively a soundproof room that the outside world couldn’t reach. Without me asking, he:

  • Dockerized the app to make it portable.
  • Deployed a Cloudflare Tunnel to create a secure, public link.

When I opened it on my phone, I realized he had even added touch controls because he anticipated I might not be on a desktop. That was the moment it clicked: he understood the context of how I would use the app, not just the code required to build it.

👉 Play the game here: Stone Snake Edition
👉 Check the code: GitHub Repository

The Detective Test: Finding Contacts

The final test was giving Stone the ability to “see” the web. I realized he was limited without a search subscription, so he suggested we self-host our own search engine, SearxNG.

With this new tool, I sent him on a detective mission to find a friend’s email address. He scanned LinkedIn, identified that my friend was a student at my school (ISEN Brest), and used deductive reasoning to construct the correct email format based on the school’s patterns. He then wrote a Python script to generate a PDF report of our work and emailed it out autonomously.

Conclusion

This experiment proved to me that we are entering a new era. Stone Bot isn’t just a chatbot anymore; he’s a presence on my server that monitors my costs, hosts my projects, and helps me research. It requires technical knowledge to guide him when he gets stuck, but the payoff is having a personalized, private extension of my own capabilities that works even when I’m asleep.

Back at the top