Why How Components Agents Alignment Code Pricing FAQ GitHub
Sound

Your AI has an immune
system now.

Diogenesis monitors what your AI does at runtime and detects when behavior deviates from baseline. Zero dependencies. Pure Python. One command.

Behavioral threat detection that catches what firewalls and antivirus miss.

Built-in AI alignment with a 7-layer governance pipeline.

$ pip install diogenesis-sdk

Xenobot security agents — always patrolling

AI agents are autonomous.
Your security tools aren't.

Traditional security was built for humans clicking buttons, not AI agents making thousands of decisions per second.

Firewalls

Blind spot

Block known threats at the network edge. Can't detect when your AI agent decides to escalate its own permissions or access resources outside its intended scope.

Antivirus

Blind spot

Signature-based detection matches known malware. An AI agent acting outside its intended scope isn't malware — it's emergent behavior with no signature to match.

Monitoring

Blind spot

Tracks CPU, memory, and uptime. Tells you nothing about what your AI is actually doing — which modules it imports, what files it writes, or what connections it makes.

Diogenesis detects novel threats that signature-based security tools miss — because it monitors behavior, not databases. When malware, hackers, or rogue AI agents act in ways your system has never seen before, Diogenesis catches it.

Behavioral monitoring,
not signature matching.

Diogenesis sits inside your application, observes every action, and reacts when behavior deviates from baseline.

Runtime Events imports, files, net, proc
Interceptors capture & record
Classification
KNOWN UNEXPECTED SUSPICIOUS
Policy Engine pattern matching
Response
LOG WARN ALERT

Five layers of behavioral defense.

Inspired by biological immune systems — each component mirrors a defense mechanism found in living organisms.

Interceptors

Capture every import, file write, subprocess, and network connection at runtime. Nothing leaves your application unobserved.

4 event classes

Policy Engine

Classify behavioral patterns — exfiltration, privilege escalation, shadow imports — with graduated response levels from LOG to ALERT.

5 threat patterns

Voltage Field

Track per-module behavioral coherence over time, like bioelectric fields in living tissue. Detect drift before it becomes a threat.

real-time coherence

Fibonacci Clock

Time system heartbeats at PHI-ratio intervals — 3, 5, 8, 13, 21 cycles. Detect resonance patterns between subsystems that periodic checks miss.

PHI-ratio intervals

Xenobot Agents

Autonomous investigative agents that patrol your system, detect anomalies, and share learning across the swarm — like white blood cells.

swarm intelligence

Autonomous security agents
that work for you.

Deploy intelligent agents that patrol, detect, investigate, and respond — 24/7, without human intervention.

WatchBot

Monitors websites for structural changes, price updates, navigation shifts, and content modifications. Detects when competitors change pricing, add products, or restructure their site. Cross-site correlation spots industry-wide trends when multiple sites change simultaneously.

Available Now

SecurityBot

Lives inside your AI application. Patrols every import, file write, network connection, and subprocess. Investigates anomalies through a 5-phase cycle: Observe, Question, Hypothesize, Test, Judge. Shares learning across the swarm so all agents get smarter together.

Core Feature

Custom Agents

The Diogenesis SDK provides the XenobotAgent base class. Define a patrol pattern, a detection rule, and a response action. Your agent inherits investigation, learning, prediction, and swarm coordination automatically. 50 lines of code to create an agent that thinks.

SDK
Every agent uses the same biological architecture: patrol like an immune cell, detect anomalies through coherence monitoring, investigate with hypothesis-driven reasoning, predict problems before they happen, and share learning across the swarm. Born from Prometheus Prime — a self-improving AI running 24/7 since February 2025, currently at 94,000+ cycles with 26 autonomous agents (6 of which self-organized without being programmed).

AI Alignment — Built In,
Not Bolted On.

Diogenesis doesn't just monitor your AI. It governs it. Every action is evaluated through a 7-layer safety pipeline.

1

Warden Gate

Semantic pattern matching against 24 frozen axioms — immutable safety rules that cannot be modified at runtime.

2

AST Axiom Checker

Structural analysis of code patterns. Catches unsafe constructs before they execute.

3

Governance Evaluator

Multi-stage evaluation pipeline that scores actions against policy constraints.

4

Axiom Hardening

Meta-monitor that verifies the verifiers — ensures the safety pipeline itself hasn't been compromised.

5

Deception Detection

Canary integrity checks that detect attempts to circumvent or manipulate the governance system.

6

Audit Chain

Immutable hash-linked log of every governance decision. Tamper-proof and permanent.

7

Chamber Warden

Interaction-level governance — every user-facing response passes through final safety validation.

Weapon commands blocked in 0.11ms. Safety bypass attempts detected and rejected. Reasoning attacks that argue for removing safety constraints — caught. Every evaluation logged to an immutable audit chain.
Try it yourself: The Prometheus Prime hub includes a live governance demo where you can type any prompt and watch the 7-layer pipeline evaluate it in real time. Weapon commands blocked in 0.11ms.
24 Frozen Axioms
7 Layer Pipeline
0.11ms Block Response
37/37 Alignment Tests
Immutable Audit

