What problem does it solve? Working on the CareerOS PostgreSQL database requires knowing its exact schema, ENUM values, indexes, and safety rules. This Skill provides a quick reference for core tables, the application_status lifecycle, JSONB querying patterns, and pgvector similarity queries so migrations and queries are written correctly the first time. ## Core Features & Use Cases - Schema Quick Reference: Documents core tables (user_profiles, cv_documents, job_listings, applications, interaction_logs), the application_status ENUM flow, key indexes, and analytical views like cv_performance_stats. - Migration Guidance: Shows the Alembic workflow for autogenerating and applying migrations, plus how to add new PostgreSQL ENUM values safely. - Advanced Query Patterns: Provides ready-to-use examples for JSONB field extraction, funnel analysis queries, and vector similarity search for semantic duplicate detection on job listings. - Use Case: When asked to add a new column to the applications table or write a query measuring interview conversion rates, this Skill supplies the exact table structure, ENUM constraints, and SQL patterns needed. ## Quick Start Ask the AI to write an Alembic migration that adds a new column to the applications table using the project database schema.