What problem does it solve? Automated requests to Vercel deployments protected by Vercel Authentication, SSO, or Deployment Protection fail with login pages, 401/403 responses, or TRUSTED_SOURCES_ENVIRONMENT_MISMATCH errors. This Skill shows how to authenticate those requests using the caller's existing Vercel credentials instead of disabling protection. ## Core Features & Use Cases - HTTP access with vercel curl: Replace raw curl with vc curl to fetch response bodies, headers, and health checks from protected preview and production deployments using Vercel CLI authentication. - Browser automation with OIDC headers: Inject the short-lived x-vercel-trusted-oidc-idp-token header into agent-browser or Playwright sessions so browser requests pass Trusted Sources checks. - Trusted Sources diagnosis: Interpret protection pages, 401/403 responses, and TRUSTED_SOURCES_ENVIRONMENT_MISMATCH to determine when a development → production Trusted Sources rule is required. - Use Case: A preview URL returns a Vercel SSO page when opened by agent-browser. Use this Skill to run the browser with the OIDC token header via vc env run and continue testing without touching protection settings. ## Quick Start Ask the agent to access your protected Vercel deployment URL, for example: "curl this protected Vercel deployment at https://my-app.vercel.app/api/health".