OpenClaw as a developer: A two-week experiment with isolated AI coding agents
A developer at an unnamed company built an autonomous "AI developer" on OpenClaw and ran it for two weeks in Slack, competing with Claude Tag. The setup runs on a 16 GB VPS, emphasizes security, and delegates all coding to external agents like Claude Code.
Key Setup Details
The AI operates in a heavily isolated environment:
- Configuration and context files are read-only, disabling self-learning.
- Internet access is restricted to an allowlist of domains.
- No access to deployed environments.
- It has its own GitHub and Linear accounts.
- Full codebase access, but runs in a fully mocked mode.
- Free to install NPM and Python dependencies as needed.
The workflow follows a spec → plan → execution pattern, same as the company's internal process. It always works in worktrees and dedicated feature branches, manually tests with dev servers (exposed on VPN for team review), and then opens PRs.
Open Source Components
The developer open-sourced the custom skill and CLI tool used to control the agent, and runs a personal instance for side projects. At work, the coding agent is Claude Code; personally, it's Codex.
The Author's Concern
After 30+ FTE days invested since February, the author heard Peter Steinberger say he reshaped OpenClaw into his own harness for building everything, including OpenClaw itself. That made him question whether disabling self-learning and delegating coding goes against OpenClaw's direction. If OpenClaw is moving toward coding on its own, is his project a dead end?
📖 Read the full source: r/openclaw
👀 See Also

Claude Code Enables New Grad to Build Real-Time Multiplayer Game Solo
A new grad with no formal SWE experience used Claude Code to build imageclash.net, a real-time multiplayer party game with serverless GPU autoscaling, mobile-first controller UX, and R2-based image lifecycle management.

Qwen3-VL-32B-Instruct excels at multimodal flashcard grading
A developer tested Qwen3-VL-32B-Instruct for grading image-occluded Anki flashcards and found it outperformed models like Gemini 2.5 Flash, GPT 5 Nano/Mini, XAI 4.1 Fast, GLM, and Mistral models, with only ChatGPT 5.2 and Gemini 3/3.1/Claude 4+ coming close.

SkiTomorrow.ai: A Ski Trip Decision Engine Built with Claude Code
SkiTomorrow.ai is a free web tool that scores 234 ski resorts worldwide based on live snow forecasts, travel distance, and cost, then provides personalized rankings. The developer built it entirely using Claude Code and shared specific workflow insights.

OpenClaw Architecture: Building a Persistent AI-Driven Distribution Engine
OpenClaw's architecture, featuring a daemon-driven approach with small composable tools, declarative recipes, and a memory layer, enables continuous and efficient automation workflows.