{% extends "base.html" %} {% block title %}Org AI Readiness — FORGE Academy{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
FORGE ACADEMY

Org AI Readiness Dashboard

Composite readiness score, competency distribution, skill gaps, and phase guidance for leadership.

{{ readiness.score }}/100
{{ readiness.tier | upper }} READINESS
{{ readiness.guidance }}
{% if readiness.phase_guidance %}
{{ readiness.phase_guidance }}
{% endif %}
{% if readiness.components %}
Readiness Components
{% for key, comp in readiness.components.items() %}
{{ comp.label }} {{ comp.value }}%
{% if comp.note %}
{{ comp.note }}
{% endif %}
{% endfor %}
{% endif %} {% if readiness.cohort and readiness.cohort.get('total_users', 0) %} {% set cohort = readiness.cohort %}
Team Competency Distribution
{% set levels = [ ('l1', 'L1 — AI Aware', '#888888', cohort.l1 | default(0)), ('l2', 'L2 — AI Capable', '#4A90E2', cohort.l2 | default(0)), ('l3', 'L3 — AI Proficient', '#00D4FF', cohort.l3 | default(0)), ('l4', 'L4 — AI Expert', '#FF6B35', cohort.l4 | default(0)), ('l5', 'L5 — AI Architect', '#FFB800', cohort.l5 | default(0)), ] %} {% set total = cohort.total_users %} {% for key, label, color, count in levels %}
{{ label }}
{{ count }}
{% endfor %}
{{ cohort.total_users }}Total Learners
{{ cohort.l2 | default(0) }}L2+ Capable
{{ cohort.l3 | default(0) }}L3+ Proficient
{{ (cohort.l4 | default(0)) + (cohort.l5 | default(0)) }}L4-L5 Expert/Architect
{% endif %} {% if readiness.skill_gaps %}
Skills with <30% Team Unlock (Priority Gaps)
{% for gap in readiness.skill_gaps %} {% endfor %}
Skill % Unlocked Impact
{{ gap.skill }} {{ gap.unlock_pct }}% {{ gap.impact | default('Blocks AI pilot feasibility') }}
{% endif %} {% if readiness.score < 40 %}
🔴 Recommended Focus: Foundation Work (Phase 0)
Your team's readiness score indicates foundational gaps that will block most AI pilot attempts. Prioritize completing Tier 1 Academy missions for all team members, and ensure at least 30% of technical staff reach L2 (AI Capable) before pursuing active pilots. Focus FORGE IGNITE submissions on Phase 1 Quick Wins that don't require extensive data preparation.
{% elif readiness.score < 65 %}
🟡 Recommended Focus: Targeted Upskilling (Phase 1–2)
Your team can execute Phase 1 Quick Win pilots. To unlock Phase 2 Augmentation ideas, close the gaps highlighted above. Prioritize Tier 2 role-specific tracks for your development and data engineering staff. Consider FORGE IGNITE ideas in the scored pipeline — ideas with Phase 1 tags are ready to pilot now.
{% else %}
🟢 Recommended Focus: Scale and Transform (Phase 2–3)
Strong readiness foundation. Your team is equipped for augmentation and early transformation initiatives. Focus FORGE IGNITE on Phase 2 Augmentation ideas. Consider investing in L4-L5 development for team members leading AI initiatives, and track pilot ROI to build the business case for Phase 3 transformation investments.
{% endif %}
Go to FORGE Academy → Innovation Dashboard → Submit Innovation Idea →
{% endblock %}