Fixing CI Overview Diagnose failing CI from GitHub logs, fix each issue with an atomic commit, and iterate locally until the full suite is green — then push once. Principle: One fix, one commit. Never push until all checks pass locally. Workflow Step 1: Diagnose Read top-to-bottom and list all distinct failures before fixing any of them. Find the first error in each job — not symptoms that cascade from it. Step 2: Fix Loop (repeat per failure) a. Reproduce Check the project's AGENTS.md for exact commands. Common mappings: | CI Job | Typical Local Command | |------------|----------------------…