Lint and Validate Skill MANDATORY: Run appropriate validation tools after EVERY code change. Do not finish a task until the code is error-free. Procedures by Ecosystem Node.js / TypeScript 1. Lint/Fix: or 2. Types: 3. Security: Python 1. Linter (Ruff): (Fast & Modern) 2. Security (Bandit): 3. Types (MyPy): The Quality Loop 1. Write/Edit Code 2. Run Audit: 3. Analyze Report: Check the "FINAL AUDIT REPORT" section. 4. Fix & Repeat: Submitting code with "FINAL AUDIT" failures is NOT allowed. Error Handling - If fails: Fix the style or syntax issues immediately. - If fails: Correct type mismatche…