Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
agentplot avatar

Lobster

  • 1 installs
  • Updated June 1, 2026
  • agentplot/agentplot-kit

lobster is a Claude Code skill for creating, running, and organizing Lobster workflow YAML files on the OpenClaw workflow engine.

About

A Claude Code skill for creating, running, and organizing Lobster workflow files. Lobster is the OpenClaw workflow engine for automating multi-step pipelines. The skill covers where workflows should live, how to run them with variables, and YAML authoring conventions. A developer uses it when building or placing automation workflows in an OpenClaw setup.

  • Authors and runs Lobster workflow YAML files for multi-step pipelines
  • Explains where shared vs agent-specific workflows should live
  • Shows lobster run commands with variables and YAML step conventions

Lobster by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,980 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Jul 7, 2026 (Skillselion catalog sync)
At a glance

lobster capabilities & compatibility

Capabilities
workflow automation · pipeline orchestration
Use cases
orchestration
Pricing
Free
From the docs

What lobster says it does

Lobster is the OpenClaw workflow engine for automating multi-step pipelines.
SKILL.md
Use kebab-case for workflow filenames: `sync-paperless-mail-rules.yaml`
SKILL.md
npx skills add https://github.com/agentplot/agentplot-kit --skill lobster

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
Last updatedJune 1, 2026
Repositoryagentplot/agentplot-kit

What it does

Create, run, and organize Lobster YAML workflows for multi-step pipeline automation.

Who is it for?

Writing and organizing Lobster workflow YAML in an OpenClaw environment.

Skip if: Users not on the OpenClaw / Lobster stack.

When should I use this skill?

Creating, running, or organizing Lobster workflow YAML files, or deciding where workflows should live.

What you get

Well-placed, runnable Lobster workflow YAML files for multi-step automation.

  • Lobster workflow YAML files
  • Run commands

By the numbers

  • Defines 2 workflow locations (shared vs agent-specific)

Files

SKILL.mdMarkdownGitHub ↗

Lobster: Workflow Automation

Lobster is the OpenClaw workflow engine for automating multi-step pipelines.

Workflow Locations

LocationManaged ByPurpose
~/.openclaw/workflows/mac-nix (Nix)Shared infrastructure workflows
~/.openclaw/workspace-<agent>/workflows/Agent (git)Agent-specific domain workflows

Which Location?

  • Shared (~/.openclaw/workflows/): Infrastructure utilities used by multiple agents or the system itself. Deployed declaratively by Nix. Changes require a mac-nix rebuild.
  • Agent-specific (workspace-<agent>/workflows/): Domain logic owned by a single agent. Agents can iterate without mac-nix changes. Lives in the agent's git repo.

Rule of thumb: If it's about how the system works, it's shared. If it's about what an agent does, it's agent-specific.

Examples

WorkflowLocationReason
sync-paperless-mail-rules.yamlAgent workspaceSyncs vendor config to Paperless — domain logic
workspace-git-sync.yamlSharedInfrastructure: keeps agent workspaces backed up
invoice-check.yamlAgent workspaceAgent's invoice processing — domain logic

Running Workflows

# Run a shared workflow by absolute path
lobster run --file ~/.openclaw/workflows/workspace-git-sync.yaml

# Run an agent workflow from the workspace directory
cd ~/.openclaw/workspace-jared
lobster run --file workflows/invoice-check.yaml

# Run with variables
lobster run --file workflows/sync-rules.yaml --var vendor="Acme Corp"

Creating Workflows

Workflow files are YAML. Minimal example:

name: example-workflow
description: Brief description of what this does

steps:
  - name: fetch-data
    action: exec
    command: recsel -t Vendor -e 'Phase = "Active"' invoices.rec

  - name: process
    action: exec
    command: restish paperless list-mail-rules -o json

Conventions

  • Use kebab-case for workflow filenames: sync-paperless-mail-rules.yaml
  • Include name and description fields at the top
  • Keep workflows focused — one pipeline per file
  • Agent workflows should be committed to the agent's git repo
  • Shared workflows are deployed by Nix via home.file entries in openclaw.nix

Related skills

FAQ

Where do workflows live?

Shared infrastructure workflows in ~/.openclaw/workflows/ and agent-specific ones in the agent's workspace workflows directory.

How are workflows run?

With lobster run --file, optionally passing values via --var.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.