@actagent/lobster
v2026.6.5
Published
Lobster workflow tool plugin for typed pipelines and resumable approvals.
Readme
Lobster (plugin)
Adds the lobster agent tool as an optional plugin tool.
Install
actagent plugins install @actagent/lobsterRestart the Gateway after installing or updating the plugin.
What this is
- Lobster is a standalone workflow shell (typed JSON-first pipelines + approvals/resume).
- This plugin integrates Lobster with ACTAgent without core changes.
Enable
Because this tool can trigger side effects (via workflows), it is registered with optional: true.
Enable it in an agent allowlist:
{
"agents": {
"list": [
{
"id": "main",
"tools": {
"allow": [
"lobster" // plugin id (enables all tools from this plugin)
]
}
}
]
}
}Using actagent.invoke (Lobster → ACTAgent tools)
Some Lobster pipelines may include a actagent.invoke step to call back into ACTAgent tools/plugins (for example: gog for Google Workspace, gh for GitHub, message.send, etc.).
For this to work, the ACTAgent Gateway must expose the tool bridge endpoint and the target tool must be allowed by policy:
- ACTAgent provides an HTTP endpoint:
POST /tools/invoke. - The request is gated by gateway auth (e.g.
Authorization: Bearer …when token auth is enabled). - The invoked tool is gated by tool policy (global + per-agent + provider + group policy). If the tool is not allowed, ACTAgent returns
404 Tool not available.
Allowlisting recommended
To avoid letting workflows call arbitrary tools, set a tight allowlist on the agent that will be used by actagent.invoke.
Example (allow only a small set of tools):
{
"agents": {
"list": [
{
"id": "main",
"tools": {
"allow": ["lobster", "web_fetch", "web_search", "gog", "gh"],
"deny": ["gateway"],
},
},
],
},
}Notes:
- If
tools.allowis omitted or empty, it behaves like "allow everything (except denied)". For a real allowlist, set a non-emptyallow. - Tool names depend on which plugins you have installed/enabled.
Security
- Runs Lobster in process via the published
@actagentdbot/lobster/coreruntime. - Does not manage OAuth/tokens.
- Uses timeouts, stdout caps, and strict JSON envelope parsing.
Docs
- https://docs.actagent.ai/tools/lobster
Package
- Plugin id:
lobster - Tool:
lobster - Package:
@actagent/lobster - Minimum ACTAgent host:
2026.4.25
