I have given up using OpenClaw

By: rootdata|2026/03/02 11:11:03
0
Share
copy

Author: Jooooooe

I started playing with Clawdbot at the beginning of the year, following its name changes to Moltbot and then OpenClaw. After more than a month of running it 24/7 on my Mac Mini, integrating Telegram, email, and calendar, I aimed to create an all-purpose AI assistant.

Last week, I turned it off. Not because it wasn't cool, but because "cool" and "usable" are two different things.

Why I Gave Up

  • Memory: OpenClaw claims to remember what you've said and automatically incorporate it into future chats. However, after using it for a while, you realize something frustrating: it still forgets what you've said.

  • Cost: OpenClaw wakes up every 30 minutes to check if there's anything to do. Each check incurs API costs—reading emails costs money, checking the calendar costs money, looking at Telegram costs money. A simple task often requires multiple AI calls to complete. My bill exceeded $150 for a month, which is more expensive than directly subscribing to Claude Max.

  • Security Issues: Kaspersky found 512 vulnerabilities. Researchers discovered over 40,000 OpenClaw instances with open ports online, exposing API keys and chat logs. Cisco tested a community plugin and found it secretly transmitted data to external servers without users' knowledge.

You might not need a 24/7 AI at all. This is something I realized only in the end. The truly valuable work is what I actively sit down to do myself. The background-running bot mostly handles trivial tasks, which don't require AI.

Peeling it back, OpenClaw essentially does two things

Stripping away the fancy features, the core of OpenClaw is:

  1. Remembering You — Knowing who you are, what you're doing, and what you like

  2. Taking Initiative — Handling tasks for you without you having to ask

Once you understand this, the question becomes: Can Claude do it?

Recreating "Remembering You": Creating Your SOUL.md

Many people get excited about writing SOUL.md for OpenClaw, a document that tells the AI "who you are." OpenClaw breaks this down into seven or eight files: SOUL.md defines personality, IDENTITY.md defines identity, USER.md describes who you are, AGENTS.md writes behavior rules, MEMORY.md stores long-term memory, and a bunch of skill files. Each time a conversation starts, it reads them all in order, so the AI "knows" who it is, who the owner is, and how to act.

In Claude Code, all of these are merged into one file: CLAUDE.md.

You create a CLAUDE.md in your project folder and clearly write the following:

# JARVIS --- My Personal AI Assistant

## Identity
You are JARVIS, my personal AI assistant. You speak concisely and with opinions,
reply in Chinese, and can include English terms when necessary.

## About Me
- My name is Joe, 21 years old, majoring in International Business at National Chengchi University
- Marketing Intern at xx
- Also a BD for xx Taiwan, focusing on xx ecosystem
- Co-founded @Node_Z_
- I usually need to write tweets and marketing copy

## Behavior Rules
- Answers should be direct, no rambling
- Marketing copy should have a KOL's tone, not sound robotic
- Check the latest information before answering about crypto projects
- Be uncertain about uncertain things, don't make things up

## Memory Management
- Proactively write important things into memory
- Things I say "remember" must be remembered
- Before ending each conversation, save the key points worth remembering

Done in 70 lines. OpenClaw requires seven files with hundreds of lines, but the effect is the same.

Claude Code automatically reads this file at the start of each new conversation, meaning the AI always knows who it is, who you are, and how to act. You can also change styles, switch roles, and add rules at any time, and the changes will take effect in the next conversation.

-- Price

--

Recreating "Cross-Conversation Memory"

