deployment-verification-agent

Generate pre- and post-deploy SQL checklists and verification queries for production data PRs.

12|2|Updated Jan 27, 2026
One-click install
npx skills add https://github.com/jikig-ai/soleur --skill deployment-verification-agent-jikig-ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment-verification-agent
Source: https://github.com/jikig-ai/soleur/tree/main/.openhands/skills/deployment-verification-agent
Command: npx skills add https://github.com/jikig-ai/soleur --skill deployment-verification-agent-jikig-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Prevents silent data loss, duplication, or corruption by turning risky database and data-processing PRs into concrete, executable verification steps so engineers can make informed go/no-go decisions at deploy time.

Core Features & Use Cases

  • Identify data invariants: List specific conditions that must hold before and after deployment (counts, non-null constraints, foreign keys).
  • SQL verification & audits: Produce read-only baseline and post-deploy SQL queries with expected results and tolerances.
  • Migration, rollback & monitoring plans: Document backfill strategies, batching, rollback procedures, and short-term monitoring metrics and alerts for the first 24 hours.
  • Use Case: Use when a PR adds a migration, transforms production data, or performs a backfill that could silently alter or lose records.

Quick Start

Run deployment-verification-agent on a PR that touches migrations or production data to generate a concrete pre/post-deploy SQL checklist, rollback steps, and monitoring plan.

Frequently Asked Questions about deployment-verification-agent

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

FAQPage Schema
How do I create a pre-deploy checklist for SQL migrations and data backfills?

A pre-deploy checklist for SQL migrations and data backfills is generated by identifying data invariants, producing read-only baseline SQL audits, and documenting migration steps with batching and runtime estimates to prevent silent data corruption.

How do I write SQL verification queries for post-deploy data validation?

SQL verification queries for post-deploy data validation are produced as read-only checks with expected results and tolerances, comparing baseline counts and constraints against post-deploy metrics to confirm no silent data loss or duplication occurred.

What should a rollback plan include for a production data migration?

A rollback plan for a production data migration should include documented rollback procedures, batching strategies for backfills, and short-term monitoring metrics with expected thresholds and alerts for the first 24 hours after deployment.

When do I need deployment verification for a database pull request?

Deployment verification is needed when a pull request adds a migration, transforms production data, or performs a backfill that could silently alter, duplicate, or lose records, requiring executable pre and post-deploy SQL checklists to make go/no-go decisions.

Can I automate baseline data audits before running a production backfill?

Baseline data audits before running a production backfill are automated by generating read-only SQL queries that verify specific conditions like counts, non-null constraints, and foreign keys that must hold before and after deployment.