Routing & Security Layer
Deterministic Orchestration for Secure Protocol Routing
SlavkoShell 2.0 is the routing and security gateway of the S.L.A.V.K.O.β’ orchestration system. It validates all inputs, routes requests to appropriate pipelines, and enforces security policies with zero-trust architecture.
# Run with Ollama
ollama run mladen-gertner/slavkoshell-v2
# Validate Input
curl -X POST http://localhost:11434/api/generate \
-d '{
"model": "mladen-gertner/slavkoshell-v2",
"prompt": "Validate: {\"input\": \"test data\", \"type\": \"text\"}"
}'| Check | Description |
|---|---|
| Schema Validation | JSON contract conformance |
| Type Checking | Field type verification |
| Size Limits | Max 100KB input |
| Injection Detection | SQL, XSS, command injection |
| PII Screening | Personal data detection |
| Encoding Validation | UTF-8 only |
- Validate First: Never process unvalidated input
- Schema Strict: Reject malformed requests
- Audit Everything: Log all routing decisions
- Fail Secure: When in doubt, reject
{
"validation": {
"status": "valid|invalid|suspicious",
"checks_passed": [],
"checks_failed": []
},
"routing": {
"pipeline": "standard|multimodal|code|vision",
"priority": "normal|high|critical"
},
"security": {
"threat_level": "none|low|medium|high|critical",
"pii_detected": false,
"injection_detected": false
},
"audit": {
"shell_version": "2.0",
"request_hash": "sha256:..."
}
}Mladen Gertner β FormatDiscβ’, Zagreb, Croatia
π§ mladen@formatdisc.hr | π formatdisc.hr
Β© 2026 FormatDiscβ’, vl. Mladen Gertner β All Rights Reserved