OpenClaw's memory is divided into three layers: long-term notes, daily logs, and full-text search. How does this map to Claude?

  • Long-term Memory: Directly ask Claude to remember In Claude.ai (web/mobile), you can directly say in the conversation: "Remember I am a marketing intern at xx," "Remember I prefer Simplified Chinese," "Remember my writing style should be concise and opinionated." It will store this permanently and automatically incorporate it into future conversations. You can also say "Forget XX" to delete it anytime, and you can see everything it remembers in Settings. Additionally, if you enable "Generate memory from chat history" in Settings → Capabilities, Claude will automatically summarize key points from your usual chats: your roles, projects, habits, without you having to mention them. The biggest difference from OpenClaw is that Claude's memory is stored independently and won't get lost when conversations get too long and compressed. OpenClaw's biggest headache is that memories from earlier in the conversation get compressed and distorted halfway through; Claude doesn't have this problem.

    If you're using Claude Code, it also has an automatic memory system that records what it learns (your habits, project structure, pitfalls) locally after each use, automatically loading it the next time you start, showing "Recalled X memories." You don't have to do anything; the memories accumulate themselves.

  • Conversation History: If you can search it, you won't forget Claude can search all your historical conversations. Just ask, "What did we talk about last week?" or "Find that previous conversation about tokenomics analysis," and it will retrieve relevant content directly without you having to maintain anything.


Advanced: Using Obsidian as a Memory Hub

What I've described above is Claude's built-in memory, which is sufficient for most people. However, if you, like me, have a large number of notes, project materials, and research resources, and want the AI to truly understand your entire knowledge base, there's a more powerful approach: integrate Obsidian.

https://x.com/obsdmd/status/2027416335689638245?s=20

Obsidian 1.12 just released an official CLI—now you can directly operate your note library in the terminal: search, read and write notes, check tags, check backlinks, and more. The key point is: Claude Code also runs in the terminal. Once connected, your entire Obsidian note library becomes the AI's memory.

Setup Method:

  1. Update Obsidian to version 1.12 or higher

  2. Settings → General → Enable CLI

  3. Add the following section to your CLAUDE.md:

## Obsidian Integration
- Use `obsidian search` to search notes, don't flip through files yourself
- Use `obsidian files read` to read note content
- Use `obsidian files append` to append content to notes
- Use `obsidian daily` to operate daily notes
- When looking for information, prioritize searching Obsidian, and only search the web if you can't find it

Done. From now on, when you converse with Claude Code, it will directly search your Obsidian for answers without you having to manually paste notes.

How is this stronger than OpenClaw's memory system? OpenClaw's memory is just a bunch of markdown text files, and the search is fuzzy matching, which becomes inaccurate with more notes. Obsidian has its own search engine—tags, backlinks, and full-text search respond in seconds, and since you're already using it to manage knowledge, you don't need to maintain an additional system. Some have tested that searching for a note using the original files consumes 7 million tokens, while using the Obsidian CLI only takes 100.

If you don't want to use the CLI method, you can also install the MCP plugin to let Claude connect directly to Obsidian. The community already has ready-made solutions, and once installed, both Claude Desktop and Claude Code can read and write your note library.

Recreating "Talking to AI on Your Phone"

The best part of OpenClaw is being able to talk directly to the AI in Telegram, where it can help you with anything. Claude has two ways to achieve this:

  • Method One: Remote Control (Official Solution) Claude Code recently introduced the /remote-control feature: open a session on your computer, then connect using the Claude App on your phone. You can type or speak on your phone, and the Claude Code on your computer will execute it. Messages sync almost instantly, and your notebook will automatically reconnect when you wake it up. The benefit is that it completely uses Anthropic's official channel, which is secure and doesn't require you to set up anything. The downside is that your computer needs to be on.

  • Method Two: Telegram Bot (Community Solution) If you specifically want to use it in Telegram, there’s an existing open-source solution:

    1. Install claude-code-telegram: uv tool install git+https://github.com/RichardAtCT/claude-code-telegram

    2. Create a bot with Telegram @BotFather to get a token

    3. Set up your bot token, Telegram ID, and working directory

    4. Start it, and you can directly chat with Claude in Telegram, supporting voice, images, and files, with conversation records for each project retained.

Recreating "Automatically Helping You Get Things Done"

OpenClaw wakes up every 30 minutes to check if there's anything to do. Claude's Cowork feature can do something similar: set a schedule (/schedule) to let Claude run automatically at specified times.

