deploy

Detect project stack, build an artifact, and deploy to the target environment.

3|Updated Apr 2, 2026
One-click install
npx skills add https://github.com/marcmunoz-uno/jailbreak --skill deploy-marcmunoz-uno
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy
Source: https://github.com/marcmunoz-uno/jailbreak/tree/main/skills/deploy
Command: npx skills add https://github.com/marcmunoz-uno/jailbreak --skill deploy-marcmunoz-uno

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Deploying an application to the right environment is slow and error-prone, especially when you need to detect the stack, build correctly, and confirm it’s actually running.

Core Features & Use Cases

  • Detects and configures the deployment: Identifies the project stack and selects a target based on user preference or existing deploy configuration, defaulting to the Conway sandbox for speed.
  • Builds and ships reliably: Installs dependencies, runs the appropriate build flow, packages the artifact, and hands off to the deployer agent for the target-specific rollout.
  • Verifies before claiming success: Uses a monitor pass to poll a health endpoint, run a smoke test, and then reports the live URL plus response/health status.

Use cases include pushing changes to a sandbox, shipping a service to Docker/VPS/vercel/cloudflare, and deploying after a build completes and needs a verified go-live.

Quick Start

Run /deploy with your desired target (or omit it to deploy to the Conway sandbox) and wait for the skill to build, ship, verify, and output the live URL.

Frequently Asked Questions about deploy

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

FAQPage Schema
How do I deploy an application to a sandbox environment with one command?

You can deploy an application to a sandbox environment with one command by running the deployment tool without specifying a target; it defaults to the Conway sandbox, builds the artifact, ships it, and verifies the live URL.

Does continuous delivery work with Docker, VPS, Vercel, and Cloudflare targets?

Continuous delivery works with Docker, VPS, Vercel, and Cloudflare targets by detecting the project stack, packaging the artifact, and orchestrating a target-specific rollout to ship the application.

How do I verify a deployment and run a health check after shipping a build?

To verify a deployment and run a health check after shipping, the monitor pass polls the health endpoint for up to 60 seconds, executes a smoke test, and reports the live URL with pass or fail status.

What is the best way to automate post-build releases and confirm the application is running?

The best way to automate post-build releases is to sequentially orchestrate the build and ship process followed by health polling and smoke testing, which confirms the application is running and reports the live URL.

Can I rollback a deployment if the smoke test fails?

If the smoke test fails, you can rollback the deployment using the provided rollback command, which is reported alongside the pass or fail status and the resulting live URL after the verification pass.

Why does deployment fail if the project stack is not detected correctly?

Deployment fails if the project stack is not detected correctly because the system needs to identify the stack to select the appropriate build flow, package the artifact, and hand off to the correct target environment.