JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 128869
  • Score
    100M100P100Q183290F

Lobster workflow tool plugin (typed pipelines + resumable approvals)

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@clawdbot/lobster) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Lobster (plugin)

    Adds the lobster agent tool as an optional plugin tool.

    What this is

    • Lobster is a standalone workflow shell (typed JSON-first pipelines + approvals/resume).
    • This plugin integrates Lobster with Clawdbot 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)
              ]
            }
          }
        ]
      }
    }

    Security

    • Runs the lobster executable as a local subprocess.
    • Does not manage OAuth/tokens.
    • Uses timeouts, stdout caps, and strict JSON envelope parsing.
    • Prefer an absolute lobsterPath in production to avoid PATH hijack.