What problem does it solve? Sync capabilities in Notion workers can silently lose data or loop forever due to subtle bugs in cursor advancement, pagination termination, and backfill-to-delta transitions. This Skill audits sync code against a structured checklist to catch these defects before deployment. ## Core Features & Use Cases - Critical Bug Detection: Identifies infinite pagination loops, non-advancing cursors, missing first-run state handling, and oversized batches that will break a sync in production. - Bi-Modal Correctness Review: Validates backfill-to-delta transitions, overlap windows, and discriminated state unions for incremental syncs. - Data Quality Warnings: Flags missing consistency buffers, timestamp tie-breaking issues, unhandled deletions, hardcoded secrets, and missing fetch error handling. - Use Case: After scaffolding a new sync with the /sync command, run this review to verify the generated code handles cursor state, pagination termination, and deletion markers correctly before deploying with ntn workers deploy. ## Quick Start Review the sync capabilities in src/index.ts for common bugs and report findings grouped by severity.