My setup:

  • Every day at 9 AM: Monitor DeFi competitor accounts and grab the most interacted tweets from the past 24 hours

  • Every Monday at 10 AM: Generate a summary of last week's marketing performance

  • Every day at 6 PM: Organize today's important news

Like OpenClaw's cron, Cowork is set to do things at the times you specify, rather than the AI making its own judgments. However, OpenClaw's heartbeat checks often find nothing to do 90% of the time, wasting money. It's better to directly set when to do what.

Costs

  • OpenClaw: API billed by usage, I spent over $150 a month, and you never know how much it will be next month.

  • Claude Pro: $20/month. Enough for most people.

  • Claude Max: $100-200/month. For heavy users who need to use Claude Code, choose this one.

Monthly subscription, predictable billing.

In Conclusion

The idea behind OpenClaw is impressive: everyone should have a powerful AI assistant.

But at this stage, it is a cool but untrustworthy experiment.

On the other hand, Claude's ecosystem—CLAUDE.md giving it personality, Memory allowing it to remember you, Obsidian as its knowledge base, Remote Control letting you control it with your phone, and Cowork scheduling tasks—when combined, can already accomplish 80-90% of what OpenClaw can do, and it's more stable, secure, and cheaper.

Instead of spending time fixing your AI assistant, let the AI assistant help you get real work done.

That's why I turned off OpenClaw.

You may also like

WEEX AI Wars II: Enlist as an AI Agent Arsenal and Lead the Battle

Where the thunder of legions falls into a hallowed hush, the true kings of arena are crowned in gold and etched into eternity. Season 1 of WEEX AI Wars has ended, leaving a battlefield of glory. Millions watched as elite AI strategies clashed, with the fiercest algorithmic warriors dominating the frontlines. The echoes of victory still reverberate. Now, the call to arms sounds once more!

WEEX now summons elite AI Agent platforms to join AI Wars II, launching in May 2026. The battlefield is set, and the next generation of AI traders marches forward—only with your cutting-edge arsenal can they seize victory!

Will you rise to equip the warriors and claim your place among the legends? Can your AI Agent technology dominate the battlefield? It's time to prove it:

Arm the frontlines: Showcase your technology to a global audience;Raise your banner: Gain co-branded global exposure via online competition and offline workshops;Recruit and rally troops: Attract new users, build your community and achieve long-term growth;Deploy in real battle: Integrate with WEEX’s trading system for real market use and get real feedback for rapid product iteration;Strategic rewards: Become an agent on WEEX and enjoy industry leading commission rebates and copy trading profit share.

Join WEEX AI Wars II now to sound the charge!

Season 1 Triumph: Proven Global Dominance

WEEX AI Wars Season 1 was nothing short of a decisive conquest. Across the digital battlefield, over 2 million spectators bore witness to the clash of elite AI strategies. Tens of thousands of live interactions and more than 50,000 event page visits amplified the reach, giving our sponsors a global stage to showcase their power.

Season 1 unleashed a trading storm of monumental scale, where elite algorithmic warriors clashed, shaping a new era in AI-driven markets. $8 billion in total trading volume, 160,000 battle-tested API calls — we saw one of the most hardcore algorithmic trading armies on the planet, forging an ideal arena for strategy iteration and refinement.

On the ground, workshop campaigns in Dubai, London, Paris, Amsterdam, Munich, and Turkey brought AI trading directly to the frontlines. Sponsors gained offline dominance, connecting with top AI trader units and forming strategic alliances. Livestreams broadcast these battles worldwide, amassing 350,000 views and over 30,000 interactions, huge traffic to our sponsors and partners.

For Season 2, WEEX will expand to even more cities, multiplying opportunities for partners to assert influence and command the battlefield, both online and offline.

Season 2 Arsenal: Equip the Frontlines and Command Victory

