Before OpenClaw: How Splox Built Autonomous AI Agents for Two Years in Stealth

A developer surfaced on Hacker News with Splox, autonomous AI agents built for two years before OpenClaw existed. We analyze the architecture and implications for the AI agent ecosystem.

A developer surfaced on Hacker News this week claiming two years of development on autonomous AI agents that predate the OpenClaw framework entirely. The project, Splox, offers three distinct production agents: an autonomous crypto trader, an omnichannel tool connector, and a DevOps automation system. Unlike the current wave of OpenClaw-based tools that require you to manage Docker containers, API keys, and self-hosted infrastructure, Splox operates as a fully managed service with 1-click OAuth and no local setup. The timing proves that autonomous AI agents were already solving real production problems before the current framework hype cycle began, and the architectural choices made during those two years of stealth development reveal different priorities than what you see in modern open-source implementations. This article will delve into the unique aspects of Splox, comparing its approach to the OpenClaw ecosystem and extracting valuable lessons for future AI agent development.

What Just Happened: Splox and Early Autonomous AI Agents

The Hacker News post titled “Show HN: I’ve been building autonomous AI agents for 2 years – before OpenClaw” immediately gained traction among technical audiences. The developer behind Splox demonstrated three working agents: an Autonomous Trader connected to Hyperliquid for 24/7 market execution, an Omni Tool Agent integrating 10,000+ services via MCP, and a Coder agent managing Kubernetes clusters and local development environments. Each agent runs persistently, reacting to real-time events through a built-in Event Hub rather than waiting for human prompts. The post claims active users already automate social media management, Telegram bot operations, and customer support workflows without writing code. This represents a mature product launch rather than an experimental prototype, distinguishing it from the proof-of-concept agents typically shared in AI developer communities. The implications of this stealth development on the broader AI agent landscape are significant, particularly for understanding divergent architectural philosophies.

Who Built Splox and Why Surface These Autonomous AI Agents Now

The post suggests either a solo developer or small team operating independently during the pre-OpenClaw era. They built through 2023 and 2024 when “AI agent” meant custom Python scripts, brittle API wrappers, and manual prompt engineering without standardized frameworks. By launching now, they contrast their event-driven, production-hardened architecture against the experimental tooling currently dominating the ecosystem. The developer likely waited for market education to catch up with their technical implementation. When you build autonomous AI agents before the hype cycle, you solve different problems: infrastructure persistence, error recovery, and graceful degradation rather than prompt optimization. The timing allows them to demonstrate two years of uptime data, user retention, and real transaction volume that newer OpenClaw implementations cannot yet match. This strategic timing positions Splox as a mature alternative to the often complex setup associated with other agent frameworks.

The Three-Agent Architecture Powering Splox Autonomous AI Agents

Splox deploys three distinct agent types targeting specific workflow categories. The Autonomous Trader handles cryptocurrency markets through Hyperliquid integration, executing positions and managing risk parameters continuously. The Omni Tool Agent abstracts email, Google Sheets, Notion, Slack, Telegram, and 10,000 other services into a unified interface where you describe tasks in plain English. The Coder agent connects to local machines, remote servers, and Kubernetes clusters to read codebases, deploy infrastructure, and manage DevOps pipelines. Each agent maintains persistent state, surviving server restarts and network interruptions without losing context. This architecture separates Splox from simple LLM wrappers that treat each interaction as stateless. Users report running these agents for months without manual intervention, handling everything from daily reporting to continuous deployment workflows. This robust design highlights a focus on reliability and long-term operation, critical for true autonomy.

How the Autonomous Trader Executes 24/7 Market Strategies

The trading agent demonstrates what happens when you combine persistent execution with financial API access. It connects directly to Hyperliquid using secure OAuth, monitoring price action and order book depth continuously. You configure strategies using natural language descriptions like “maintain a delta-neutral position with 2x leverage, rebalancing when deviation exceeds 5%.” The agent translates this into live market orders, stop-losses, and position adjustments without waking you at 3 AM. It runs indefinitely, handling API rate limits, connection drops, and exchange maintenance windows through built-in retry logic and circuit breakers. Risk management happens automatically: the agent calculates exposure across portfolios and can halt trading when volatility spikes or balance thresholds trigger. This requires millisecond-level event processing and state management that most OpenClaw implementations lack without extensive custom development. The ability to operate autonomously in a volatile financial environment showcases the agent’s advanced capabilities.

Omni Tool Agent: Connecting 10,000 Services via MCP for Autonomous AI Agents

