The Qt Code Review skills allow developers to augment code quality analysis with AI agents - both for Qt C++ and QML code. Instead of a laborious manual walkthrough of every file, the AI agent runs a deterministic linter followed by six parallel deep-analysis agents and surfaces real issues with mitigations in a few minutes. The promise behind these review skills is simple: the linter is authoritative and the agents will not second-guess it ; only findings above 80/100 confidence are reported as confirmed issues; and the skills are read-only - they will not modify your code. The Qt C++ Review skill targets Qt6 C++ source files and headers. The QML Review skills target Qt6 QML files and optionally invoke the system qmllint for type-level checks. Both skills can operate on a single commit, a directory, or an entire project, and they share the same three-phase analysis architecture. Two review skills, one architecture Both review skills target Qt6 source. The C++ skill operates on .cpp, .h, and .hpp files.…