deployment

Configure production deployment targets and run commands via deployConfig.

Updated Mar 19, 2026
One-click install
npx skills add https://github.com/mecolejr/EVL-mOC5 --skill deployment-mecolejr
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deployment
Source: https://github.com/mecolejr/EVL-mOC5/tree/main/.local/skills/deployment
Command: npx skills add https://github.com/mecolejr/EVL-mOC5 --skill deployment-mecolejr

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Deployment Skill simplifies configuring deployment settings and guiding users toward publishing a live version of their project.

Core Features & Use Cases

  • Configures how a project runs in production across autoscale, VM, scheduled, or static targets.
  • Provides guidance for when to publish, validation tips, and scenario-specific instructions.
  • Supports optional run, build, and publicDir inputs to tailor the deployment workflow.

Quick Start

Configure deployment settings for production by calling deployConfig with a chosen deploymentTarget and run/build commands in your project.

Frequently Asked Questions about deployment

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I configure deployment settings for a production environment?▼

To configure deployment settings for production, call the deployConfig function with a chosen deploymentTarget along with optional run and build commands to define how your project executes in the live environment.

What deployment targets are supported for publishing an app to production?▼

Supported deployment targets for publishing to production include autoscale cloud environments, virtual machines, scheduled tasks, and static hosting, each tailored to different application scaling and execution requirements.

How do I deploy a static website to a hosting target?▼

To deploy a static website, configure the deploymentTarget for static hosting and specify a publicDir in your deployConfig so the server knows where your static assets are located for publishing.

When should I use autoscale cloud versus a virtual machine for my deployment?▼

Choose autoscale cloud for deployments requiring dynamic scaling based on traffic, while a virtual machine target suits stable, predictable workloads where you manage the infrastructure and run commands directly.

Do I need to specify build and run commands for every production deployment?▼

Build and run commands are optional inputs for production deployment; you only need to specify them if your project requires a build step before publishing or a specific command to start the application in production.

Why does my scheduled task deployment need specific configuration?▼

Scheduled task deployments require specific configuration to define when and how the task executes in production, ensuring the deploymentTarget and run commands align with the intended execution schedule.