Institute for Dentistry
Tools / CQC Checklist

CQC Self-Audit

Use this tool to run a mock inspection. Any item marked 'No' is an immediate action point before your next inspection.

Are they Safe?

Are they Effective?

Are they Well-Led?

Audit Score

<div class="text-center mb-8">
  <span class="block font-sans text-6xl mb-2" :class="percentage === 100 ? 'text-green-400' : 'text-crimson'" x-text="percentage + '%'"></span>
  <span class="font-mono text-sm uppercase opacity-80" x-text="`${totalChecked} of ${totalItems} passed`"></span>
</div>

<div class="w-full bg-tooth/20 h-4 mb-8">
  <div class="h-full transition-all duration-500" :class="percentage === 100 ? 'bg-green-400' : 'bg-crimson'" :style="`width: ${percentage}%`"></div>
</div>

<div x-show="percentage < 100" class="border-t border-tooth/30 pt-4 font-serif text-sm">
  <p>You have outstanding action items. A CQC inspector would flag the unchecked boxes as breaches.</p>
  <ul class="mt-4 space-y-2 font-mono text-xs text-crimson">
    <li>&rarr; <a href="/clinical-guidelines/emergency-drugs/" class="hover:underline">Check Emergency Drugs List</a></li>
    <li>&rarr; <a href="/tools/sterilisation-log/" class="hover:underline">Generate Sterilisation Log</a></li>
  </ul>
</div>

<div x-show="percentage === 100" class="border-t border-tooth/30 pt-4 font-serif text-sm text-green-400" style="display: none;">
  <p>All core checks passed. Ensure your documentation backs up these claims.</p>
</div>