Skip to main content

The runtime enforcement layer for agentic AI systems.

Project description

EnforceCore

EnforceCore

The runtime enforcement layer for agentic AI systems.
Policy-driven · Fail-closed · Tamper-proof audit trails

PyPI Downloads Python CI License Ruff

Quick Start · Architecture · Roadmap · API Reference · Contributing

⚠️ Disclaimer: EnforceCore is provided "as is", without warranty of any kind, express or implied. It is a technical enforcement tool — not a compliance certification. Using EnforceCore does not guarantee regulatory compliance with any standard or law. See DISCLAIMER.md and LICENSE for full legal terms.


The Problem

Most agent safety solutions operate at the prompt level — they ask the LLM to be safe. This is fundamentally broken: prompts can be bypassed, jailbroken, or ignored.

EnforceCore operates at the runtime boundary — the moment before a tool or API is actually called. At this layer, enforcement is mandatory, not advisory. If a call violates policy, it never executes. Period.

from enforcecore import enforce

@enforce(policy="policies/strict.yaml")
async def search_web(query: str) -> str:
    """This call is policy-enforced before execution."""
    return await api.search(query)

Why EnforceCore?

Prompt Guardrails EnforceCore
Layer Inside the LLM Runtime call boundary
Bypassable? Yes (jailbreaks, prompt injection) No (code-level enforcement)
Auditable? No Yes (Merkle-chained trails)
Property-tested? No Yes (22 Hypothesis properties)
EU AI Act aligned? ✅ (see disclaimer)

EnforceCore vs. OS-level security: EnforceCore operates at the application semantic layer — it understands tool calls, PII, and cost budgets. It does not replace SELinux, AppArmor, seccomp, or container sandboxing. These are complementary — use both for defense-in-depth.


Architecture

  ┌───────────────────────────────────────────────────────────────┐
  │        Agent  (LangGraph · CrewAI · AutoGen · Python)         │
  └───────────────────────────────┬───────────────────────────────┘
                                  │  tool_call(args)
                                  ▼
                    ┌─────────────────────────┐
                    │   @enforce(policy=…)    │  ← decorator / adapter
                    └─────────────┬───────────┘
                                  │
  ╔═══════════════════════════════▼═══════════════════════════════╗
  ║                           Enforcer                            ║
  ║                                                               ║
  ║  ┌─────────────────┐  ┌─────────────────┐  ┌─────────────┐    ║
  ║  │  Policy Engine  │  │    Redactor     │  │    Guard    │    ║
  ║  │ ─────────────── │  │ ─────────────── │  │ ─────────── │    ║
  ║  │  YAML rules     │─▶│  PII detect     │─▶│ time · mem  │    ║
  ║  │  allow / deny   │  │  & redact       │  │ cost · kill │    ║
  ║  └─────────────────┘  └─────────────────┘  └──────┬──────┘    ║
  ║                                                    │          ║
  ║  ┌─────────────────────────────────────────────────▼───────┐  ║
  ║  │                       Audit Trail                       │  ║
  ║  │          Merkle chain · tamper-proof · always logs      │  ║
  ║  └─────────────────────────────────────────────────────────┘  ║
  ╚═══════════════════════════════════════════════════════════════╝
                                  │
               ┌──────────────────┴──────────────────┐
               ▼                                     ▼
       ✅  allowed                             ❌  blocked
        → execute tool                      → raise PolicyViolation
Policy EngineDeclarative YAML policies — allowed tools, denied tools, violation handling
EnforcerIntercepts every call, evaluates policy, blocks or allows
RedactorReal-time PII detection and redaction on inputs & outputs
AuditorTamper-proof Merkle-tree audit trail for every enforced call
GuardResource limits (time, memory, cost) with hard kill switch

Quick Start

Install

pip install enforcecore

1. Define a Policy

# policy.yaml
name: "my-agent-policy"
version: "1.0"

