
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)
lobster capabilities & compatibility
- Capabilities
- workflow automation · pipeline orchestration
- Use cases
- orchestration
- Pricing
- Free
What lobster says it does
Lobster is the OpenClaw workflow engine for automating multi-step pipelines.
Use kebab-case for workflow filenames: `sync-paperless-mail-rules.yaml`
npx skills add https://github.com/agentplot/agentplot-kit --skill lobsterAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | June 1, 2026 |
| Repository | agentplot/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
Lobster: Workflow Automation
Lobster is the OpenClaw workflow engine for automating multi-step pipelines.
Workflow Locations
| Location | Managed By | Purpose |
|---|---|---|
~/.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
| Workflow | Location | Reason |
|---|---|---|
sync-paperless-mail-rules.yaml | Agent workspace | Syncs vendor config to Paperless — domain logic |
workspace-git-sync.yaml | Shared | Infrastructure: keeps agent workspaces backed up |
invoice-check.yaml | Agent workspace | Agent'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 jsonConventions
- Use kebab-case for workflow filenames:
sync-paperless-mail-rules.yaml - Include
nameanddescriptionfields 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.fileentries 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.