lobster

Platform Integration
πŸ“¦ Install
npx clawhub@latest install lobster

Lobster

Lobster executes multi-step workflows with approval checkpoints. Use it when:

When to use Lobster

User intentUse Lobster?
"Triage my email"Yes β€” multi-step, may send replies
"Send a message"No β€” single action, use message tool directly
"Check my email every morning and ask before replying"Yes β€” scheduled workflow with approval
"What's the weather?"No β€” simple query
"Monitor this PR and notify me of changes"Yes β€” stateful, recurring

Basic usage

Run a pipeline

{

"action": "run",

"pipeline": "gog.gmail.search --query 'newer_than:1d' --max 20 | email.triage"

}

Returns structured result:

{

"protocolVersion": 1,

"ok": true,

"status": "ok",

"output": [{ "summary": {...}, "items": [...] }],

"requiresApproval": null

}

Handle approval

If the workflow needs approval:

{

"status": "needs_approval",

"output": [],

"requiresApproval": {

"prompt": "Send 3 draft replies?",

"items": [...],

"resumeToken": "..."

}

}

Present the prompt to the user. If they approve:

{

"action": "resume",

"token": "<resumeToken>",

"approve": true

}

Example workflows

Email triage

gog.gmail.search --query 'newer_than:1d' --max 20 | email.triage

Fetches recent emails, classifies into buckets (needs_reply, needs_action, fyi).

Email triage with approval gate

gog.gmail.search --query 'newer_than:1d' | email.triage | approve --prompt 'Process these?'

Same as above, but halts for approval before returning.

Key behaviors

Don't use Lobster for

← Back to all skills

Get openclaw-cli free

Install in one command and start monitoring your AI gateway.

npm install -g openclaw-cli