protocol bridge

ReviewAudited by ClawScan on May 10, 2026.

Overview

The provided files describe a legitimate-looking agent protocol bridge, but using it would require trusting an external npm package and carefully securing any agent-to-agent routing.

Before installing, verify the external npm package and repository, avoid exposing the bridge broadly, configure strong authentication and narrow routing rules, and only connect agents or systems whose data and permissions you are comfortable sharing through the bridge.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing the package would require trusting code outside the reviewed skill artifacts.

Why it was flagged

The skill directs installation of an external, unpinned global npm package, while the supplied artifacts contain only documentation and no package code to review.

Skill content
npm install -g openclaw-protocol-bridge
Recommendation

Verify the npm package and GitHub repository, pin a known version or hash where possible, and review the package before installing it globally.

What this means

Messages or actions could be routed between agents or systems if the bridge is configured too broadly.

Why it was flagged

The core feature is an inter-agent gateway that can move messages across protocols and frameworks; the documentation does not specify detailed identity, permission, or data-boundary controls.

Skill content
This SKILL acts as a universal translator and router for AI agents, solving protocol incompatibility between MCP, A2A, LangChain, AutoGPT, and CrewAI.
Recommendation

Use explicit allowlists, strong authentication, per-agent permissions, logging, and narrow routing rules before connecting sensitive agents or enterprise systems.

What this means

Over-scoped tokens or keys could allow broader access to connected agents than intended.

Why it was flagged

The bridge may use authentication credentials or certificates; that is expected for a protocol bridge, but credentials can grant access across connected agents or services.

Skill content
Security - JWT, OAuth, API keys, mTLS support
Recommendation

Use least-privilege credentials, avoid sharing broad tokens between agents, rotate secrets, and store them outside prompts or shared logs.

What this means

A bridge left running or exposed could continue mediating agent traffic beyond the immediate task.

Why it was flagged

The documented workflow starts a bridge server, which may continue running and accepting agent traffic; this is purpose-aligned but should be user-controlled.

Skill content
protocol-bridge serve --port 8080
Recommendation

Start the service only when needed, bind it to trusted interfaces, require authentication, and shut it down when finished.