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

EsoLang-Bench: A Coding Benchmark Using Esoteric Languages to Test LLM Reasoning
Researchers created EsoLang-Bench, a coding benchmark using esoteric programming languages like Brainfuck and Whitespace to test whether LLMs can reason or just pattern-match. The best result across GPT-5.2, O4-mini, Gemini, Qwen, and Kimi was 11.2%.

Toolport: A Local Gateway to Manage MCP Servers Once Across All Apps
Toolport is a free, open-source desktop app and local gateway that centralizes MCP server configs, stores API keys in OS keychain, and adds safety layers for AI agents.

ViralCanvas.ai provides persistent context workspace for Claude models including Sonnet 4.5
ViralCanvas.ai is a visual workspace that sits on top of Claude's models, offering access to Sonnet 4.5, Sonnet 4.6, Opus 4.5, and Opus 4.6 with persistent context attachment. The tool addresses context degradation issues in long conversations by keeping connected documents actively weighted on every prompt.

CAP: Claude Code Statusline Plugin That Installs with /plugin install
CAP (Claude Allowance Pulse) is a statusline plugin for Claude Code that installs via /plugin install without npm, curl, or jq. It displays model usage, session and weekly limits, context window usage, and session cost in the terminal.