CLI Commands
Usage
feedpipe <port> [options]Arguments
<port>
Required. The local port to tunnel.
feedpipe 3000feedpipe 8080Options
-s, --slug <slug>
Custom URL slug instead of a random one.
feedpipe 3000 --slug my-feature# → https://my-feature.feedpipe.devSlugs must be lowercase alphanumeric with hyphens. If the slug is taken, you’ll get an error.
-h, --host <host>
Local host to tunnel. Defaults to localhost.
feedpipe 3000 --host 127.0.0.1feedpipe 3000 --host 0.0.0.0-p, --password <password>
Password protect the tunnel.
feedpipe 3000 --password secret123Reviewers will see a login page and must enter the password to access.
--no-toolbar
Disable toolbar injection. Useful if you just want tunneling without annotations.
feedpipe 3000 --no-toolbar--open
Open the tunnel URL in your default browser.
feedpipe 3000 --open--no-telemetry
Disable anonymous usage telemetry.
feedpipe 3000 --no-telemetry-q, --quiet
Minimal output. Only errors are printed.
feedpipe 3000 --quiet--json
JSON output mode. Each event is printed as a JSON object on its own line.
feedpipe 3000 --jsonExample output:
{"type":"ready","url":"https://abc123.feedpipe.dev"}{"type":"event","event":{"type":"annotation.created",...}}-V, --version
Print the version number.
feedpipe --version--help
Print help information.
feedpipe --helpAI Integration Options
See AI Integration for details.
--ai <agent>
Pipe events to an AI coding agent.
feedpipe 3000 --ai claudefeedpipe 3000 --ai codexfeedpipe 3000 --ai geminifeedpipe 3000 --ai opencodefeedpipe 3000 --ai custom--ai-command <cmd>
Custom command for the AI agent (used with --ai custom).
feedpipe 3000 --ai custom --ai-command "my-agent --mode feedback"--ai-cwd <dir>
Working directory for the AI agent.
feedpipe 3000 --ai claude --ai-cwd /path/to/project--ai-filter <types>
Filter which event types are piped to the AI agent.
feedpipe 3000 --ai claude --ai-filter pin_comment,rect_highlightEnvironment Variables
FEEDPIPE_DEV
When set, uses localhost for the relay instead of production.
FEEDPIPE_DEV=1 feedpipe 3000FEEDPIPE_TELEMETRY_DISABLED
Disable anonymous usage telemetry.
FEEDPIPE_TELEMETRY_DISABLED=1 feedpipe 3000FEEDPIPE_TELEMETRY_DEBUG
Enable verbose telemetry logging (for troubleshooting only).
FEEDPIPE_TELEMETRY_DEBUG=1 feedpipe 3000Exit Codes
0- Clean shutdown (Ctrl+C)1- Error (connection failed, invalid port, etc.)