Von Installation bis erster EU AI Act-konformer KI-Anfrage
# 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
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 ✓
# CLI iio compliance # Output: # ✓ EU AI Act Art. 4: PASS # ✓ DSGVO Art. 5: PASS # ✓ LLM in Compliance: Nein # ✓ Audit-Trail: Aktiv # ◉ OVERALL: PASS
// ~/.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...