When I decided to turn OpenClaw into a SaaS product

Reddit r/openclaw Products

Summary

The author describes challenges using OpenClaw to automate workflows, noting that as data volume grew, context drift occurred and long-running tasks caused polling issues, leading to a decision to turn the system into a SaaS product with OpenClaw as the entry point.

# Goals * Use OpenClaw to automate the company's operational workflows. * Humans should only need to send a single instruction. # Version 1 * Python scripts are responsible for calling APIs. * OpenClaw is responsible for reasoning and executing the workflow by running those scripts. # Problem As business data volume increased, the context became too large. OpenClaw's execution began to drift away from the intended workflow. # Version 2 * Python scripts are responsible for both API calls and reasoning. * OpenClaw is only responsible for executing scripts. # Problem The scripts require about three hours to complete. OpenClaw has to continuously poll for progress, which creates several issues: * Tool timeouts * The system may terminate processes that generate excessive polling traffic # Attempts I tried using background tasks and heartbeat mechanisms, but neither approach was able to solve the problem. # Reflections I wanted the workflow to live in a document so that as the organization evolves, I could simply modify the text rather than rewrite code. In practice, however, OpenClaw is clearly not capable of reliably handling a task that runs for three hours. Perhaps I shouldn't expect OpenClaw to execute such a complex workflow from scratch. Instead, I can convert the workflow document into a scheduler script, and OpenClaw can execute that script successfully. At that point, the system becomes a SaaS product, and OpenClaw serves as the entry point to that SaaS.
Original Article

Similar Articles

My experience launching a startup with Openclaw

Reddit r/openclaw

The author details their experience launching Sidekick AI, a product that simplifies OpenClaw for small business owners by managing technical aspects and offering pre-configured skills, while discussing client usage, business model challenges, and technical strategies.

So what happened with OpenClaw?

Reddit r/LocalLLaMA

The article analyzes the rapid rise and fall of OpenClaw, questioning whether its popularity was genuine or hyped, and discusses its usage-based pricing model.