publish-to-production

Automate NowStack production deployment by provisioning Convex prod and linking Vercel.

Updated Jun 1, 2026
One-click install
npx skills add https://github.com/zuzu59/z-skills --skill publish-to-production
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: publish-to-production
Source: https://github.com/zuzu59/z-skills/tree/main/skills/publish-to-production
Command: npx skills add https://github.com/zuzu59/z-skills --skill publish-to-production

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Automates end-to-end production deployment for NowStack, reducing manual setup and orchestration across Convex, Vercel, and environment configuration.

Core Features & Use Cases

  • Orchestrates Convex production deployment, mirrors backend env vars, links Vercel, writes build configuration, and deploys the first production instance.
  • Provides preflight validation, idempotent execution, and safety checks to prevent misconfigurations or secret leakage.
  • Supports post-deploy walkthroughs for OAuth, Stripe webhook, domain verification, and smoke tests after production is live.

Quick Start

Initiate the end-to-end production deployment workflow to publish the NowStack app.

Frequently Asked Questions about publish-to-production

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

FAQPage Schema
How do I automate production deployment for a Convex and Vercel stack?

Automating production deployment for Convex and Vercel involves orchestrating backend provisioning, linking Vercel, and wiring environment variables. This workflow provisions Convex prod, writes vercel.json, validates CLI presence, and deploys the first instance automatically.

What is the best way to mirror local environment variables to Convex prod?

Mirroring local environment variables to Convex prod uses the `convex env set --prod` command. This idempotent step safely syncs configurations while deferring secrets to Convex, preventing accidental secret leakage during production deployment.

How do I run preflight checks before my first Vercel and Convex production launch?

Running preflight checks before a Vercel and Convex production launch requires validating CLI presence and applying safe deploy protocols. These safety checks prevent misconfigurations by ensuring environment variables are correctly wired before the first deployment.

Does the NowStack deployment workflow handle environment variable re-syncs after key rotations?

The NowStack deployment workflow handles environment variable re-syncs after key rotations by using idempotent execution. It mirrors the local environment to Convex prod and validates configurations to ensure rotated keys are safely updated across the stack.

What are the limitations of automating environment configuration across Vercel and Convex?

Limitations of automating environment configuration include deferring all secret management strictly to Convex rather than storing them in Vercel. The workflow also requires validating specific CLI presence locally before executing any safe deploys or configuration writes.