deploy

Solid

Deploy application to target platform. Use when user explicitly says 'deploy', 'push to production', 'ship it'. Handles Vercel, Netlify, AWS, GCP, DigitalOcean, and VPS with pre-deploy verification and health checks. Enforces cost allocation tags + Managed-vs-Self-Host crossover decisions so deploy choices map to actual unit economics, not hand-waved 'we'll optimize later'.

DevOps & Infrastructure 81 stars 23 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
64
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# deploy ## Purpose Deploy applications to target platforms. Handles the full deployment flow — environment configuration, build, push, verification, and rollback if needed. Supports Vercel, Netlify, AWS, GCP, DigitalOcean, and custom VPS via SSH. <HARD-GATE> - Tests MUST pass (via `rune:verification`) before deploy runs - Sentinel MUST pass (no CRITICAL issues) before deploy runs - Both are non-negotiable. Failure = stop + report, never skip </HARD-GATE> ## Called By (inbound) - `launch` (L1): deployment phase of launch pipeline - User: `/rune deploy` direct invocation ## Calls (outbound) - `test` (L2): pre-deploy full test suite - `db` (L2): pre-deploy migration safety check - `perf` (L2): pre-deploy performance regression check - `verification` (L2): pre-deploy build + lint + type check - `sentinel` (L2): pre-deploy security scan - `browser-pilot` (L3): verify live deployment visually - `watchdog` (L3): setup post-deploy monitoring - `journal` (L3): record deploy decision, rollback plan, and post-deploy status - `incident` (L2): if post-deploy health check fails → triage and contain - L4 extension packs: domain-specific deploy patterns when context matches (e.g., @rune/devops for infrastructure) ## Cross-Hub Connections - `deploy` → `verification` — pre-deploy tests + build must pass - `deploy` → `sentinel` — security must pass before push ## Execution Steps ### Step 1 — Pre-deploy checks (HARD-GATE) Call `rune:verification` to run the full test suite and build...

Details

Author
Rune-kit
Repository
Rune-kit/rune
Created
5 months ago
Last Updated
3 days ago
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category