Loading...
Loading...
Set up HelpMeTest proxy tunnels for local development testing. Use when user needs to test localhost, wants to substitute production URLs with local ports, or needs to route multiple services. Use when user says 'set up proxy', 'test localhost', 'tunnel to local', or before running tests against local development servers.
npx skill4agent add help-me-test/skills helpmetest-proxy# If your app runs on port 3000
helpmetest proxy start localhost:3000# Use HelpMeTest interactive command
helpmetest_run_interactive_command({ command: "Go To http://localhost" })
# Should load your local appGo To http://localhost/api# Frontend on port 5001, it proxies /api internally to port 3001
helpmetest proxy start localhost:5001Go To http://localhost
# Both UI and /api calls work through the single tunnel# Frontend on port 5001
helpmetest proxy start frontend.local:5001
# Backend on port 3001
helpmetest proxy start backend.local:3001Go To http://frontend.local # For UI
# API calls use http://backend.local/api# Intercept my.awesome.app and route to local port 3000
helpmetest proxy start my.awesome.app:80:3000Go To http://my.awesome.app
# Routes to localhost:3000 instead of productiondomainexternal_portsource_porthttp://my.awesome.app:80# For localhost
helpmetest_run_interactive_command({ command: "Go To http://localhost" })
# For custom hostnames
helpmetest_run_interactive_command({ command: "Go To http://frontend.local" })
# For production substitution
helpmetest_run_interactive_command({ command: "Go To http://my.awesome.app" })ps aux | grep "helpmetest proxy"# Direct connection to your local port (bypasses proxy)
curl http://127.0.0.1:3000✓ Proxying localhost -> localhost:3000
# or
✓ Proxying frontend.local -> localhost:5001/etc/hosts# Wrong (missing source port)
helpmetest proxy start my.awesome.app:80
# Correct
helpmetest proxy start my.awesome.app:80:3000# Use HelpMeTest to verify routing
helpmetest_run_interactive_command({ command: "Go To http://my.awesome.app" })
# Should load from localhost:3000, not production# Local frontend
helpmetest proxy start frontend.local:5001
# Local backend API
helpmetest proxy start api.local:3001
# Production service running locally
helpmetest proxy start prod.myapp.com:80:8000Go To http://frontend.local
# Make API call to http://api.local/endpoint
# Access production service at http://prod.myapp.comhelpmetest_run_interactive_commandfrontend.local✓ Proxying localhost -> localhost:3000[W] new proxy type error: proxy already exists