deployment

Configure deployment targets and publish commands for web applications.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/aqeelalamfca-sys/Test-Audit --skill deployment-aqeelalamfca-sys
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment
Source: https://github.com/aqeelalamfca-sys/Test-Audit/tree/main/.local/skills/deployment
Command: npx skills add https://github.com/aqeelalamfca-sys/Test-Audit --skill deployment-aqeelalamfca-sys

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill streamlines the process of configuring your project for production deployment and publishing it to make it live and accessible.

Core Features & Use Cases

  • Deployment Configuration: Set up deployment targets (autoscale, vm, scheduled, static), run commands, build commands, and public directories.
  • Publishing Guidance: Provides instructions on when to use the skill and best practices for a smooth deployment.
  • Use Case: You've finished developing a web application and want to deploy it. You use this skill to configure the autoscale deployment target with the correct run command (e.g., gunicorn) and then prepare to publish.

Quick Start

Configure the deployment for a static website by running npm run build and setting the public directory to dist.

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 Python web application?

To configure deployment for a Python web application, define the deployment target as autoscale and specify the run command, such as gunicorn, to serve the application. This prepares the project for publishing.

What is the best way to publish a static site after running a build command?

The best way to publish a static site is to define the build command, such as npm run build, and set the public directory to the output folder, such as dist. This configures the static assets for deployment.

Does this deployment configuration support Node.js services?

Yes, this deployment configuration supports Node.js services alongside Python web applications and static client-side sites. You can define specific build and run commands to publish your Node.js project.

What deployment targets can I use for publishing my project?

Available deployment targets include autoscale, virtual machines, scheduled jobs, and static sites. Selecting the appropriate target configures how your web application or service is published and managed.

How do I set up autoscale deployment for a finished web application?

To set up autoscale deployment for a finished web application, select the autoscale deployment target and define the correct run command to execute your application. This facilitates a smooth publishing process.

When should I use a virtual machine deployment target versus a static site?

Use a virtual machine deployment target for running backend services like Python or Node.js applications that require active processes. Use a static site target for publishing client-side assets built from commands like npm run build.