ClawPy: Minimal Single-File Python Implementation of OpenClaw with Experience Memory

What This Is
ClawPy is a minimal, single-file Python implementation of OpenClaw's autonomous task execution architecture. It runs directly in the terminal without heavy abstractions, focusing on raw prompt engineering, state machine logic, and subprocess execution.
Key Implementation Details
The script mirrors OpenClaw's core mechanics:
- Recursive Task Tree: Maintains a
tasks.txtstate file that tracks incomplete tasks. The system reads this file, decides whether to execute tasks directly or decompose them (up to 4 levels deep), and automatically bubbles up "Completed" status. - Code Interpreter & Self-Healing: Uses custom XML tags (
<python>) to write and run scripts locally. When execution hits a traceback, it catches thestderr, forces an<error>reflection tag to analyze the bug, and rewrites the code until it achieves Return Code 0. - Experience Memory System: Every time the agent successfully executes a script (explained via
<msg>tags) or reflects on a crash (<error>), it appends that insight to anexperience.txtfile. When booted up again, the system injects truncated history of past mistakes and successes into the system prompt, preventing repetition of syntax or logical errors.
Practical Use Cases
The developer built this for two main audiences:
- People who want to learn exactly how the autonomous loop works under the hood without diving into a massive codebase
- Data analysts and quants who want a lightweight agent to write and fix Pandas/financial scripts in their local environment
Important Security Note: The tool runs generated Python code directly on your machine, so the developer recommends running it in a safe environment or virtual machine.
The project is available on GitHub at https://github.com/EricChanBank/clawPy.git.
📖 Read the full source: r/openclaw
👀 See Also

AgentCrawl Update Adds Critical Crawler Features and Enhancements
AgentCrawl's latest update introduces features like robots.txt compliance, disk caching, resumable crawls, and structured metadata extraction, turning it into a more robust and production-ready tool.

Peek Plugin for Claude Code: Automatic Steering Through Session Memory
Peek is a Claude Code plugin that automatically captures and injects user corrections and preferences to steer the AI assistant. It uses fusion search with embeddings, BM25, time decay, and metadata filters to provide relevant context without manual prompting.

QCAI App Provides Mobile Control Center for OpenClaw Ecosystem
Academic research team releases QCAI app for iOS and Android, built with AI-assisted development, offering dashboard monitoring, gateway chat, and secure VPN access to OpenClaw tools.

Building an Autonomous Research Agent with C# and Local LLMs
A C# research agent automates URL processing with local LLMs using Ollama and llama3.1:8b, generating structured markdown reports from web searches.