rune-deploy

Deploy applications to Vercel, Netlify, AWS, GCP, and VPS with pre-deploy verification and health checks.

1|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/dangvu008/VietTruyen --skill rune-deploy-dangvu008
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rune-deploy
Source: https://github.com/dangvu008/VietTruyen/tree/main/.agents/skills/rune-deploy
Command: npx skills add https://github.com/dangvu008/VietTruyen --skill rune-deploy-dangvu008

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Deploying to production without proper verification leads to broken releases, security vulnerabilities, and silent integration failures. This Skill enforces a gated deployment pipeline so tests, security scans, and release checklists pass before anything ships. ## Core Features & Use Cases - Gated Deployment Pipeline: Blocks deploys until the full test suite and security scan pass, with no exceptions. - Multi-Platform Support: Detects and deploys to Vercel, Netlify, Fly.io, Docker/VPS, and npm-based targets automatically. - Progressive Rollout: Supports canary releases and feature-flag staged rollouts with watchdog monitoring gates at each traffic percentage. - Use Case: You finish a feature and say "ship it" — the Skill runs tests and security scans, verifies the release checklist (version bump, changelog, rollback plan), deploys to your platform, confirms the live URL returns HTTP 200, and activates post-deploy monitoring. ## Quick Start Deploy my application to production and verify it is live with monitoring enabled.

Frequently Asked Questions about rune-deploy

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

FAQPage Schema
How do I deploy an application to Vercel or Netlify safely?

Run the deploy command after the full test suite and security scan pass. The Skill detects your platform from vercel.json or netlify.toml, runs the platform deploy command, then verifies the live URL returns HTTP 200 before declaring success.

What is a canary deployment with feature flags?

A canary deployment releases changes to 5% of traffic first, monitors error rate and latency for 15-30 minutes, then expands to 25%, 50%, and 100% if gates pass. Feature flags control exposure, and any failed gate triggers an immediate rollback to 0%.

Can I deploy if tests or security scans fail?

No. The Skill enforces a hard gate: both the verification suite (tests, lint, types, build) and the security scan must pass before any deploy runs. Failures stop the pipeline and report the issue instead of skipping steps.

Why do webhooks silently fail after deploying to Cloudflare Workers?

Silent webhook failures usually mean no event types are selected in the provider dashboard — Polar defaults to zero events. Verify endpoint reachability, secret configuration via wrangler secret list, and event subscriptions after every deploy.

When should I rollback versus fix-forward a failed deployment?

Rollback immediately for data corruption or a fully broken worker returning 500s. Fix-forward for configuration issues like wrong webhook secrets, expired API keys, or missing dashboard event selections, since these live outside the code.