MCP gave Pipelock a clean place to stand between an agent and its tools. Frameworks that do not run on MCP never had that seam. Their tool calls and lifecycle events happened entirely inside the framework, where no proxy could see them.
The Hermes Agent integration adds the seam. A small plugin inside Hermes forwards each hook event to Pipelock, which scans it the same way it scans everything else.
How it works
pipelock hermes install extracts an embedded Python plugin into ~/.hermes/plugins/pipelock/ and wires it into the Hermes configuration. From then on, when Hermes fires a hook event, the plugin calls pipelock hermes hook as a subprocess. That entrypoint feeds the event into Pipelock’s scanner pipeline and returns the verdict, so the same DLP, injection, and policy checks that guard MCP and HTTP traffic now guard the framework’s hook surface. The fail-closed defaults carry over: a parse error or a timeout blocks rather than waves through.
The plugin is the only supported way to change the installed integration. It ships inside the Pipelock binary and is materialized verbatim, so the version on disk always matches the binary you are running.
Lifecycle
Three commands manage the integration, and one runs underneath it:
pipelock hermes installextracts the plugin and wires it in.pipelock hermes verifyinspects~/.hermesand reports the real coverage state.pipelock hermes rollbackremoves the plugin and unwinds the wiring.pipelock hermes hookis the per-event subprocess entrypoint Hermes invokes. You do not call it directly.
Coverage is reported honestly
verify does not infer protection from the presence of files. It distinguishes full coverage, where the plugin is present, manifested, enabled, the hook is wired, and the proxy environment names are set, from mcp-only, where the agent is covered through wrapped MCP servers or injected proxy environment but the hook plugin is not fully ready. Reporting full from file presence alone would be false protection, so it does not.
To control what those scanned events are allowed to do once they reach the network, pair this with request policy and the MCP proxy.