What problem does it solve? Frontend teams need every quality gate — formatting, linting, type checking, tests, mutation, visual, and Lighthouse — to pass before committing, but running and fixing each check manually is slow and error-prone. This Skill orchestrates the entire local CI loop through the repository's make targets and fixes failures at the root cause until everything exits green. ## Core Features & Use Cases - Full CI orchestration: Executes the profile-mapped make.ci target covering format, ESLint, TypeScript, markdownlint, jscpd, metrics, dependency-cruiser, unit, integration, E2E, visual, mutation, and Lighthouse checks. - Guided failure remediation: Maps each failing check to a concrete fix strategy and a companion skill (code-organization, complexity-management, architecture, testing, accessibility). - Capability-aware degradation: Skips visual, mutation, or Lighthouse lanes with explicit notes when the profile disables those capabilities, and enforces a 5-iteration fix cap before escalating. - Use Case: Before finishing a React/TypeScript pull request, run the CI workflow to validate all quality gates, automatically fix an ESLint violation and a failing Jest suite, and re-run until make ci exits 0. ## Quick Start Ask the AI to run the full frontend CI checks and fix any failures before committing your React/TypeScript changes.