Skip to main content

nornyx-agentic-adapters

Supported framework adapters for the Nornyx nornyx.agentic authorization SPI. This package is where framework-specific interception, argument normalization, and executor wrapping live — the core nornyx package (SPI_VERSION == "1.2" as published in Nornyx 1.11.0; Nornyx 1.10.0 published SPI 1.1) contains no agent framework and implements no framework glue.

Status

M2-A (foundation), M2-B (CrewAI), M2-C (LangGraph), and M2-D (legacy compatibility closure) have landed. M2-A ships the public contract — adapter metadata, a coverage-inventory type, the declarative-binding primitive, and the enforce() evaluate/record/execute boundary — that framework-specific adapters build on. M2-B adds a supported CrewAI adapter on top of it. M2-C adds occurrence-aware synchronous LangGraph node governance on the runtime-events 1.1 contract defined by ADR-0042.

Component Status
Public contract (AdapterMetadata, CoverageInventory, SurfaceBinding, enforce) Available
CrewAI adapter (nornyx_agentic_adapters.crewai_adapter) Available — tool invocation only, see Coverage below
LangGraph adapter (nornyx_agentic_adapters.langgraph) Available — synchronous StateGraph nodes only, see Coverage below
Legacy integrations/ import-name collision Resolved — the reference kernel is now nornyx_reference_adapters, so this distribution owns nornyx_agentic_adapters unambiguously (MIGRATION.md)
Legacy integrations/ behavioural compatibility shim Complete (ADR-0039 M2-D) — deprecated facade over SPI 1.2 Authorizer.state; requires Nornyx 1.11.0; still unpackaged and outside this distribution

Install

pip install nornyx-agentic-adapters

Framework extras:

pip install "nornyx-agentic-adapters[crewai]"    # CrewAI adapter — available
pip install "nornyx-agentic-adapters[langgraph]" # LangGraph adapter — available; exact 1.2.2 pin

Requires Python 3.10–3.13 and nornyx>=1.10,<2.

CrewAI adapter

from nornyx_agentic_adapters import SurfaceBinding
from nornyx_agentic_adapters.crewai_adapter import make_governed_tool, resolve_identity

identity_ref = resolve_identity(authorizer, agent)  # maps agent.role -> a declared Nornyx identity

tool = make_governed_tool(
    name="governed_reader",
    description="Read governed context.",
    binding=SurfaceBinding(
        surface="tool:governed_reader",
        identity_ref=identity_ref,
        capability_ref="read_governed_context",
    ),
    authorizer=authorizer,
    context=context,
    recorder=recorder,
    mission_id=mission_id,
    action=lambda: "the tool's real work",
)
# Attach `tool` to a crewai.Task like any other BaseTool; the wrapped action
# never runs unless the SPI evaluates ALLOW for the declared binding.

Coverage (cooperative Tier 2 — declared, wrapped surfaces only): the only verified CrewAI extension point is subclassing crewai.tools.BaseTool and overriding the synchronous _run, reached through Crew.kickoff()'s native executor. Coverage is the sync _run path only. Asynchronous tool execution (arun/_arun) is not a governed surface: this adapter does not override _arun, so CrewAI's async path hits the inherited BaseTool._arun, which raises NotImplementedError — the wrapped action never runs and no observation is recorded. It is declared async_tool_invocation / unsupported in crewai_adapter.COVERAGE_INVENTORY; do not assume synchronous tool coverage extends to async execution. Agent invocation, task invocation, delegation, and handoff likewise have no verified, stable public CrewAI hook distinct from tool-level interception and are declared unsupported rather than wrapped through undocumented internals. Bypassing the adapter — calling the underlying action directly instead of through the governed tool — bypasses enforcement entirely; see Assurance boundary below.

Structured tool arguments. make_governed_tool accepts an optional args_schema (a CrewAI-compatible pydantic BaseModel subclass) describing the tool's inputs. When supplied it is exposed to CrewAI so the executor validates and passes structured arguments through the governed _run — validated arguments reach action only after an ALLOW decision, never bypassing authorization; DENY/APPROVAL_REQUIRED still prevent execution regardless of valid input. Omit it for a no-argument governed tool (unchanged default). The schema describes tool inputs only and never carries the authorizer, recorder, or binding. An args_schema that is not a pydantic BaseModel subclass fails closed at construction with AdapterConfigurationError. This is not arbitrary CrewAI-tool wrapping: the API constructs a governed tool from an explicit action and optional args_schema.

LangGraph adapter

from nornyx.agentic import EvidenceRecorder
from nornyx_agentic_adapters import SurfaceBinding
from nornyx_agentic_adapters.langgraph import make_governed_node

recorder = EvidenceRecorder.for_occurrences(
    authorizer, context, producer_id="my-graph"
)
governed_node = make_governed_node(
    binding=SurfaceBinding(
        surface="node.read",
        identity_ref="identity.reader",
        capability_ref="read_governed_context",
    ),
    authorizer=authorizer,
    context=context,
    recorder=recorder,
    mission_id="GOAL-001",
    action=read_node,
)
builder.add_node("read", governed_node)

