30 lines
1.1 KiB
Bash
Executable File
30 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
echo "=== WEVAL 100% COVERAGE SIX SIGMA LIVE ==="
|
|
curl -sk --max-time 5 http://127.0.0.1:5890/api/wevia-v74-sixsigma-api.php -H "Host: weval-consulting.com" 2>/dev/null > /tmp/ss.json
|
|
python3 << 'PY2'
|
|
import json
|
|
d = json.load(open('/tmp/ss.json'))
|
|
ss = d['six_sigma']
|
|
print(f"📊 SIX SIGMA")
|
|
print(f" DPMO: {ss['dpmo']} (target: {ss['target_dpmo']})")
|
|
print(f" Sigma level: {ss['sigma_level']} · {ss['status']}")
|
|
print(f" DMAIC phase: {ss['dmaic_phase']}")
|
|
print()
|
|
print(f"✅ NONREG")
|
|
nr = d['nonreg']
|
|
print(f" {nr['pass']}/{nr['total']} ({nr['pct']}%) · {nr['categories']} categories · {nr['fail']} fails")
|
|
print()
|
|
print(f"🎭 GAP AGENTS FACTORY")
|
|
g = d['gap_agents']
|
|
print(f" Created: {g['created']}/{g['total']} ({g['pct']}%) · Pending: {g['pending']}")
|
|
print()
|
|
print(f"🌐 COVERAGE")
|
|
c = d['coverage']
|
|
print(f" Pages HTML: {c['pages_html']}")
|
|
print(f" Intents wired: {c['intents_wired']}")
|
|
print(f" Avatar registry: {c['avatar_registry']} agents")
|
|
print(f" WEVIA autonomy: {c['wevia_autonomy_pct']}%")
|
|
print()
|
|
print(f"🏁 STATUS GLOBAL: {d['status_global']}")
|
|
PY2
|