rules:
  allowed_tools:
    - "search_web"
    - "calculator"
    - "get_weather"
  denied_tools:
    - "execute_shell"
  max_output_size_bytes: 524288   # 512KB

on_violation: "block"

2. Protect Your Tools

from enforcecore import enforce

# Decorator — sync or async, just works
@enforce(policy="policy.yaml")
async def search_web(query: str) -> str:
    return await api.search(query)

@enforce(policy="policy.yaml")
def calculator(expr: str) -> float:
    return eval(expr)  # policy controls whether this tool can be called

How tool names work: @enforce uses the function name (e.g. search_web) as the tool name matched against allowed_tools / denied_tools. To override, pass tool_name=:

@enforce(policy="policy.yaml", tool_name="web_search")
async def search(query: str) -> str: ...

3. See It Work

# ✅ Allowed — tool is in the allowed list
result = await search_web("latest AI papers")

# ❌ Blocked — tool not allowed, raises ToolDeniedError
@enforce(policy="policy.yaml")
async def execute_shell(cmd: str) -> str:
    return subprocess.run(cmd, capture_output=True).stdout

4. Programmatic Control

from enforcecore import Enforcer, Policy

policy = Policy.from_file("policy.yaml")
enforcer = Enforcer(policy)

# Direct invocation (sync)
result = enforcer.enforce_sync(my_tool, arg1, arg2, tool_name="my_tool")

# Direct invocation (async)
result = await enforcer.enforce_async(my_tool, arg1, tool_name="my_tool")

📖 See examples/quickstart.py for a complete runnable demo.


Framework Integrations

EnforceCore works with any Python-based agent system — no lock-in:

Framework Status Example
Plain Python ✅ Available @enforce() decorator
LangGraph ✅ Available @enforced_tool(policy="...")
CrewAI ✅ Available @enforced_tool(policy="...")
AutoGen ✅ Available @enforced_tool(policy="...")
# LangGraph — one-line enforcement
from enforcecore.integrations.langgraph import enforced_tool

@enforced_tool(policy="policy.yaml")
def search(query: str) -> str:
    """Search the web."""
    return web_search(query)

# CrewAI
from enforcecore.integrations.crewai import enforced_tool

@enforced_tool(policy="policy.yaml")
def calculator(expr: str) -> str:
    """Calculate."""
    return str(eval(expr))

# AutoGen
from enforcecore.integrations.autogen import enforced_tool

@enforced_tool(policy="policy.yaml", description="Search the web")
async def search(query: str) -> str:
    return await web_search(query)

No hard dependencies on any framework — adapters use optional imports.


Key Design Principles

  • 🔒 Fail-closed — if enforcement fails, the call is blocked. Never fails open.
  • ⚡ Async-native — first-class support for both sync and async from day one.
  • 🌍 Cross-platform — core works on Linux, macOS, and Windows. Advanced Linux hardening optional.
  • 📦 Zero lock-in — no hard dependency on any agent framework.
  • 📊 Honest benchmarks — real overhead numbers, not marketing claims.

Performance

Measured with 1 000 iterations + 100 warmup on Apple Silicon (arm64), Python 3.13. Run python -m benchmarks.run for your hardware. See docs/benchmarks.md for methodology.

Component P50 (ms) P99 (ms)
Policy evaluation 0.012 0.228
PII redaction (short) 0.028 0.275
PII redaction (~2KB) 0.129 0.220
Audit entry (write) 0.068 0.232
Audit chain verify (100 entries) 1.114 1.457
Resource guard < 0.001 < 0.001
Rate limiter < 0.001 0.002
Secret detection 0.012 0.017
Full enforcement (E2E) 0.056 0.892
E2E + PII redaction 0.093 0.807

Negligible compared to tool call latency (100ms–10s for API calls).


Roadmap