The Omni Tool Agent claims integration with over 10,000 services through the Model Context Protocol (MCP), a standard for AI tool interoperability. You describe complex multi-step workflows in conversational language: “Extract yesterday’s sales data from Stripe, update the Google Sheet, post a summary to Slack, and email the report to the team.” The agent parses this intent, authenticates via 1-click OAuth to each service, and executes the sequence autonomously. MCP standardizes tool discovery and invocation, meaning Splox did not write 10,000 custom API adapters. Instead, they implemented the protocol once and inherited compatibility with any MCP-compliant service. This abstraction removes the authentication friction that typically prevents non-technical users from deploying automation. The agent handles token refresh, permission scopes, and error responses without exposing API keys to end users. This approach significantly simplifies the integration process, making powerful automation accessible to a broader audience.

The Coder Agent: Infrastructure Management for Autonomous AI Agents

For technical users, the Coder agent offers end-to-end infrastructure management across heterogeneous environments. It connects via SSH to local development machines, cloud VPS instances, and Kubernetes clusters, maintaining context across sessions that may span hours or days. You can instruct it to “refactor the authentication module in the API service, run the test suite, build a new Docker image, and deploy to staging if tests pass.” The agent reads existing codebases, understands project structure, and executes shell commands with the awareness of previous operations. Unlike OpenClaw-based coding assistants that often require manual file-by-file approval or copy-pasting, Splox claims fully autonomous deployment capabilities. The system maintains a history of infrastructure states, enabling rollbacks when deployments fail or configurations drift. This requires secure credential management and sandboxing that early AI coding tools lacked. The Coder agent pushes the boundaries of autonomous systems into the critical realm of software development and operations.

Event Hub: Enabling Truly Autonomous AI Agents Through Real-Time Triggers

True autonomy requires reacting to events, not just executing commands when prompted. Splox implements an Event Hub where agents subscribe to webhooks, scheduled cron triggers, and silence detection (alerting when expected events fail to occur). This event-driven architecture separates autonomous AI agents from interactive chatbots. An agent monitoring a Kubernetes cluster can trigger a rollback when error rates spike beyond thresholds, or the trading agent can adjust positions when volatility indicators cross predefined lines. The Event Hub handles event queuing, deduplication, and retry logic, ensuring agents process every trigger exactly once even during network partitions. You configure triggers through a visual interface or API calls:

{
  "trigger_type": "webhook",
  "endpoint": "/trading/volatility_alert",
  "agent": "autonomous_trader",
  "action": "reduce_position_size",
  "condition": "vix > 30"
}

This system is fundamental to Splox’s ability to provide continuous, self-managing operations, a key differentiator from many contemporary agent implementations. The Event Hub’s robust design contributes significantly to the overall reliability and responsiveness of Splox agents, allowing them to adapt to changing conditions without human intervention.

Visual Workflows vs Code: Building Autonomous AI Agents Two Ways

Splox offers a visual graph-based workflow builder for complex multi-step pipelines, contrasting with OpenClaw’s primarily code-first approach. Users construct directed acyclic graphs representing decision trees, data transformations, and conditional tool invocations through a drag-and-drop interface. This lowers the barrier for non-programmers while offering depth for power users who need branching logic and error handling. The visual representation makes debugging easier: you can see exactly which node failed in a 20-step workflow and inspect the data state at that point. OpenClaw requires you to write Python or JavaScript to define similar behavior, offering more flexibility but demanding software engineering skills. Splox generates these graphs behind the scenes for simple natural language requests, but exposes the graph editor for refinement. This dual-mode approach acknowledges that autonomous AI agents serve both technical operators and business users. It streamlines the creation and management of complex automation, making it accessible to a wider range of users.

Solving Authentication for Production Autonomous AI Agents

Managing LLM API keys, service credentials, and OAuth tokens creates friction that kills adoption in production environments. Splox eliminates LLM key management entirely, handling model inference and rate limiting on their backend infrastructure. For service connections, they implement 1-click OAuth flows that generate and store tokens securely without exposing them to users. This means you never copy-paste API keys into environment variables or configuration files. The security model shifts from user-managed secrets to platform-managed authentication with scoped permissions. When you connect Gmail, Splox requests only the OAuth scopes needed for the specific workflow, stores the refresh token encrypted, and handles rotation automatically. This reduces the attack surface and setup time from hours to minutes, addressing the primary barrier that prevents non-technical teams from deploying autonomous AI agents at scale. This focus on seamless and secure authentication is a critical enabler for widespread adoption.

MCP Protocol: The Integration Standard for Autonomous AI Agents

