Skip to main content

Runtime safety for AI agents. Stop agents before they break things.

Project description

Edictum

PyPI License Python CI Downloads arXiv

Runtime rule enforcement for AI agent tool calls.

Prompts are suggestions. Rules are enforcement. The LLM cannot talk its way past a rule.

55us overhead · 18 adapters across Python, TypeScript, Go · Zero runtime deps · Fail-closed by default

pip install edictum[yaml]

Quick Start

Deny first -- see enforcement before writing YAML:

from edictum import Edictum, EdictumDenied

guard = Edictum.from_template("file-agent")
result = guard.evaluate("read_file", {"path": ".env"})
print(result.decision)         # "block"
print(result.block_reasons[0])  # "Sensitive file '.env' blocked."

Full path -- your rule, your enforcement:

guard = Edictum.from_yaml("rules.yaml")

try:
    result = await guard.run("read_file", {"path": ".env"}, read_file)
except EdictumDenied as e:
    print(e.reason)  # "Sensitive file '.env' blocked."

rules.yaml:

apiVersion: edictum/v1
kind: Ruleset
metadata:
  name: file-safety
defaults:
  mode: enforce
rules:
  - id: block-sensitive-reads
    type: pre
    tool: read_file
    when:
      args.path:
        contains_any: [".env", ".secret", "credentials", ".pem", "id_rsa"]
    then:
      action: block
      message: "Sensitive file '{args.path}' blocked."

Rules are YAML. Enforcement is deterministic -- no LLM in the evaluation path, just pattern matching against tool names and arguments. The agent cannot bypass a matched rule. Rule errors, type mismatches, and missing fields all fail closed (block). Tool calls with no matching rules are allowed by default -- add a catch-all tool: "*" rule for block-by-default.

The Problem

An agent says "I won't read sensitive files" -- then calls read_file(".env") and leaks your API keys.

A DevOps agent recognizes a jailbreak attempt, writes "I should NOT comply" in its reasoning -- then reads four production database credentials in the next tool call.

Prompt engineering doesn't fix this. You need enforcement at the tool-call layer.

Works With Your Framework

Framework Adapter Integration
LangChain + LangGraph LangChainAdapter as_tool_wrapper() / as_middleware()
OpenAI Agents SDK OpenAIAgentsAdapter as_guardrails()
Claude Agent SDK ClaudeAgentSDKAdapter to_hook_callables()
CrewAI CrewAIAdapter register()
Agno AgnoAdapter as_tool_hook()
Semantic Kernel SemanticKernelAdapter register()
Google ADK GoogleADKAdapter as_plugin() / as_agent_callbacks()
Nanobot NanobotAdapter wrap_registry()
# LangChain
from edictum.adapters.langchain import LangChainAdapter
adapter = LangChainAdapter(guard)
tool = adapter.as_tool_wrapper(tool)

# OpenAI Agents SDK
from edictum.adapters.openai_agents import OpenAIAgentsAdapter
adapter = OpenAIAgentsAdapter(guard)
input_gr, output_gr = adapter.as_guardrails()

# Claude Agent SDK
from edictum.adapters.claude_agent_sdk import ClaudeAgentSDKAdapter
adapter = ClaudeAgentSDKAdapter(guard)
hooks = adapter.to_hook_callables()

# Google ADK
from edictum.adapters.google_adk import GoogleADKAdapter
adapter = GoogleADKAdapter(guard)
plugin = adapter.as_plugin()

See Adapter docs for all 8 frameworks.

What You Can Do

Rules -- four types covering the full tool call lifecycle:

  • Preconditions block dangerous calls before execution
  • Postconditions scan tool output -- warn, redact PII, or block
  • Session rules cap total calls, per-tool calls, and retry attempts
  • Sandbox rules allowlist file paths, commands, and domains

Principal-aware enforcement -- role-gate tools with claims and env.* context. set_principal() for mid-session role changes.

Callbacks -- block/allow lifecycle callbacks for logging, alerting, or approval workflows.

Test and validate:

  • guard.evaluate() -- dry-run without executing the tool
  • Load rules in tests and assert decisions directly from Python
  • For CLI workflows, use the Go binary in edictum-go -- that is the canonical Edictum CLI

Ship safely:

  • Observe mode -- log what would be blocked, then enforce
  • Multi-file composition with deterministic merge
  • Custom YAML operators and selectors
  • For CLI-based diff/replay workflows, use the Go binary in edictum-go

Audit and observability:

  • Structured audit events on every evaluation
  • OpenTelemetry spans and metrics
  • Secret values auto-redacted in audit events
  • File, stdout, and composite sinks

Built-in Templates

guard = Edictum.from_template("file-agent")
# Blocks .env, .pem, credentials, id_rsa reads. Blocks rm -rf, chmod 777, destructive shell commands.

guard = Edictum.from_template("research-agent")
# Postcondition PII scanning on tool output. Session limits (100 calls, 20 per tool).