The adapter maps public LangGraph task_id and node_attempt metadata to Nornyx occurrence and attempt identity. It supports native retry, loop visits, parallel branches, interrupt, and checkpoint resume. A normal exception records runtime_failed; LangGraph interrupt control flow remains an incomplete attempt and is not misreported as failure. Resume uses the validated cumulative recorder prefix to offset LangGraph's reset attempt counter.

Coverage is synchronous StateGraph node invocation only. Async nodes, remote/distributed execution, graph-topology ownership, and implicit subgraph or ToolNode interception are declared unsupported or unwrapped.

Assurance boundary (ADR-0040)

This package provides cooperative Tier 2 authorization over declared, wrapped surfaces only:

  • Bypassing an adapter bypasses enforcement — there is no gateway, sandbox, or mandatory interception.
  • A CoverageInventory names exactly which surfaces an adapter wraps; it never implies whole-application coverage.
  • Adapters do not authenticate agents or approvers.
  • Adapters do not attest that a recorded runtime event is true — evidence is contract-state binding only, not runtime proof.
  • Nothing here establishes Tier 3 (independent runtime assurance); that requires an external enforcement/attestation system Nornyx neither provides nor verifies.

Every Tier 2 claim about this package should carry the qualifier "cooperative, declared surfaces only."

EvidenceRecorder (core, nornyx.agentic) is internally lock-protected. Supported builtin subclasses remain accepted for public compatibility and are immediately canonicalized to exact plain builtins without invoking subclass overrides; only those detached exact values can influence recorder state or evidence output. Arbitrary non-dict Mapping fields remain an explicit callback boundary outside the recorder lock — see ADR-0041 and docs/COMPATIBILITY.md. These adapters already pass exact builtins, so their legacy CrewAI evidence output remains compatible. Occurrence-aware recording is an additive SPI 1.1 capability used by the LangGraph adapter. SPI 1.2 adds the framework-neutral Authorizer.state construction snapshot; it changes no adapter authorization or occurrence behavior.

Versioning

nornyx-agentic-adapters has its own independent SemVer, separate from the nornyx core package's version. It declares the nornyx.agentic.SPI_VERSION major version it supports and asserts compatibility at import time — an incompatible core SPI major version raises UnsupportedSPIVersionError immediately, rather than failing later with a confusing error.

This package nornyx SPI CrewAI LangGraph Python
0.1.x >=1.8,<2 1.0 1.15.4 Not implemented 3.10–3.13
0.2.x >=1.10,<2 1.x (tested with 1.1 and 1.2) 1.15.4 (only tested version) 1.2.2 (only tested version) 3.10–3.13
0.3.x >=1.10,<2 1.x (tested with 1.1 and 1.2) 1.15.4 (only tested version) 1.2.2 (only tested version) 3.10–3.13

The SPI column names the major version this package supports, matching docs/COMPATIBILITY.md: every additive SPI minor is compatible under ADR-0039's minor-compatibility rule, and the import-time check asserts the major only.

Framework version pins are intentionally narrow: they name the only version of each framework this package has been tested against. A wider range is not claimed until new test evidence supports it. Framework pins are enforced at import time, not merely declared: both framework submodules check their exact installed distribution version. For example, nornyx_agentic_adapters.crewai_adapter distinguishes three cases:

  • CrewAI missing — raises MissingOptionalDependencyError naming the pip install nornyx-agentic-adapters[crewai] remedy.
  • CrewAI installed but not the supported version (or missing/malformed version metadata) — raises AdapterConfigurationError immediately, naming the installed version and the required crewai==1.15.4; it never runs against an untested CrewAI.
  • CrewAI == 1.15.4 — imports and operates normally.

Design

  • AdapterMetadata — declares one adapter's name/version, supported SPI major version, and tested framework/nornyx ranges.
  • SurfaceBinding / validate_binding — a closed, adapter-declared mapping from one framework surface to a Nornyx identity and capability. Built from an adapter's own static configuration, never from raw framework arguments (commands, paths, URLs, tool payloads).
  • CoverageInventory / SurfaceCoverage / SurfaceStatus — a deterministic, closed record of every surface an adapter declares, tagged wrapped, unsupported, or unwrapped.
  • enforce(authorizer, request, *, context, recorder, mission_id, action) — the single enforcement boundary: evaluates request against the core Authorizer, records the decision's event intents, and only on ALLOW invokes action and returns its result. On DENY/APPROVAL_REQUIRED (or any unexpected error), action is never invoked and the call fails closed.
  • AdapterDenied — raised by enforce() on a non-ALLOW decision; carries the core Decision unmodified.
  • AdapterConfigurationError — raised for a malformed or incomplete adapter-owned declarative mapping.
  • langgraph.make_governed_node(...) — occurrence-aware synchronous node enforcement using public LangGraph execution metadata only.
  • conformance — the runtime adapter-conformance kit (see below).

Runtime conformance (ADR-0043)

A CoverageInventory is a declaration. The conformance kit executes the real supported adapter paths under the exact declared framework versions and reports what actually happened, so a declared wrapped surface cannot drift from the adapter's behavior without the drift being visible.