Release Focus Status
v1.0.0 Core Enforcer + Policy Engine ✅ Shipped
v1.0.1 PII Redactor + Bug Fixes ✅ Shipped
v1.0.2 CI Hardening + Release Process ✅ Shipped
v1.1.0 Evaluation Expansion (26 scenarios, 11 threat categories, HTML reports) ✅ Shipped
v1.1.1 Eval Polish + Community Prep ✅ Shipped
v1.1.2 Beta Feedback Fixes (CLI --version, doc links, extras detection) ✅ Shipped
v1.2.0 Audit Storage System + Compliance (JSONL / SQLite / PostgreSQL, EU AI Act) ✅ Shipped
v1.3.0 Subprocess Sandbox (post-execution isolation, resource limits) ✅ Shipped
v1.4.0 NER PII + Sensitivity Labels (enforcecore[ner]) ✅ Shipped
v1.5.0 OpenTelemetry + Observability (Prometheus, OTLP traces, Grafana dashboard) ✅ Shipped
v1.6.0 Multi-Tenant + Policy Inheritance (extends: keyword, tenant audit trails) ✅ Shipped
v1.7.0 Remote Policy Server (signed policies, pull-only, Enforcer.from_server) ✅ Shipped
v1.8.0 Compliance Reporting (EU AI Act, SOC2, GDPR — enforcecore audit export) ✅ Shipped
v1.9.0 Plugin Ecosystem (custom guards/redactors from PyPI — enforcecore plugin list) ✅ Shipped
v1.10.0 Quality Hardening + Async Streaming Enforcement (stream_enforce) ✅ Shipped
v1.11.0 AsyncIO Streaming Enforcement (GA), 2324 tests, 97% coverage ✅ Shipped
v1.11.1 Patch — fix NER example crash, corrected stale docs (2324 tests, 97% coverage) Latest
v2.0.0 Distributed Enforcement (multi-node, global Merkle root) 📋 Planned

See docs/roadmap.md for the full roadmap including component details and future directions.


Documentation

📐 Architecture Technical design and component overview
🗺️ Roadmap v1.0.x incremental release plan
🔧 API Design Public API surface and patterns
📚 API Reference API documentation
🛠️ Developer Guide Setup, standards, and workflow
🧪 Tech Stack Technology choices and rationale
📊 Evaluation Adversarial scenarios, benchmarks, and reports
📄 Related Work Survey and academic positioning
🛡️ Defense-in-Depth Security layer architecture and deployment stacks
🧭 Tool Selection When to use EnforceCore vs. OS-level security
FAQ Frequently asked questions
🔍 Troubleshooting Common errors and debugging tips
🌍 Vision Why EnforceCore exists
🤝 Contributing How to contribute
📋 Code of Conduct Community standards
🔒 Security Vulnerability reporting policy

For Researchers

EnforceCore applies established computer science principles — runtime verification, reference monitors, information-flow control — to the novel problem of AI agent safety. We welcome academic collaboration.

  • 📄 Related Work — survey of runtime verification for AI agents, positioning vs. NeMo Guardrails, LlamaGuard, and others
  • 📑 CITATION.cff — machine-readable citation metadata (how to cite)
  • 🔬 Open Research Questions — policy composition, temporal properties, adversarial robustness
  • 🧪 Evaluation Suite — reproducible adversarial benchmarks with 26 scenarios across 11 threat categories
  • 📐 Architecture — formal design with Mermaid diagrams

Citation