guard = Edictum.from_template("devops-agent")
# Role gates (only ops principal can deploy). Ticket ID required. Bash command safety.

guard = Edictum.from_template("nanobot-agent")
# Approval gates for exec/spawn/cron/MCP. Workspace path restrictions. Session limits.

Edictum Gate

Pre-execution governance for coding assistants. Sits between the assistant and the OS, evaluating every tool call against rules.

pip install edictum[gate]

The Python package ships the Gate library and integrations. For command-line workflows, use the Go binary in edictum-go -- that is the canonical Edictum CLI.

Supports Claude Code, Cursor, Copilot CLI, Gemini CLI, and OpenCode. Self-protection rules prevent the assistant from disabling governance. Optional sync to Edictum Console for centralized audit.

See the Gate guide for setup.

Edictum Console

Optional self-hostable operations console for governed agents. Rule management, live hot-reload via SSE, human-in-the-loop approvals, audit event feeds, and fleet monitoring.

guard = await Edictum.from_server(
    url="http://localhost:8000",
    api_key="edk_production_...",
    agent_id="my-agent",
)

See edictum-console for deployment.

Research & Real-World Impact

Edictum was evaluated across six regulated domains in the GAP benchmark (6 LLMs, 17,420 datapoints).

Paper (arXiv:2602.16943)

Used to audit OpenClaw's 36,000-skill registry -- found live C2 malware on first scan.

For CLI-based scanning and other command-line workflows, use the Go binary in edictum-go.

Install

Requires Python 3.11+.

pip install edictum              # core (zero deps)
pip install edictum[yaml]        # + YAML rule parsing
pip install edictum[otel]        # + OpenTelemetry span emission
pip install edictum[gate]        # + coding assistant governance library
pip install edictum[verified]    # + Ed25519 bundle signature verification
pip install edictum[server]      # + server SDK (connect to Edictum Console)
pip install edictum[all]         # everything in this Python package

For CLI workflows, use the Go binary in edictum-go.

How It Compares

Approach Scope Runtime enforcement Audit trail
Prompt/output guardrails Input/output text No -- advisory only No
API gateways / MCP proxies Network transport Yes -- at the proxy Partial
Security scanners Post-hoc analysis No -- detection only Yes
Manual if-statements Per-tool, ad hoc Yes -- scattered logic No
Edictum Tool call rules Yes -- deterministic pipeline Yes -- structured + redacted

Use Cases

Domain What Edictum enforces
Coding agents Secret protection, destructive command denial, write scope (Gate guide)
Healthcare Patient data access control, role-gated queries
Finance PII redaction in query results, transaction limits
DevOps Production deploy gates, ticket requirements, bash safety
Education Student data protection, session limits per assignment
Legal Privileged document access, audit trail for compliance

Ecosystem

Repo Language What it does
edictum Python Core library -- this repo
edictum-ts TypeScript Core + adapters (Claude SDK, LangChain, OpenAI Agents, OpenClaw, Vercel AI)
edictum-go Go Core + adapters (ADK Go, Anthropic, Eino, Genkit, LangChain Go)
edictum-console Python + React Self-hostable ops console: HITL, audit, fleet monitoring
edictum-schemas JSON Schema Rule bundle schema + cross-SDK conformance fixtures
edictum-demo Python Scenario demos, adversarial tests, benchmarks, Grafana observability
Documentation MDX Full docs site
edictum.ai -- Official website

Security

See SECURITY.md for vulnerability reporting.

License

MIT

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

edictum-0.17.0.tar.gz (674.2 kB view details)

Uploaded Source

Built Distribution

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

edictum-0.17.0-py3-none-any.whl (181.5 kB view details)

Uploaded Python 3

File details

Details for the file edictum-0.17.0.tar.gz.

File metadata

  • Download URL: edictum-0.17.0.tar.gz
  • Upload date:
  • Size: 674.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for edictum-0.17.0.tar.gz
Algorithm Hash digest
SHA256 bc91ddceca8d82832388331f44aa4e2592fcd0a24ff8c2f475862d62bed56840
MD5 4c441dba1c2a36c87e729e548ebaaea5
BLAKE2b-256 731a07b244b4188401d5b542fd08aa9c95fdefb6f42726f7a663a4ea8fefdee9

See more details on using hashes here.

File details

Details for the file edictum-0.17.0-py3-none-any.whl.

File metadata

  • Download URL: edictum-0.17.0-py3-none-any.whl
  • Upload date:
  • Size: 181.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for edictum-0.17.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9df1958dc0df7f02075f86abf50330242531554935977ebb209a75e3b8dcd1fe
MD5 62dcaecb7369468579953198f86a9db7
BLAKE2b-256 4c96a3ec0c0268023d94ff100cd53df12125d5b4e3cc9c5550123fcf2ffc84d2

See more details on using hashes here.

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