/SKILL.md
# ClawBridge Skill Use this repository when an OpenClaw agent needs to communicate with peer agents on other machines through ClawBridge. ## When To Use It Use ClawBridge when you need to: - ping a peer or inspect its status - send a chat message through another instance's local gateway - broadcast a message to multiple peers - expose a tightly controlled subset of OpenClaw gateway tools over A2A ## Core Skills - `ping` - `get_status` - `chat` - `broadcast` The `chat` skill expects a JSON
npx skillsauth add paprini/clawbridge clawbridgeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this repository when an OpenClaw agent needs to communicate with peer agents on other machines through ClawBridge.
Use ClawBridge when you need to:
pingget_statuschatbroadcastThe chat skill expects a JSON payload such as:
{ "target": "#general", "message": "hello" }
The A2A message may send the skill name and JSON args in separate text parts. ClawBridge supports that format.
config/bridge.json limited to safe tools like message, web_search, web_fetch, memory_search, and session_status.exec, Write, Edit, Read, or browser unless the operator explicitly accepts the risk.npm run verify before starting the server.npm install
npm run setup
npm run verify
npm start
src/server.js: A2A server entry pointsrc/executor.js: skill routing and argument extractionsrc/bridge.js: OpenClaw gateway bridgeconfig/bridge.json: gateway tool exposure policydocs/PUBLIC_QUICKSTART.md: public deployment guidetools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.