pip install "nornyx-agentic-adapters[crewai,langgraph]"
python -m nornyx_agentic_adapters.conformance --summary
python -m nornyx_agentic_adapters.conformance \
  --require crewai --require langgraph --json conformance.json

Exit codes: 0 every required case conformed, 1 observed nonconformance — a failing case, a required framework unavailable, a run that produced no case, or an outbound connection or process spawn the run's guard blocked — and 2 invalid configuration or an internal error. --require exists so a missing extra fails CI instead of passing as a silent skip. The command opens no external network, loads no credentials, calls no external model service or endpoint, and executes no connector; a guarded run permits loopback so a framework's local telemetry stack still works.

The CrewAI suite does instantiate and drive a scripted, offline, in-process model — CrewAI's native executor needs one, and a scripted one is what makes the run deterministic. The LangGraph suite drives none. The report says so plainly rather than claiming no model was called: scripted_in_process_model_called is observed per run, and external_model_service_called is a structural constant.

Programmatic use mirrors the command:

from nornyx_agentic_adapters.conformance import run_conformance, validate_report

report = run_conformance(require=["crewai"])
assert validate_report(report.as_dict()) == ()

The report is deterministic JSON identified by nornyx.agentic_runtime_conformance.v1 and validated against a schema bundled in this distribution. It records the exact adapter, framework, Nornyx, SPI, and Python versions; each adapter's declared coverage verbatim alongside the observed cases; whether each case ran through the framework's own executor or the wrapper directly; authorization and execution counts; recorded decision and observation events; and whether the runtime evidence validated.

Two report conventions exist because measurement forced them. Raw LangGraph occurrence ids never appear, since LangGraph mints a fresh task id per process; only derived facts (how many occurrences, which attempts, whether any collided) are recorded. And where a framework executor rather than the adapter controls repetition, a count is reported as at_least with a stated reason instead of a number that will not reproduce.

Two limitations you will see in the report

These are observed and reported rather than hidden, so they are worth knowing before you read a result:

  • crewai.native.deny reports evidence_validation: fail. CrewAI's own executor retries a denied tool call, and legacy-mode runtime events carry no occurrence identity, so the repeated identical decision batches are flagged AN_EVT_REPLAY. The fail-closed guarantee is unaffected — the wrapped action executes zero times — and the case asserts that exact diagnostic code, so an unrelated evidence regression cannot hide behind it.
  • crewai.unsupported.approval_required is not_representable. The governed tool issues a capability request, and an approval-required effect is reachable in this core only through a zone-crossing request, so no CrewAI path can produce one. The case cross-references the framework-neutral case that does prove the behavior.

See docs/COMPATIBILITY.md for the full statement.

Cooperative Tier 2, declared wrapped surfaces only. Conformance does not authenticate agents or approvers, does not prove a recorded runtime event is true, does not prevent bypass, does not create whole-application coverage, does not enable live connectors, and does not establish Tier 3 assurance. Bypass is reported as an explicit negative control that is outside declared coverage — never as a path that was prevented. This is distinct from the static nornyx.adapter_conformance.v0.7 report, which validates declared contract shape with execution disabled.

See docs/COMPATIBILITY.md for the full compatibility matrix and docs/MIGRATION.md for the completed legacy method/error mapping, deprecation window, and unsupported surfaces.

Download files

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

Source Distribution

nornyx_agentic_adapters-0.3.0.tar.gz (95.0 kB view details)

Uploaded Source

Built Distribution

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

nornyx_agentic_adapters-0.3.0-py3-none-any.whl (72.0 kB view details)

Uploaded Python 3

File details

Details for the file nornyx_agentic_adapters-0.3.0.tar.gz.

File metadata

  • Download URL: nornyx_agentic_adapters-0.3.0.tar.gz
  • Upload date:
  • Size: 95.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nornyx_agentic_adapters-0.3.0.tar.gz
Algorithm Hash digest
SHA256 5edba2fa2330346bbad666a95c3fa4eaf84b6bfb026d678b4fc47bc0c09e1f13
MD5 3b7986f4e633c0321b9460a32674bd08
BLAKE2b-256 aa6eb8065521639fb12dfbaa0e7e47ab6d1f11b3e25d7169a74d90f560dfb4bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for nornyx_agentic_adapters-0.3.0.tar.gz:

Publisher: adapters-release.yml on mazinmarji/nornyx

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

File details

Details for the file nornyx_agentic_adapters-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for nornyx_agentic_adapters-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6423f62f849aaa1705c6a35232003fc7bd3eda5d675ec0f1839fd6e0c3379c41
MD5 747c94559b0bc4e7a6622c649dfe1e82
BLAKE2b-256 d38103802c8bb62a42ca4b45906d309d58f62e2afddab1b27085d5a8b7071208

See more details on using hashes here.

Provenance

The following attestation bundles were made for nornyx_agentic_adapters-0.3.0-py3-none-any.whl:

Publisher: adapters-release.yml on mazinmarji/nornyx

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 Sentry Error logging StatusPage Status page