ELIX ONBOARDING

ELIX ONBOARDING Command Center

The ELIX ONBOARDING command center is an in-game HR dashboard where players manage units, recruit talent, run quests, and grow their organisation across factions.

ELIX ONBOARDING is a gamified HR platform that turns the employee lifecycle — recruiting, onboarding, performance, leave, claims, and policy — into a strategy game with factions, units, quests, and seasonal campaigns.

💎 BUDGET 124,500
TALENT 48
👥 SUPPLY 34/ 50
TECHNOLOGY · ENGINEERING
📊 ANALYTICS
Q2 2026 · DAY 94
👑
CEO
Command
🏗️
VP Operations
OPS HQ
12 roles
VP Engineering
TECH HQ
34 roles
🦾
VP Sales
GROWTH HQ
18 roles
Frontend
8
Backend
12
Platform
9
AI/ML
↑ Recruiting
ACTIVITY FEED — LIVE ACTIVITY
ORG MAP
👑
T
P
Z
◈ ACTIVITY FEED
▶ Jordan Kim completed onboarding objective
⚠ PTO Shield depleting — Sam Rivera: 3 days left
✓ Q1 OKR achieved: 1.2M MAU — +600 XP awarded
⚡ 8 flight risk employees flagged by AI
◈ HR PORTAL
◎ Missions 🛡 PTO Shield 💎 Claims 🤖 AI Advisor 👥 Registry ⚙ HR Config
SUPPLY STATUS
34 / 50 members active
🏗️ OPS: 12
⚡ ENG: 34
🦾 SALES: 18
// Pre-boarding banner logic (function() { const PB_KEY = 'elixonboarding_preboarding'; const TOTAL_TASKS = 7; try { const pb = JSON.parse(localStorage.getItem(PB_KEY)) || {}; const done = Object.values(pb).filter(Boolean).length; const state = GameState.exists() ? GameState.get() : null; // Show if preboarding not fully complete if (done < TOTAL_TASKS && !(state && state.preboarding && state.preboarding.completedAt)) { const banner = document.getElementById('preboarding-banner'); if (banner) { banner.style.display = 'flex'; const prog = document.getElementById('pb-banner-progress'); if (prog) prog.textContent = done + '/' + TOTAL_TASKS + ' TASKS'; } } } catch(e) {} })();