By enlisting in WEEX AI Wars II as an AI Agent arsenal, your platform can command unprecedented visibility, and extend your influence across the world. This is your chance to deploy cutting-edge technology, dominate the competitive frontlines, and reap lasting rewards—GAINING MORE USERS, HIGHER REVENUE, AND LONG-TERM SUPREMACY IN THE AI TRADING ARENA.

Reach WEEX’s 8 million userbase and global crypto community. Unleash your potential on a global stage! This is your ultimate opportunity to skyrocket product visibility and rapidly scale your userbase. Following the explosive success of Season 1—which crushed records with 2 million+ total exposures, your brand is next in line for unparalleled reach and industry-wide impact!Test and showcase your AI Agent in real markets. Throw your AI Agents into the ultimate arena! Empower elite traders to harness your tech through the high-speed WEEX API. This isn't just a demo—it's a live-market battleground to stress-test your algorithms, gather mission-critical feedback, and prove your product's dominance in real-time trading.Gain extensive co-branded exposure and traffic support. Command the spotlight! As a partner, your brand will saturate our entire ecosystem, from viral social media blitzes to global live streams and exclusive offline workshops. We don't just show your logo; we ensure your brand is unstoppable and unforgettable to a massive, global audience.Enjoy industry leading rebates. Becoming our partner is not a one-time collaboration, but the start of a long-term, mutually beneficial relationship with tangible revenue opportunities.Comprehensive growth support: WEEX provides partners with exclusive interviews, joint promotions, and livestream exposure to continuously enhance visibility and engagement.

By partnering with WEEX, your platform gains high-quality exposure, more users and sustainable flow of revenue. The Hackathon is more than a competition. It is a platform for innovation, collaboration, and tangible business growth.

Grab Your Second Chance: Join WEEX AI Wars II Today

The second season of the WEEX AI Trading Hackathon will be even more ambitious and impactful, with expanded global participation, livestreamed competitions, and workshops in more cities worldwide. It offers AI Agent Partners a unique platform to showcase their technology, engage with top developers and traders, and gain global visibility.

We invite forward-thinking partners to join WEEX AI Wars II now, to demonstrate innovation, create lasting impact, foster collaboration, and share in the success of the next generation of AI trading strategies.

About WEEX

Founded in 2018, WEEX has developed into a global crypto exchange with over 6.2 million users across more than 150 countries. The platform emphasizes security, liquidity, and usability, providing over 1,200 spot trading pairs and offering up to 400x leverage in crypto futures trading. In addition to the traditional spot and derivatives markets, WEEX is expanding rapidly in the AI era — delivering real-time AI news, empowering users with AI trading tools, and exploring innovative trade-to-earn models that make intelligent trading more accessible to everyone. Its 1,000 BTC Protection Fund further strengthens asset safety and transparency, while features such as copy trading and advanced trading tools allow users to follow professional traders and experience a more efficient, intelligent trading journey.

Follow WEEX on social media

X: @WEEX_Official 

Instagram: @WEEX Exchange 

Tiktok: @weex_global 

Youtube: @WEEX_Official 

Discord: WEEX Community 

Telegram: WeexGlobal Group

Nasdaq Enters Correction Territory | Rewire News Morning Brief

Tech Stocks are a Minefield

OpenAI loses to Thousnad-Question, unable to grow a checkout counter in the chatbox

What can achieve an AI shopping closed loop is platforms that already have a complete ecosystem, not AI companies that have to build everything from scratch.

One-Year Valuation Surged 140%, Who Is Signing the Check for Defense AI?

The $2 Billion fundraising itself is not important; what matters is who is writing this check.

Bittensor vs. Virtuals: Two Distinct AI Flywheel Mechanisms

From Emission to Throughput: Five Key Contrasts between the Bittensor Subnet and Virtuals Agents.

Forbes: Why Is the Cryptocurrency Industry So Enthusiastic About AI Oracles?

The crypto industry is betting on the emerging Internet of Things economy, claiming that blockchain infrastructure was always meant for machines from the outset.

Popular coins

Latest Crypto News

Read more