coworkia-guardian

Validate database migrations and enforce pre-deploy guardrails before Git pushes.

Updated Nov 6, 2025
One-click install
npx skills add https://github.com/MarketingLabb/Coworkia-Agent --skill coworkia-guardian
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: coworkia-guardian
Source: https://github.com/MarketingLabb/Coworkia-Agent/tree/main/.github/skills/coworkia-guardian
Command: npx skills add https://github.com/MarketingLabb/Coworkia-Agent --skill coworkia-guardian

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Ensures clean, predictable deployments by validating database migrations, preventing conflicts across parallel chats, and enforcing a comprehensive pre-deploy checklist before code reaches production.

Core Features & Use Cases

  • Migration integrity checks: Verifies migrations use IF NOT EXISTS and that tables/columns are not dropped or renamed.
  • Chat conflict detection: Guards against conflicting operations when multiple chats run concurrently.
  • Pre-deploy guardrails: Enforces a zero-failure policy before commits and pushes to production.
  • Activation points: Automatically runs after each autopilot block and before git pushes.

Quick Start

Run the Guardian after completing each autopilot block and before every git push to guarantee a clean, zero-surprise deployment.

Frequently Asked Questions about coworkia-guardian

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

FAQPage Schema
How do I validate database migrations before deploying to production?

Validate database migrations before deploying to production by enforcing a zero-fail checklist that verifies IF NOT EXISTS statements and prevents tables or columns from being dropped or renamed.

How do I prevent git conflicts when running parallel AI chat sessions on the same codebase?

Prevent git conflicts in parallel chat sessions by using a guardian mechanism that detects conflicting operations across concurrent chats and automatically runs before git pushes to block conflicting commits.

What is a zero-fail pre-deploy checklist for Heroku production deployments?

A zero-fail pre-deploy checklist for Heroku production deployments is an enforced set of guardrails that audits migration integrity, monitors critical files like postgres-adapter.js, and verifies readiness before pushing code.

Can I enforce deployment guardrails automatically after autopilot blocks run?

Yes, you can enforce deployment guardrails automatically after autopilot blocks run by setting activation points that trigger migration validation and conflict detection checks before any git push to production occurs.

What are the limitations of using automated migration checks for production databases?

Automated migration checks for production databases are limited to validating syntax like IF NOT EXISTS and monitoring specific critical files, meaning they cannot replace human review for complex schema logic or data backfill requirements.