What problem does it solve? Editing a workflow that spans Flutter frontend, Python backend, and shared schema files without reading every related file first leads to field mismatches, broken contracts, and missed authorization gaps. ## Core Features & Use Cases - Chunked File Reading: Reads all files for a workflow (checkout, orders, auth, payments, products, schema) in four indexed chunks: frontend, backend, schema, and tests. - Cross-Reference Analysis: Detects camelCase vs snake_case field mismatches, request/response format drift, error handling gaps, enum mismatches, and missing authorization enforcement between frontend and backend. - Logic Checkpoint Verification: Validates all Logic Checkpoints listed in docs/WORKFLOW_INDEX.md and reports findings in a standard BUG format. - Use Case: Before modifying the checkout flow across three or more files, run the audit to surface a Stripe payment field that the Dart app sends as camelCase but the Python handler expects as snake_case. ## Quick Start Ask the AI to run /audit-workflow checkout to audit the checkout workflow before making changes.