The Model Context Protocol serves as the backbone of Splox’s tool integration strategy, representing a bet on standardization that predated OpenClaw’s adoption of similar patterns. MCP creates a client-server architecture where tools expose capabilities through standardized schemas, allowing agents to discover and invoke functions dynamically. Splox’s early adoption of MCP enabled them to integrate thousands of services without maintaining custom adapters for each API. When a new service adds MCP support, Splox agents can immediately utilize it without code changes. This contrasts with early OpenClaw versions that required manual tool registration and Python wrapper creation for each integration. The protocol handles type serialization, error formatting, and capability negotiation. As the ecosystem standardizes on MCP, Splox’s two-year head start in protocol implementation gives them a compatibility advantage over newer frameworks still building out their integration libraries. This foresight in adopting a standardized protocol has given Splox a significant edge in scalability and interoperability.

Two Years of Stealth: Developing Autonomous AI Agents Before the Hype

Building autonomous AI agents before 2024 meant operating without frameworks, community best practices, or shared libraries. The Splox team solved fundamental problems that now have standard solutions: maintaining agent state across server crashes, handling API rate limits gracefully, and preventing runaway automation loops. They developed custom orchestration layers, error recovery systems, and monitoring dashboards during a period when the industry focused primarily on chat interfaces rather than persistent automation. This required building infrastructure for queue management, dead letter handling, and state persistence that modern OpenClaw users take for granted or purchase as managed services. The stealth period allowed iteration on safety mechanisms: ensuring the trading agent cannot exceed loss limits, or the Coder agent cannot delete production databases. These safety layers emerged from real failures and edge cases encountered during long-running production deployments. This extended period of quiet development allowed for a level of robustness and refinement rarely seen in early-stage AI projects.

Why Persistence Defines Successful Autonomous AI Agents

The technical challenge Splox solved isn’t making LLMs generate better code or write more convincing emails; it is making them reliable over weeks and months of continuous operation. Autonomous AI agents that run 24/7 must survive network interruptions, API version changes, and unexpected data formats. Splox built infrastructure for indefinite execution: agents resume after server restarts, maintain queue states through database persistence, and handle idempotency for operations that might retry. Most current OpenClaw deployments run ephemerally, executing tasks when you prompt them and shutting down after completion. Persistent execution requires databases, message queues, health monitoring, and failure alerting that add significant complexity. Splox handles this infrastructure opacity, allowing you to deploy an agent that runs for months without managing Redis clusters or PostgreSQL instances yourself. This inherent persistence is a cornerstone of Splox’s design, making it suitable for mission-critical automation where continuous operation is paramount.

Splox vs OpenClaw: Comparing Frameworks for Autonomous AI Agents

FeatureSploxOpenClaw
Deployment ModelManaged SaaS with zero setupSelf-hosted requiring Docker
Authentication1-click OAuth, no keys exposedManual API key configuration
Tool Integration10,000+ via MCP protocolCommunity registry, manual adds
Execution ModelEvent-driven with persistencePrimarily prompt-driven
Target UserEnd users, no-code operatorsDevelopers, software engineers
InfrastructureFully managed backendRequires user-managed databases
LLM HandlingPlatform-managed modelsBring-your-own-key required
CustomizationVisual workflows, natural languageCode-first, deep programmatic control
ScalabilityManaged by platformUser-managed scaling
Error RecoveryBuilt-in, automatedRequires custom implementation
Data SovereigntyPlatform-dependentUser-controlled (self-hosted)

This comparison reveals Splox as a finished product versus OpenClaw as a flexible framework. OpenClaw offers deep customization and data sovereignty but demands DevOps expertise. Splox offers immediate utility with less architectural control. Your choice depends on whether you need to customize the agent’s reasoning process or simply deploy automation quickly without infrastructure overhead. Splox’s managed approach simplifies many of the operational challenges that OpenClaw users face, making it an attractive option for those prioritizing ease of use and rapid deployment.

Lessons for Builders of Autonomous AI Agents Today

Splox demonstrates that autonomous AI agents work best when infrastructure disappears from user concern. For OpenClaw developers, this suggests focusing on deployment simplicity and managed authentication rather than adding features. The event-driven model Splox uses should inform how you architect agents: build for triggers and reactions, not just chat interfaces. Consider implementing persistent state management using databases or object storage rather than assuming ephemeral execution. The two-year head start Splox had means they encountered and solved failure modes you will discover only after shipping to production: duplicate event processing, cascading failures when upstream APIs change, and silent data corruption in long-running workflows. Study their emphasis on safety limits and circuit breakers before deploying agents to production environments. These lessons are vital for any developer aiming to build robust and reliable autonomous AI agents, irrespective of the framework used.

Fragmentation Risks in the Autonomous AI Agent Ecosystem

