No visibility
Unknown how many agents run — including unregistered Shadow AI — and which data they can access.
AegisAI combines agent registry and Shadow AI discovery, OPA/Rego policies, Prompt Guard, hybrid ML anomalies, audit, HITL, and monitoring — so security teams can see autonomous agents and stop what they must.
Demo: demo@aegisai.com / demo123 · read-only mode
Without centralized control, AI agents become a security blind spot
Unknown how many agents run — including unregistered Shadow AI — and which data they can access.
Agent actions bypass GDPR, HIPAA, local privacy law, and corporate rules.
Events are not recorded in a signed trail or forwarded to SIEM.
Jailbreaks and data leaks through prompts pass through unfiltered.
Critical operations execute without a responsible human in the loop.
From Shadow AI discovery to SIEM export — one control plane for agents
Registration, heartbeat, semantic search, and predicted type / risk from embeddings.
Discover unregistered agents: fingerprinting, HITL confirm → register, batch clustering.
OPA + Rego: GDPR, HIPAA, privacy templates, HITL, and custom rules.
Regex, banlist, TF-IDF + Isolation Forest, and OPA guard.main on ingress.
Signed audit trail, JSONL/CSV, Syslog, CEF, Splunk HEC.
Hybrid supervised / Isolation Forest / ONNX + rules, Redis hot-cache, p95 ≤ 300 ms.
Route risky actions to manual approval workflows.
Prometheus, Grafana, alerts — API, Guard, anomaly latency, Shadow TTC, and policies.
Python SDK, LangChain/OpenAI (with discovery fallback), webhooks, SSO/OIDC, multi-tenant RBAC.
Dashboard, Prompt Guard, HITL, and Grafana monitoring in one platform
Multiple independent layers before an agent action executes
JWT / API key / SSO authentication
RBAC and tenant isolation
Prompt Guard middleware
OPA policy check + hybrid anomaly / risk score
HITL for critical operations
Signed audit + rate limits
FastAPI, OPA, Redis, PostgreSQL, Vite SPA, and observability built in
Run locally in minutes with Docker Compose
# Run (private repo access required)
cd AegisAI
cp .env.example .env
docker compose up --build -d
# Health check
curl -s http://localhost:8000/api/v1/health
# Python SDK — Prompt Guard
from aegisai import AegisClient
client = AegisClient(base_url="http://localhost:8000")
result = client.guard.validate("user prompt here")
print(result.is_safe)
Open the interactive demo with seeded data or deploy the full stack on your own infrastructure.