lobster-jobsTransform OpenClaw cron jobs into Lobster workflows. Analyze, inspect, and validate job migrations. Use when converting automations to deterministic, approval-gated workflows with resume capabilities.
Install via ClawdBot CLI:
clawdbot install kesslerio/lobster-jobsTransform OpenClaw cron jobs into Lobster workflows with approval gates and resumable execution.
OpenClaw cron jobs are either:
Lobster workflows offer:
This skill helps analyze existing cron jobs and transform them into Lobster workflows.
lobster-jobs listList all cron jobs with their Lobster readiness score.
Output categories:
lobster-jobs inspect Inspect a specific cron job with detailed migration assessment.
Shows:
lobster-jobs validate Validate a Lobster workflow YAML file against schema.
Checks:
lobster-jobs convert Transform a cron job into a Lobster workflow.
lobster-jobs convert 17fe68ca
lobster-jobs convert 17fe68ca --output-dir ~/workflows
lobster-jobs convert 17fe68ca --force # Overwrite existing
Generates:
.lobster workflow file in ~/.lobster/workflows/Options:
--output-dir, -o: Custom output directory--force, -f: Overwrite existing workflow--keep-on-error: Keep file even if validation failslobster-jobs new Create a new Lobster workflow from scratch using templates.
lobster-jobs new my-workflow
lobster-jobs new my-workflow --template with-approval
lobster-jobs new my-workflow --template stateful
Templates:
simple-shell: Basic command executionwith-approval: Approval gate workflowstateful: Workflow with cursor/state tracking# Add to PATH
export PATH="$PATH:/home/art/niemand/skills/lobster-jobs/bin"
# Or create symlink
ln -s /home/art/niemand/skills/lobster-jobs/bin/lobster-jobs ~/.local/bin/
# See all your cron jobs and their migration status
lobster-jobs list
# Inspect a specific job
lobster-jobs inspect 17fe68ca
# Convert a job to Lobster workflow
lobster-jobs convert 17fe68ca
# Create a new workflow from template
lobster-jobs new my-workflow --template with-approval
# Validate a workflow file
lobster-jobs validate ~/.lobster/workflows/my-workflow.lobster
name: my-workflow
description: Optional description
steps:
- id: fetch_data
command: some-cli fetch --json
- id: process
command: some-cli process
stdin: $fetch_data.stdout
- id: approve_send
command: approve --prompt "Send notification?"
approval: required
- id: send
command: message.send --channel telegram --text "Done!"
condition: $approve_send.approved
Keep cron as scheduler, change payload to call Lobster:
{
"payload": {
"kind": "systemEvent",
"text": "lobster run ~/.lobster/workflows/my-workflow.lobster"
}
}
Benefits:
For jobs needing both deterministic steps and LLM reasoning:
steps:
- id: gather
command: gh issue list --json title,body
- id: triage
command: clawd.invoke
prompt: "Classify these issues by urgency"
- id: notify
command: telegram-send
The workflow is deterministic; the LLM is a black-box step.
| Issue | Handling |
|-------|----------|
| Idempotency | Workflows track step completion; restart-safe |
| Approval timeouts | Configurable timeout with default action |
| Secret handling | Environment variables or 1Password refs |
| Partial failures | convert validates before writing |
Generated Mar 1, 2026
Convert cron jobs that manage CI/CD tasks, like nightly builds or deployment scripts, into Lobster workflows. This ensures deterministic execution with approval gates for production deployments, reducing errors and enabling resumable state tracking for long-running processes.
Migrate scheduled data extraction, transformation, and loading jobs from OpenClaw to Lobster workflows. This allows for approval steps before critical data updates, handles partial failures gracefully, and maintains stateful execution for incremental processing.
Transform cron-based system health checks and alerting scripts into Lobster workflows. This introduces approval gates for automated remediation actions, ensures idempotent restarts, and provides deterministic validation of monitoring steps across servers.
Convert scheduled social media posts or email campaigns from OpenClaw cron jobs to Lobster workflows. This adds approval gates for content review, enables resumable execution if interrupted, and validates workflow steps to prevent errors in campaign delivery.
Migrate cron jobs that generate financial reports or compliance audits into Lobster workflows. This ensures deterministic execution with mandatory approvals for sensitive data handling, tracks state for multi-step processes, and validates workflows to meet regulatory standards.
Offer migration consulting to help businesses transition their OpenClaw cron jobs to Lobster workflows. Provide analysis, conversion, and validation services, with revenue from hourly rates or project-based fees for enterprise clients.
Develop a SaaS tool that automates the analysis and conversion of cron jobs into Lobster workflows. Charge subscription fees for access to advanced features like bulk migration, team collaboration, and integration with popular DevOps tools.
Create training programs and certification courses for teams learning to use Lobster workflows. Generate revenue from course sales, workshops, and certification exams focused on workflow migration best practices and advanced usage.
💬 Integration Tip
Use the wrapper approach to keep cron as the scheduler and change payloads to call Lobster workflows, allowing for easy rollback and incremental migration without disrupting existing systems.
A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands.
Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications.
Advanced desktop automation with mouse, keyboard, and screen control
Manage n8n workflows and automations via API. Use when working with n8n workflows, executions, or automation tasks - listing workflows, activating/deactivating, checking execution status, manually triggering workflows, or debugging automation issues.
Design and implement automation workflows to save time and scale operations as a solopreneur. Use when identifying repetitive tasks to automate, building workflows across tools, setting up triggers and actions, or optimizing existing automations. Covers automation opportunity identification, workflow design, tool selection (Zapier, Make, n8n), testing, and maintenance. Trigger on "automate", "automation", "workflow automation", "save time", "reduce manual work", "automate my business", "no-code automation".
Browser automation via Playwright MCP server. Navigate websites, click elements, fill forms, extract data, take screenshots, and perform full browser automation workflows.