kortix-rollback

Roll back Kortix production deployments to stable versions with prebuilt artifacts.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/jbreel77888/Agent-AiNorx --skill kortix-rollback
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kortix-rollback
Source: https://github.com/jbreel77888/Agent-AiNorx/tree/main/.claude/skills/kortix-rollback
Command: npx skills add https://github.com/jbreel77888/Agent-AiNorx --skill kortix-rollback

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

When a new Kortix production release introduces critical breaking issues, you need a fast, safe way to revert to a working older version without rebuilding artifacts or risking data corruption from incompatible database migrations.

Core Features & Use Cases

  • Coordinated multi-surface rollback: Reverts both frontend (via Vercel build promotion) and backend (via Argo CD image tag swap) to any previously released version using prebuilt artifacts, with zero rebuild steps.
  • Built-in safety guardrails: Includes a mandatory pre-rollback database migration drift check to avoid rolling back to a version incompatible with the current production schema, plus automatic skipping of frontend rebuilds for backend-only changes to prevent frontend clobbering.
  • Use Case: If v0.9.70 of Kortix breaks user authentication, use this skill to roll back to v0.9.69 in minutes while you fix the issue, then promote the fixed version to return to latest with no manual undo steps.

Quick Start

Use the kortix-rollback skill to safely roll back Kortix production to version v0.9.69 after confirming all database migrations between v0.9.69 and the current version are additive and safe for the older codebase.

Frequently Asked Questions about kortix-rollback

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

FAQPage Schema
How do I roll back a production deployment on Vercel and Argo CD without rebuilding artifacts?

To roll back production on Vercel and Argo CD without rebuilding, you promote a previously built Vercel artifact for the frontend and swap the Argo CD image tag for the backend. This reverts both surfaces to a prior stable version using prebuilt artifacts.

What is the safest way to revert a broken production release during an incident response?

The safest way to revert a broken production release during incident response is to use prebuilt artifacts for rollback while running a database migration drift check. This validates schema compatibility before reversion to prevent data corruption.

How do I handle database migration drift when rolling back to an older production version?

To handle database migration drift when rolling back, you must run a pre-rollback validation check. This ensures that database migrations between your current version and the target older version are additive and safe for the older codebase.

Can I skip the frontend rebuild when rolling back backend-only changes in Argo CD?

Yes, you can skip the frontend rebuild when rolling back backend-only changes in Argo CD. The rollback process automatically skips frontend Vercel build promotions for backend-only changes to prevent clobbering the existing stable frontend.

Does Vercel build promotion support coordinated rollbacks with Argo CD image tag swaps?

Vercel build promotion supports coordinated rollbacks with Argo CD image tag swaps by targeting any previously released version. It reverts both frontend and backend surfaces simultaneously using prebuilt artifacts with zero rebuild steps.

When should I not use a GitOps rollback approach for production incidents?

You should not use a GitOps rollback approach for production incidents when database migrations between your current and target versions are not additive. Non-additive schema changes require forward-fixing instead of reverting to avoid data corruption.