Everything Diogenesis can do.

  • Import interception — track every Python import at runtime
  • File system monitoring — detect unexpected reads, writes, deletions
  • Network monitoring — log all outbound connections with destination and payload size
  • Subprocess monitoring — capture every spawned process and its arguments
  • Behavioral baseline — automatically learn what "normal" looks like
  • 5 built-in threat patterns — exfiltration, suspicious imports, write bursts, network scans, shadow imports
  • Custom pattern definition — BehavioralPattern class for your own patterns
  • Graduated response — LOG → WARN → ALERT based on severity
  • Anomaly classification — KNOWN, UNEXPECTED, or SUSPICIOUS
  • 5-phase cycle — Observe, Question, Hypothesize, Test, Judge
  • Hypothesis generation — agents explain what they find
  • Evidence collection — supporting data gathered before verdict
  • Confidence scoring — 0-1 score on every verdict
  • Trend analysis — 200-reading rolling history with linear regression
  • Predictive alerts — PREDICTED_COLLAPSE warns before degradation
  • Recovery detection — PREDICTED_RECOVERY confirms healing
  • Shared learning — findings propagate to all swarm agents
  • Cross-domain correlation — detect multi-system stress simultaneously
  • Root cause analysis — identify the source of cascading failures
  • Emergent agents — system creates new agents for unmonitored regions
  • Agent lifecycle — agents born when needed, dissolve when complete
  • Voltage field — per-module coherence like bioelectric fields in tissue
  • Fibonacci timing — PHI-ratio heartbeat (3, 5, 8, 13, 21 cycles)
  • Resonance detection — harmonic alignment between subsystems
  • Standing wave analysis — stable patterns indicating health

Three lines to get started.

Install. Import. Monitor. Diogenesis starts protecting your application immediately.

from diogenesis import start_monitoring

# Start behavioral monitoring with one call
monitor = start_monitoring()

# Your AI application runs normally
# Diogenesis watches every import, file write,
# network connection, and subprocess in the background

# Check what's been observed
report = monitor.get_report()
print(report.summary)
from diogenesis import get_voltage_field

# Get real-time behavioral coherence data
field = get_voltage_field()

# Check per-module health scores
for module, voltage in field.modules.items():
    if voltage.coherence < 0.7:
        print(f"⚠ {module}: coherence={voltage.coherence}")
    else:
        print(f"✓ {module}: stable at {voltage.coherence}")
from diogenesis import PolicyEngine

# The policy engine detects 5 behavioral threat patterns:
#   - Data exfiltration (unexpected outbound connections)
#   - Privilege escalation (unauthorized permission changes)
#   - Shadow imports (loading modules outside baseline)
#   - Resource abuse (excessive file/network activity)
#   - Behavioral drift (gradual deviation from baseline)

engine = PolicyEngine()
engine.on_threat("exfiltration", severity="ALERT",
    callback=lambda e: print(f"🚨 Exfiltration detected: {e}")
)
from diogenesis import XenobotSwarm

# Deploy autonomous investigative agents
swarm = XenobotSwarm(agents=5)
swarm.deploy()

# Agents patrol, detect anomalies, and share learning
# Like white blood cells in a biological immune system

# Query swarm intelligence
threats = swarm.get_consensus_threats()
for threat in threats:
    print(f"[{threat.confidence:.0%}] {threat.description}")

Built right.

Zero Dependencies
104 Tests
Python 3.8+
Behavioral Baseline
Graduated Response
5 Threat Patterns
Biologically Inspired
MIT License
Works with Any AI Framework

Start free. Scale when ready.

The core SDK is free and open source forever. Paid tiers add advanced capabilities for teams that need them.

Pro

Diogenesis Agents Coming Soon

$49/mo

Core features plus autonomous investigation and advanced timing.

  • Everything in Core
  • Xenobot Swarm agents
  • Fibonacci Clock timing
  • Swarm intelligence
  • Priority email support
  • Full 7-layer governance pipeline
Get Notified
Enterprise

Diogenesis Enterprise

Custom

For teams that need custom topology, dedicated support, and on-premise deployment.

  • Everything in Agents
  • Custom network topology
  • On-premise deployment
  • Dedicated support engineer
  • SLA guarantees
  • Custom axiom definitions + compliance reporting
Contact Us

Not a prototype. A product.

104
Automated Tests
0
External Dependencies
94K+
Cycles Tested
26
Source Files
5
Threat Patterns

Extracted from Prometheus Prime, a self-improving AI system running 24/7 since February 2025.

Common questions.

Diogenesis intercepts four categories of runtime behavior: module imports (what code your AI loads), file system writes (what data it creates or modifies), network connections (where it communicates), and subprocess execution (what external programs it launches). Every event is logged, classified, and compared against a behavioral baseline.

Diogenesis is designed for minimal overhead. Interceptors use Python's built-in hooking mechanisms and add negligible latency to individual operations. The Voltage Field and Policy Engine run asynchronously. For most applications, the performance impact is unmeasurable.

A firewall sits at the network boundary and blocks known bad traffic. Diogenesis sits inside your application and monitors behavior. It detects when your AI does something unexpected — like importing a module it's never used before or writing to a directory outside its scope — regardless of whether a firewall would consider that traffic suspicious.

Diogenesis supports Python 3.8 and above. It's tested against Python 3.8, 3.9, 3.10, 3.11, 3.12, and 3.13. No compilation step or C extensions required — it's pure Python.

Yes. Diogenesis uses only the Python standard library. No requests, no numpy, no third-party packages. This is a deliberate design decision — a security tool should not expand your attack surface. What you install is what you get.

Yes. Diogenesis Core is MIT-licensed and production-ready with 104 automated tests. It was extracted from Prometheus Prime, a system that has been running continuously since February 2025. Start with the free tier in staging, then deploy to production when you're confident in your baseline.

The Agents tier (Xenobot Swarm + Fibonacci Clock) is coming soon. Enterprise licensing with custom topology and dedicated support is available now — contact garry@diogenicsecurity.com for details. The Core SDK with Interceptors, Policy Engine, and Voltage Field is free and available today.

Your opinion means a lot.

Feedback