
Edge Deployment
Deploy a detected frontend stack to Vercel or Cloudflare with previews, production promotes, env vars, and domains—without hand-rolling platform config.
Install
npx skills add https://github.com/itallstartedwithaidea/agent-skills --skill edge-deploymentWhat is this skill?
- Auto-detects 40+ frontend frameworks and configures build commands and output directories accordingly
- Supports Vercel and Cloudflare Pages/Workers with SSR versus SSG routing choices
- Manages preview deployments on pull requests and production deployments on merge
- Handles environment variables and custom domain setup across environments
- Encodes platform differences between Vercel serverless functions and Cloudflare Workers edge runtime
Adoption & trust: 1 installs on skills.sh; 18 GitHub stars; 3/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Journey fit
Canonical shelf is Ship because the skill’s outcome is a live edge deployment and launch-ready hosting configuration, which is the core “get it out the door” moment for solo frontends. Launch under Ship captures production and preview deploy flows, custom domains, and environment-specific settings rather than local build or feature coding.
Common Questions / FAQ
Is Edge Deployment safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Edge Deployment
# Edge Deployment Part of [Agent Skills™](https://github.com/itallstartedwithaidea/agent-skills) by [googleadsagent.ai™](https://googleadsagent.ai) ## Description Edge Deployment automates the deployment of frontend applications to Vercel and Cloudflare with auto-detection of 40+ frameworks, intelligent build configuration, and environment-specific settings. The agent identifies the framework, configures the build pipeline, sets up environment variables, and deploys with zero manual configuration for standard projects. Modern edge platforms eliminate the need for traditional server provisioning. This skill encodes the deployment patterns for both static (SSG) and server-rendered (SSR) applications across Vercel and Cloudflare Pages/Workers. The agent selects the optimal deployment strategy based on the framework's rendering capabilities, the project's data requirements, and the target platform's runtime constraints. The skill handles the full deployment lifecycle: initial setup, preview deployments for pull requests, production deployments on merge, custom domain configuration, and environment variable management. It understands the differences between Vercel's serverless functions and Cloudflare Workers' edge runtime, routing to the appropriate platform based on project needs. ## Use When - Deploying a new frontend project for the first time - Configuring CI/CD for preview and production deployments - Migrating between deployment platforms (Vercel to Cloudflare or vice versa) - Setting up custom domains and SSL certificates - Configuring environment variables for different deployment stages - Optimizing build settings for faster deploys ## How It Works ```mermaid graph TD A[Project Source] --> B[Detect Framework] B --> C{Framework Type} C -->|Next.js/Nuxt/SvelteKit| D[SSR Deployment] C -->|Astro/Vite/CRA| E[Static Deployment] D --> F{Target Platform} E --> F F -->|Vercel| G[Configure vercel.json] F -->|Cloudflare| H[Configure wrangler.jsonc] G --> I[Set Build Command + Output Dir] H --> I I --> J[Configure Env Variables] J --> K[Deploy Preview on PR] K --> L[Deploy Production on Merge] ``` Framework detection examines `package.json` dependencies, config files, and directory structure. The agent maps each framework to its optimal build command, output directory, and runtime configuration. ## Implementation ### Vercel Deployment ```json { "framework": "nextjs", "buildCommand": "next build", "outputDirectory": ".next", "regions": ["iad1", "sfo1", "lhr1"], "env": { "DATABASE_URL": "@database-url", "API_KEY": "@api-key" } } ``` ```bash # Deploy to Vercel npx vercel --prod # Preview deployment npx vercel # Set environment variable npx vercel env add DATABASE_URL production ``` ### Cloudflare Pages Deployment ```jsonc // wrangler.jsonc { "name": "my-app", "pages_build_output_dir": "./dist", "compatibility_date": "2026-04-01", "vars": { "ENVIRONMENT": "production" } } ``` ```bash # Deploy to Cloudflare Pages npx wrangler pages deploy ./dist --project-name=my-app # Preview deployment npx wrangler pages deploy ./dist --project-name=my-app --branch=feature-x ``` ### GitHub Actions CI/CD ```yaml name: Deploy on: push: branches: [main] pull_request: branches: [main] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: { node-version: "20" } - run: npm ci - run: npm run build - if: github.event_name == 'push' run: npx wrangler pages deploy ./dist --project-name=my-app env: CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }} ``` ## Best Practices - Use