n8n_audit_browser_bridge_usage
Locate every n8n workflow that invokes browser-bridge CLI via Execute Command, Code, or SSH nodes, pinpointing exact nodes and actions used.
Instructions
Scan every workflow for nodes that invoke the browser-bridge CLI (Execute Command, Code/Function, or SSH nodes). Returns one finding per (workflowId, nodeName, platform, action) so you can answer 'where am I calling Linktree sync from?' without grepping the n8n DB. Read-only. Heuristic: matches browser-bridge[.js|.cjs] <platform> <action> in command/jsCode strings, including spawn-array form.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Filter findings to a single browser-bridge action (e.g. 'scan-comments'). | |
| platform | No | Filter findings to a single browser-bridge platform (e.g. 'coderlegion'). | |
| activeOnly | No | Only scan active workflows. Default false - inactive workflows often hide stale browser-bridge calls. | |
| concurrency | No | Parallel getWorkflow requests (default 3, max 8). | |
| maxWorkflows | No | Cap on workflows fetched and inspected (default 250). | |
| includeArchived | No | Include archived workflows in the scan. Default false. |