I have given up using OpenClaw
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:
Remembering You — Knowing who you are, what you're doing, and what you like
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.
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:
Update Obsidian to version 1.12 or higher
Settings → General → Enable CLI
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-controlfeature: 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:
Install
claude-code-telegram:uv tool install git+https://github.com/RichardAtCT/claude-code-telegramCreate a bot with Telegram @BotFather to get a token
Set up your bot token, Telegram ID, and working directory
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

What Is an XRP Wallet? The Best Wallets to Store XRP (2026 Updated)
An XRP wallet lets you safely store, send, and receive XRP on the XRP Ledger. Learn what wallets support XRP and discover the best XRP wallets for beginners and long-term holders in 2026.

What are the Top AI Crypto Coins? Render vs. Akash: 5 Gems Solving the 2026 GPU Crisis
What are the best AI crypto coins for the 2026 cycle? Beyond the hype, we analyze top tokens like RNDR, AKT, and FET that provide real-world solutions to the global GPU shortage and the rise of autonomous agents.

What Is a Token in AI? What Is an AI Token + 3 Gems You Can't Miss in 2026
The era of AI hype has transitioned into an era of utility. As we move through Q2 2026, the market is no longer rewarding "narrative-only" projects. At WEEX Research, we are seeing a massive capital rotation into Decentralized Compute (DePIN) and Autonomous Agent coordination layers. This guide analyzes which AI tokens are capturing institutional liquidity and how to spot high-conviction setups in a maturing market.

Consumer-grade Crypto Global Survey: Users, Revenue, and Track Distribution

Prediction Markets Under Bias

Stolen: $290 million, Three Parties Refusing to Acknowledge, Who Should Foot the Bill for the KelpDAO Incident Resolution?

ASTEROID Pumped 10,000x in Three Days, Is Meme Season Back on Ethereum?

ChainCatcher Hong Kong Themed Forum Highlights: Decoding the Growth Engine Under the Integration of Crypto Assets and Smart Economy

Why can this institution still grow by 150% when the scale of leading crypto VCs has shrunk significantly?

Anthropic's $1 trillion, compared to DeepSeek's $100 billion

Geopolitical Risk Persists, Is Bitcoin Becoming a Key Barometer?

Annualized 11.5%, Wall Street Buzzing: Is MicroStrategy's STRC Bitcoin's Savior or Destroyer?

An Obscure Open Source AI Tool Alerted on Kelp DAO's $292 million Bug 12 Days Ago

Mixin has launched USTD-margined perpetual contracts, bringing derivative trading into the chat scene.
The privacy-focused crypto wallet Mixin announced today the launch of its U-based perpetual contract (a derivative priced in USDT). Unlike traditional exchanges, Mixin has taken a new approach by "liberating" derivative trading from isolated matching engines and embedding it into the instant messaging environment.
Users can directly open positions within the app with leverage of up to 200x, while sharing positions, discussing strategies, and copy trading within private communities. Trading, social interaction, and asset management are integrated into the same interface.
Based on its non-custodial architecture, Mixin has eliminated friction from the traditional onboarding process, allowing users to participate in perpetual contract trading without identity verification.
The trading process has been streamlined into five steps:
· Choose the trading asset
· Select long or short
· Input position size and leverage
· Confirm order details
· Confirm and open the position
The interface provides real-time visualization of price, position, and profit and loss (PnL), allowing users to complete trades without switching between multiple modules.
Mixin has directly integrated social features into the derivative trading environment. Users can create private trading communities and interact around real-time positions:
· End-to-end encrypted private groups supporting up to 1024 members
· End-to-end encrypted voice communication
· One-click position sharing
· One-click trade copying
On the execution side, Mixin aggregates liquidity from multiple sources and accesses decentralized protocol and external market liquidity through a unified trading interface.
By combining social interaction with trade execution, Mixin enables users to collaborate, share, and execute trading strategies instantly within the same environment.
Mixin has also introduced a referral incentive system based on trading behavior:
· Users can join with an invite code
· Up to 60% of trading fees as referral rewards
· Incentive mechanism designed for long-term, sustainable earnings
This model aims to drive user-driven network expansion and organic growth.
Mixin's derivative transactions are built on top of its existing self-custody wallet infrastructure, with core features including:
· Separation of transaction account and asset storage
· User full control over assets
· Platform does not custody user funds
· Built-in privacy mechanisms to reduce data exposure
The system aims to strike a balance between transaction efficiency, asset security, and privacy protection.
Against the background of perpetual contracts becoming a mainstream trading tool, Mixin is exploring a different development direction by lowering barriers, enhancing social and privacy attributes.
The platform does not only view transactions as execution actions but positions them as a networked activity: transactions have social attributes, strategies can be shared, and relationships between individuals also become part of the financial system.
Mixin's design is based on a user-initiated, user-controlled model. The platform neither custodies assets nor executes transactions on behalf of users.
This model aligns with a statement issued by the U.S. Securities and Exchange Commission (SEC) on April 13, 2026, titled "Staff Statement on Whether Partial User Interface Used in Preparing Cryptocurrency Securities Transactions May Require Broker-Dealer Registration."
The statement indicates that, under the premise where transactions are entirely initiated and controlled by users, non-custodial service providers that offer neutral interfaces may not need to register as broker-dealers or exchanges.
Mixin is a decentralized, self-custodial privacy wallet designed to provide secure and efficient digital asset management services.
Its core capabilities include:
· Aggregation: integrating multi-chain assets and routing between different transaction paths to simplify user operations
· High liquidity access: connecting to various liquidity sources, including decentralized protocols and external markets
· Decentralization: achieving full user control over assets without relying on custodial intermediaries
· Privacy protection: safeguarding assets and data through MPC, CryptoNote, and end-to-end encrypted communication
Mixin has been in operation for over 8 years, supporting over 40 blockchains and more than 10,000 assets, with a global user base exceeding 10 million and an on-chain self-custodied asset scale of over $1 billion.

$600 million stolen in 20 days, ushering in the era of AI hackers in the crypto world

Vitalik's 2026 Hong Kong Web3 Summit Speech: Ethereum's Ultimate Vision as the "World Computer" and Future Roadmap

On the same day Aave introduced rsETH, why did Spark decide to exit?

Full Post-Mortem of the KelpDAO Incident: Why Did Aave, Which Was Not Compromised, End Up in Crisis Situation?
What Is an XRP Wallet? The Best Wallets to Store XRP (2026 Updated)
An XRP wallet lets you safely store, send, and receive XRP on the XRP Ledger. Learn what wallets support XRP and discover the best XRP wallets for beginners and long-term holders in 2026.
What are the Top AI Crypto Coins? Render vs. Akash: 5 Gems Solving the 2026 GPU Crisis
What are the best AI crypto coins for the 2026 cycle? Beyond the hype, we analyze top tokens like RNDR, AKT, and FET that provide real-world solutions to the global GPU shortage and the rise of autonomous agents.
What Is a Token in AI? What Is an AI Token + 3 Gems You Can't Miss in 2026
The era of AI hype has transitioned into an era of utility. As we move through Q2 2026, the market is no longer rewarding "narrative-only" projects. At WEEX Research, we are seeing a massive capital rotation into Decentralized Compute (DePIN) and Autonomous Agent coordination layers. This guide analyzes which AI tokens are capturing institutional liquidity and how to spot high-conviction setups in a maturing market.