With Splox using MCP, OpenClaw using its own registry system, and other frameworks emerging with proprietary integration methods, the agent tooling space faces serious fragmentation. You risk vendor lock-in when workflows depend on specific authentication methods or event schemas that do not transfer between platforms. Splox’s approach of abstracting tools behind a unified interface offers a model for interoperability, but their managed service nature creates its own form of lock-in. Builders should prioritize protocols like MCP over proprietary integrations to maintain portability. The OpenClaw tool registry fragmentation problem we covered previously becomes more acute as commercial platforms like Splox compete with open frameworks. Watch whether Splox open-sources their Event Hub or MCP adapters, or whether they remain proprietary advantages. The long-term success of the AI agent ecosystem may depend on the emergence of broadly adopted open standards for interoperability.

The Future of Splox and Independent Autonomous AI Agent Development

Splox enters a market now educated about AI agents but frustrated by setup complexity and infrastructure demands. Their mature platform could capture users who tried OpenClaw but bounced on Docker configuration, API key management, or self-hosting requirements. For the broader ecosystem, Splox proves that autonomous AI agents predate the current hype cycle and that independent development produces different architectural choices than community-driven frameworks. Watch whether Splox open-sources components to compete with OpenClaw’s ecosystem, or whether they double down on proprietary managed services. The emergence of production-ready AI agents leaving the lab suggests the market wants solutions that work immediately rather than frameworks requiring assembly. Splox’s two-year technical lead gives them a window to establish market share before OpenClaw implementations mature. This independent trajectory offers a compelling alternative to the more collaborative, open-source development model.

Frequently Asked Questions

Did Splox really exist before OpenClaw?

Yes. The Hacker News post indicates two years of development predating OpenClaw’s widespread adoption, placing initial development in early 2024 or late 2023. The architecture reflects pre-framework thinking with custom solutions for persistence and tool integration rather than reliance on community patterns. The developer specifically mentions building before “the hype,” referring to the surge of attention OpenClaw received in late 2024 and early 2025. The production maturity demonstrated, including active users and 24/7 trading operations, supports claims of extended development time rather than a recent prototype, showcasing a deliberate, long-term development effort.

How does Splox differ from OpenClaw technically?

Splox operates as a managed service with built-in authentication handling and event-driven persistence. OpenClaw functions primarily as a self-hosted framework requiring manual configuration of LLM keys, Docker containers, and tool registries. Splox targets end-users with no-code interfaces while OpenClaw serves developers building custom implementations. The technical stack differs in deployment model: Splox handles infrastructure, scaling, and security centrally, while OpenClaw puts these responsibilities on you. Both can build autonomous AI agents, but Splox optimizes for immediate deployment while OpenClaw optimizes for customization and control, catering to different user needs and technical capabilities.

Can Splox agents run indefinitely without human input?

Yes. The Event Hub architecture allows agents to subscribe to webhooks, scheduled triggers, and silence detection, enabling fully autonomous operation. The trading agent specifically runs 24/7 monitoring markets. This requires robust state management and error recovery systems that distinguish it from chat-based assistants requiring human prompts for each action. The system includes safeguards against runaway behavior, such as spending limits for the trader and approval workflows for destructive infrastructure changes. Agents persist their state to databases, allowing them to resume exactly where they left off after server maintenance or updates, ensuring true continuous operation.

What is MCP and why does Splox use it?

MCP stands for Model Context Protocol, a standard for AI agent tool integration. Splox uses MCP to connect with 10,000+ services without writing custom API adapters for each. The protocol standardizes tool discovery and invocation, allowing users to integrate email, spreadsheets, messaging platforms, and databases through a unified interface rather than managing separate API credentials and endpoints. MCP handles authentication flows, type checking, and error formatting consistently across services. This lets Splox add new tool integrations by simply enabling the MCP server for that service, rather than writing and maintaining custom Python code for each API, which drastically reduces development and maintenance overhead.

Should OpenClaw developers switch to Splox?

Not necessarily. OpenClaw offers flexibility for custom implementations and local execution that Splox’s managed service cannot match. Developers building highly specialized agents or requiring data sovereignty should stick with OpenClaw. However, builders seeking immediate deployment without infrastructure overhead should evaluate Splox for production use cases, particularly those involving 24/7 automation or non-technical end users. Splox complements OpenClaw by proving what mature autonomous AI agents look like; you can use Splox for immediate needs while contributing to or customizing OpenClaw for specific requirements that demand open-source flexibility and control over the underlying infrastructure and code.

Conclusion

A developer surfaced on Hacker News with Splox, autonomous AI agents built for two years before OpenClaw existed. We analyze the architecture and implications for the AI agent ecosystem.