@software{enforcecore2026,
  title  = {EnforceCore: Runtime Enforcement Layer for Agentic AI Systems},
  author = {{AKIOUD AI}},
  year   = {2026},
  url    = {https://github.com/akios-ai/EnforceCore},
  license = {Apache-2.0}
}

For Enterprises

EnforceCore is designed for production deployment in regulated environments.

Concern EnforceCore Feature
Audit compliance Merkle-chained, tamper-evident audit trails with OS-enforced append-only and hash-only remote witnesses
Data protection Real-time PII redaction (11 categories)
Cost control Per-call and cumulative cost budgets
Access governance Declarative tool allow/deny policies
Network control Domain allowlisting with wildcard support
Rate limiting Per-tool, per-window, global rate caps
Incident response Structured violation events + webhook alerts
EU AI Act Designed for Article 9, 13, 14, 15 alignment
  • 🔒 Fail-closed by default — if enforcement fails, the call is blocked
  • 📦 No vendor lock-in — Apache 2.0, works with any agent framework
  • 🌍 Cross-platform — Linux, macOS, Windows (advanced Linux hardening optional)
  • 📊 Observability — OpenTelemetry traces, Prometheus-compatible metrics

Development

# Clone
git clone https://github.com/akios-ai/EnforceCore.git
cd EnforceCore

# Setup
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"

# Test
pytest --cov=enforcecore

# Lint
ruff check . && ruff format --check .

Current stats: 2324 tests · 97% coverage · 0 lint errors


Acknowledgements

EnforceCore builds on a foundation of prior work in computer science and AI safety:

  • Runtime Verification — Leucker & Schallhart (2009), Havelund & Goldberg (2005)
  • Reference Monitors — Anderson (1972) for the tamperproof, always-invoked enforcement model
  • Information Flow Control — Sabelfeld & Myers (2003) for the PII boundary model
  • Audit Integrity — Merkle (1987), Crosby & Wallach (2009) for hash-chained tamper evidence
  • Agent Containment — Armstrong et al. (2012), Babcock et al. (2016) for the containment framing
  • Evaluation Methodology — Prof. Valérie Viet Triem Tong (CentraleSupélec, IRISA/PIRAT) for feedback on adversarial evaluation strategies and containment testing
  • Microsoft Presidio — for design inspiration on PII detection patterns
  • EU AI Act (2024) — Articles 9, 13, 14, 15 directly shaped the design

See CONTRIBUTORS.md and docs/related-work.md for full citations.


Legal

EnforceCore is provided "as is", without warranty of any kind. See DISCLAIMER.md for full legal terms.

EnforceCore is a technical tool, not a compliance certification. Using EnforceCore does not guarantee regulatory compliance. Always consult qualified legal counsel for compliance requirements.

License

Apache 2.0 — free for open-source and commercial use.

Copyright 2025–2026 AKIOUD AI, SAS. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

enforcecore-1.11.1.tar.gz (520.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

enforcecore-1.11.1-py3-none-any.whl (234.2 kB view details)

Uploaded Python 3

File details

Details for the file enforcecore-1.11.1.tar.gz.

File metadata

  • Download URL: enforcecore-1.11.1.tar.gz
  • Upload date:
  • Size: 520.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for enforcecore-1.11.1.tar.gz
Algorithm Hash digest
SHA256 979482c2d91aac7f41c12103b4d4549c097746b153ebca238e7bf58e877ad1f2
MD5 de05a263d1e1689dccba2092f897a149
BLAKE2b-256 f073b7a404d5960bd0f1384131e13f2b116ca43407049a70fd3642c88cefdb71

See more details on using hashes here.

Provenance

The following attestation bundles were made for enforcecore-1.11.1.tar.gz:

Publisher: release.yml on akios-ai/EnforceCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file enforcecore-1.11.1-py3-none-any.whl.

File metadata

  • Download URL: enforcecore-1.11.1-py3-none-any.whl
  • Upload date:
  • Size: 234.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for enforcecore-1.11.1-py3-none-any.whl
Algorithm Hash digest
SHA256 97463eee69a897834d5d308ccbe4055ab9743933daa9036a261e583d8862f6e8
MD5 dd12488207b5cea1c9fca128ef080424
BLAKE2b-256 faeceae498964ef0fda9d358affb2d1d0e0185c911caf57c3699cc64d130121a

See more details on using hashes here.

Provenance

The following attestation bundles were made for enforcecore-1.11.1-py3-none-any.whl:

Publisher: release.yml on akios-ai/EnforceCore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page