Sovereign AI Score

Sovereign AI readiness score — 4 dimensions, 20 questions

Score your organization across 4 dimensions of sovereign AI readiness: data residency, security and compliance, integration and architecture, and governance. Get a letter grade and a recommended next step.

Data residency

Security & compliance

Integration & architecture

Governance & ops

Plugsky satisfies 20 / 20

See the full Plugsky sovereign feature set and book a workshop.

Book sovereign workshop → Sovereign AI feature page
(function(){ function grade(p) { if (p >= 90) return { letter: 'A', cls: 'acc', label: 'Excellent', msg: 'Your org is sovereign-AI ready. Plugsky is a fit.' }; if (p >= 75) return { letter: 'B', cls: '', label: 'Good', msg: 'A few gaps. Plugsky fills them — book a workshop.' }; if (p >= 50) return { letter: 'C', cls: 'warn', label: 'Mixed', msg: 'Several gaps. Significant work needed.' }; return { letter: 'D', cls: 'bad', label: 'Risky', msg: 'You are not ready for sovereign AI today.' }; } document.getElementById('scoreBtn').onclick = function() { var cats = ['r','s','i','g']; var names = { r: 'Residency', s: 'Security', i: 'Integration', g: 'Governance' }; var totalChecked = 0, totalAll = 0; var html = '
'; cats.forEach(function(cat) { var items = document.querySelectorAll('input[name^="' + cat + '"]:checked'); var total = document.querySelectorAll('input[name^="' + cat + '"]'); var checked = items.length; totalChecked += checked; totalAll += total.length; var pct = Math.round((checked / total.length) * 100); html += '

' + names[cat] + '

' + '
' + pct + '
'; }); html += '
'; var overall = Math.round((totalChecked / totalAll) * 100); var g = grade(overall); html += '
' + '
' + g.letter + '
' + '
' + overall + '% / 100%
' + '
' + g.msg + '
'; document.getElementById('result').style.display = 'block'; document.getElementById('result').innerHTML = html; }; })();