ClawCut: A Python Proxy That Makes Small Local LLMs Usable with OpenClaw

What ClawCut Does
ClawCut is a Python Flask application that acts as a proxy between local LLM servers (like MLX or Ollama) and the OpenClaw framework. It was created to solve specific technical problems that make small local models (7B/14B) difficult to use as practical assistants with OpenClaw.
Key Problems Solved
- Context poisoning: Small models lose track of tool usage when they see their own old tool calls in chat history
- Infinite loops: Models get stuck repeating patterns instead of executing commands
- Output issues: Models output bash code as plain text in chat or choke on their own history after multiple commands
- Cron job failures: Scheduled background jobs generate responses that disappear because no active chat window is open
- LLM artifacts: Empty markdown blocks, internal XML tags, and dangling backticks clutter outputs
- Media upload refusal: Models sometimes refuse to upload generated files
How It Works
Dynamic amnesia for tool calls: During normal chat, history is preserved. When the proxy detects the model trying to use a system tool, it temporarily cuts off old chat history, giving the model "tunnel vision" to execute shell commands cleanly without loops or hallucinations.
Universal auto-delivery for cron jobs: The proxy monitors the model's stream and intercepts clean text responses at the end of thought processes. It then forces delivery via automatic tool calls to WhatsApp, Telegram, or Signal, making cron jobs proactively report to your phone.
Artifact filtering: Empty markdown blocks, internal XML tags, and dangling backticks are filtered out before reaching the frontend.
Tool-name manipulation: Simple stream manipulations bypass models' refusal to upload generated media files.
Tested Setup
- Raspberry Pi 5 (8GB) with OpenClaw 3.8
- Mac mini M4 Pro 24GB with MLX-LLM running Qwen2.5-Coder-7B-Instruct-4bit
- Windows machine with Ollama and Qwen 2.5 Coder 14B model (planned for ClawCut integration)
Limitations
ClawCut doesn't turn 7B models into GPT-4. Highly complex, multi-step logic chains remain challenging for small models. The proxy specifically addresses technical stumbling blocks that previously made them nearly unusable as everyday assistants.
📖 Read the full source: r/openclaw
👀 See Also

Master-plan: A Minimal Terminal Task System Built for Claude Code Users
A developer has built master-plan, a Claude Code plugin with four slash commands that manages tasks directly in the terminal using a markdown file and git. The system captures ideas mid-session without context switching and auto-detects test runners.

Homelab AI Sentinel: Self-Hosted Monitoring Assistant with LLM Integration
Homelab AI Sentinel is a self-hosted tool that processes monitoring webhooks through an LLM to generate plain-English diagnoses. It supports 11 alert sources, 10 notification platforms, and works with any OpenAI-compatible endpoint including Ollama and LM Studio for local inference.
LTM: A JSON Protocol for Portable Agent Memory Across Models and Machines
LTM is a JSON protocol (Core Memory Packet) plus CLI/server for persisting agent context—dead ends, constraints, next steps—across models, editors, and machines. Packets are 2-5 KB, redact secrets, and support MCP.

Structured Reasoning Template Improves AI Code Review Accuracy
A Reddit user shares a structured reasoning template adapted from Meta research that forces AI models to complete specific analytical steps before generating code reviews, improving accuracy by 5-12 percentage points according to arXiv:2603.01896.