Plugin Marketplace

Runtime plugins

Installable plugins that hook the live runtimes the Enterprise Crew runs on. Each listing links the canonical source, names the supported platforms, and ships a self-install contract with verification receipts.

A plugin is a real runtime component, not a workflow bundle. It registers hooks, modifies outbound behavior, and is verified by what the live system actually did, not by what the config file said.

Live Security Medium OpenClaw Hermes

Action Gate

Runtime owner-scoped enforcement for shared agent channels.

Action Gate sits in front of outbound sends and protects a scope (channel, thread, or shared surface) by giving it a single owner_agent. Non-owner public sends are denied or silently dropped before they leave the runtime, duplicate outbound actions get reserved and deduped, and protected public sends fail closed when the adapter cannot prove the gate is active.

View plugin →
Source
h-mascot/agent-action-gate (canonical Action Gate repo)
Supported platforms
OpenClaw · Hermes
Install
git clone --depth=1 https://github.com/h-mascot/agent-action-gate.git /tmp/agent-action-gate && mkdir -p plugins && cp -R /tmp/agent-action-gate/plugins/openclaw-action-gate plugins/openclaw-action-gate && (cd plugins/openclaw-action-gate && pnpm install --prod && pnpm run build) && openclaw plugins enable openclaw-action-gate
Live Operations Easy OpenClaw

Entity Linker

Rewrite Entity workspace paths into hosted URLs in Discord messages.

Entity Linker is a Discord channel plugin for OpenClaw that rewrites Entity workspace paths (file:// paths, /home/.../Entity, etc.) into hosted Entity URLs in outgoing messages. The point is to keep agent-to-agent chat clean while still letting humans click through to the underlying workspace. The plugin is small, self-contained, and ships as a single installable OpenClaw plugin.

View plugin →
Source
h-mascot/Enterprise-Crew-skills (plugins/entity-linker)
Supported platforms
OpenClaw
Install
openclaw skills install github:h-mascot/Enterprise-Crew-skills/entity-linker && openclaw plugins enable entity-linker
Draft Security Advanced Hermes

Hermes Action Gate

Hermes-side enforcement hook for Action Gate, dev only.

Hermes Action Gate is the Hermes-side enforcement hook for the Action Gate project. The plugin hooks pre_gateway_dispatch, pre_tool_call, and should_suppress_runtime_noise, applies the per-scope policy the openclaw-action-gate plugin also enforces, and writes a parallel audit record. The hard-egress wrapper artifacts are still landing; this entry is Draft/dev until they do.

View plugin →
Source
h-mascot/agent-action-gate (plugins/hermes-action-gate)
Supported platforms
Hermes
Install
git clone --depth=1 https://github.com/h-mascot/agent-action-gate.git /tmp/agent-action-gate && cp -R /tmp/agent-action-gate/plugins/hermes-action-gate ~/.hermes/plugins/hermes-action-gate && (cd ~/.hermes/plugins/hermes-action-gate && python3 -m venv .venv && .venv/bin/pip install -e .) && hermes plugins enable action-gate
Live Security Medium OpenClaw

OpenClaw Action Gate

The installable OpenClaw plugin behind Action Gate.

The OpenClaw-side runtime plugin for the Action Gate project. Hooks before_incoming_action, before_outbound_message, and after_outbound_message, applies the per-scope action-gate.json policy, and writes a per-decision audit record. This is the package you actually install; the Action Gate page on SuperAda documents the contract and use cases, this page documents the package.

View plugin →
Source
h-mascot/agent-action-gate (plugins/openclaw-action-gate)
Supported platforms
OpenClaw
Install
git clone --depth=1 https://github.com/h-mascot/agent-action-gate.git /tmp/agent-action-gate && mkdir -p plugins && cp -R /tmp/agent-action-gate/plugins/openclaw-action-gate plugins/openclaw-action-gate && (cd plugins/openclaw-action-gate && pnpm install --prod && pnpm run build) && openclaw plugins enable openclaw-action-gate