Onboarding

In 5 Schritten bereit

Von Installation bis erster EU AI Act-konformer KI-Anfrage

Schritt 1 von 5
⬡ Installation
Installiere das IIO Framework in unter 30 Sekunden.
# Option 1: SDK (Python)
pip install iio-governance

# Option 2: One-liner Installer
bash <(curl -s https://iio.space/install.sh)

# Verifizieren
iio version  # → iio-governance 1.0.0
Schritt 2 von 5
Erste Triage
Teste die deterministische Event-Triage — kein LLM, sofort.
from iio_governance import SmartTriage

triage = SmartTriage()
result = triage.triage(
    subject="Server down in production",
    body="Critical failure, team affected"
)

print(result.priority)        # P1
print(result.routing_target)  # incident
print(result.confidence)      # 0.95
print(result.llm_used)        # False ✓
Schritt 3 von 5
EU AI Act Compliance
Führe deinen ersten Compliance-Check durch.
# CLI
iio compliance

# Output:
# ✓ EU AI Act Art. 4: PASS
# ✓ DSGVO Art. 5:     PASS
# ✓ LLM in Compliance: Nein
# ✓ Audit-Trail:       Aktiv
# ◉ OVERALL: PASS
Schritt 4 von 5
⊳ MCP Integration
Verbinde IIO mit Claude, Cursor oder VSCode Copilot.
// ~/.claude/config.json
{
  "mcpServers": {
    "iio": {
      "command": "python3",
      "args": ["/path/to/iio/base/mcp-server/iio-mcp-server.py"],
      "env": {
        "IIO_SPACE": "/path/to/workspace"
      }
    }
  }
}

// In Claude: check_service_health, get_compliance_posture...
Schritt 5 von 5
Bereit!
Du bist EU AI Act konform und bereit für den Produktionseinsatz.