What is Lobster and how does it work?
mainLobster is a workflow runtime for OpenClaw designed for safe, deterministic, and stateful automation. Unlike standard LLM-driven workflows that re-plan every step (which is expensive and risky), Lobster executes multi-step pipelines that follow a defined logic.
Core Capabilities:
- Deterministic Execution: Runs a predefined pipeline rather than relying on LLM re-planning at every step.
- Human-in-the-loop Safety: Uses an
approveprimitive to create hard stops in the workflow, preventing irreversible side effects without explicit user consent. - Statefulness (Memory): Tracks cursors and checkpoints (e.g., "last processed email ID") so workflows can resume exactly where they left off.
- Efficiency: Reduces token usage by replacing multiple LLM tool-call cycles with a single call to a Lobster workflow that returns structured results.