AI Governance Maturity Assessment Tool
Reviewed: June 4, 2026
Use this interactive self-assessment to evaluate your organization’s AI governance maturity across 5 dimensions. Answer each question honestly — the tool will calculate your maturity score and provide targeted recommendations.
const dims = [
{id:’gv‘,name:’Govern‘,q:[
‚Has your organization appointed an AI governance lead or committee?‘,
‚Are AI ethics policies documented and communicated to all relevant employees?‘,
‚Is AI risk formally included in enterprise risk management processes?‘,
‚Does leadership regularly review AI governance metrics and incidents?‘,
‚Are there clear escalation paths for AI-related ethical concerns?‘
]},
{id:’mp‘,name:’Map‘,q:[
‚Do you maintain a complete inventory of all AI systems in production?‘,
‚Are AI systems classified by risk tier (high/medium/low)?‘,
‚Is the data used by each AI system documented and traceable?‘,
‚Are third-party/vendor AI systems included in your governance scope?‘,
‚Do you document the intended use cases and limitations of each AI system?‘
]},
{id:’ms‘,name:’Measure‘,q:[
‚Do you continuously monitor model performance for drift and degradation?‘,
‚Are fairness/bias metrics tracked for systems affecting individuals?‘,
‚Do you conduct regular adversarial testing on high-risk AI systems?‘,
‚Are explainability assessments performed for high-stakes decisions?‘,
‚Is there a process for measuring AI system ROI and business impact?‘
]},
{id:’mg‘,name:’Manage‘,q:[
‚Are automated controls in place to prevent or limit harmful AI outputs?‘,
‚Do you have documented incident response procedures specific to AI failures?‘,
‚Is human review required for high-risk AI decisions before they take effect?‘,
‚Are AI systems regularly retrained or updated based on performance data?‘,
‚Do you maintain compliance documentation aligned with EU AI Act/NIST AI RMF?‘
]},
{id:’lx‘,name:’Learn‘,q:[
‚Do you conduct post-incident reviews for AI failures and near-misses?‘,
‚Is there a feedback mechanism for users affected by AI decisions?‘,
‚Does your organization participate in industry AI governance communities?‘,
‚Are lessons learned from AI incidents integrated into updated policies?‘,
‚Do you benchmark your AI governance practices against peer organizations?‘
]}
];
const opts = [
{l:’Not started‘,v:0},
{l:’Initial / Ad hoc‘,v:1},
{l:’Developing‘,v:2},
{l:’Defined‘,v:3},
{l:’Managed / Measured‘,v:4},
{l:’Optimized‘,v:5}
];
const descs = [
{min:0,max:24,level:’Initial‘,color:’#ef4444′,rec:’Critical priority: Establish basic AI governance. Start with an AI inventory and appoint a governance lead. Adopt NIST AI RMF 2.0 as your framework.‘},
{min:25,max:49,level:’Developing‘,color:’#f97316′,rec:’Good progress: Strengthen measurement and monitoring. Implement continuous model monitoring, begin bias audits, and formalize incident response.‘},
{min:50,max:74,level:’Defined‘,color:’#eab308′,rec:’Solid foundation: Focus on automation. Deploy governance tools, automate compliance documentation, and integrate AI checks into your MLOps pipeline.‘},
{min:75,max:99,level:’Managed‘,color:’#22c55e‘,rec:’Strong practice: Optimize and refine. Benchmark against peers, participate in industry initiatives, and implement advanced controls like AI-powered compliance monitoring.‘},
{min:100,max:125,level:’Optimized‘,color:’#4f46e5′,rec:’Industry leading: Share your practices, contribute to standards development, and continuously innovate your governance approach.‘}
];
let i=0;
function build(){
const c=document.getElementById(‚gmat-questions‘);
let h=“;
dims.forEach((d,di)=>{
h+=`
${di+1}. ${d.name} (${d.id.toUpperCase()})
`;
d.q.forEach((q,qi)=>{
i++;
h+=`
${i}. ${q}
${opts.map(o=>`${o.l} (${o.v})`).join(“)}
`;
});
});
c.innerHTML=h;
}
build();
function gmatCalc(){
let total=0,ds={};
let qi=0;
dims.forEach(d=>{
let s=0;
d.q.forEach(q=>{
qi++;
const el=document.getElementById(‚q’+qi);
s+=parseInt(el.value);
});
ds[d.name]=s;
total+=s;
});
const desc=descs.find(d=>total>=d.min&&total<=d.max)||descs[0];
let h=`
Overall Maturity: ${desc.level} — ${total}/125
`;
h+=`
`;
h+=`
Scores by Dimension
| Dimension | Score | Max |
|---|---|---|
| ${k} | ${v} | 25 |
`;
h+=`
`;
document.getElementById(‚gmat-results‘).innerHTML=h;
document.getElementById(‚gmat-results‘).style.display=’block‘;
}
