beta

Deploy Command

Commands

Custom slash command for running deployment checklists and workflows.

1503/26/2026
markdown1 file
command.md887 B

name: deploy description: Run the deployment checklist and deploy to the configured environment. Use before any production deployment. disable-model-invocation: true

Deploy Command

When deploying, follow this checklist:

Pre-deploy

  1. Run all tests: verify they pass
  2. Check for uncommitted changes
  3. Verify you're on the correct branch
  4. Check environment variables are set

Deploy steps

  1. Build the project
  2. Run database migrations if needed
  3. Deploy to staging first
  4. Verify staging deployment
  5. Deploy to production
  6. Verify production deployment

Post-deploy

  1. Check health endpoints
  2. Monitor error rates for 15 minutes
  3. Notify team in Slack/Discord
  4. Update deployment log

Rollback plan

If issues are detected:

  1. Revert to previous deployment
  2. Rollback database migrations if applied
  3. Notify team of rollback
  4. Create incident report