n8n_audit_browser_bridge_usage
Scans n8n workflows to find nodes invoking browser-bridge CLI (Execute Command, Code/Function, SSH). Identifies each call by workflow, node, platform, and action for quick audit.
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 |
|---|---|---|---|
| platform | No | Filter findings to a single browser-bridge platform (e.g. 'coderlegion'). | |
| action | No | Filter findings to a single browser-bridge action (e.g. 'scan-comments'). | |
| activeOnly | No | Only scan active workflows. Default false - inactive workflows often hide stale browser-bridge calls. | |
| includeArchived | No | Include archived workflows in the scan. Default false. | |
| maxWorkflows | No | Cap on workflows fetched and inspected (default 250). | |
| concurrency | No | Parallel getWorkflow requests (default 3, max 8). |