From devproxy
Use when you need to get the current project's devproxy HTTPS URL, check if the project is running behind devproxy, or need the proxy URL for testing, browser automation, or API calls. Triggers on "devproxy url", "proxy url", "get devproxy url", "what's my dev url", "current HTTPS url".
How this skill is triggered — by the user, by Claude, or both
Slash command
/devproxy:urlThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run `devproxy get-url` to get the current project's proxy URL.
Run devproxy get-url to get the current project's proxy URL.
URL=$(devproxy get-url)
https://cool-penguin-myapp.mysite.dev) to stdout and exits 0.Check if running and get URL:
if URL=$(devproxy get-url 2>/dev/null); then
echo "Project is running at $URL"
else
echo "Project is not running. Run 'devproxy up' first."
fi
Use with curl (macOS needs --resolve for DNS):
URL=$(devproxy get-url)
HOST=$(echo "$URL" | sed 's|https://||')
curl --resolve "$HOST:443:127.0.0.1" "$URL"
Use with Playwright/browser automation — just navigate to the URL directly.
npx claudepluginhub foundra-build/devproxy --plugin devproxyGenerates and executes custom Playwright scripts for browser automation and testing. Auto-detects local dev servers, runs in visible mode by default.
Automates browser tasks with Playwright: tests pages, fills forms, screenshots, responsive design, UX validation, login flows, link checks. Auto-detects dev servers, runs visible browser.
Manages Portless local-dev HTTPS proxy: setup, custom TLD URLs, aliases, CA trust, monorepo orchestration, Tailscale sharing, and troubleshooting.