Python SDK reference
Stable root imports
from axm import ... supports the following contracts:
| Export | Purpose |
|---|---|
AXMTool |
Structural tool protocol: name and execute |
ToolResult |
Tool success, data, error, hint and text |
ToolMetadata, tool_metadata |
Optional discovery settings and their defaults |
tool_node, ToolNodeError |
Tool-to-node adapter and its contract errors |
WitnessRule, WitnessResult, ValidationFeedback |
Validation contracts |
__version__ |
Installed distribution version; "0.0.0" if metadata is missing |
Definitions remain in their submodules. Prefer root imports for these
contracts. load_tool and override_tools are additionally re-exported by
axm.tools. CLI helpers and axm.tools.write_scope are implementation
modules, not root SDK exports.
Tool results
ToolResult is a frozen dataclass, not a Pydantic model. It requires
success; data defaults to a fresh empty dict, and error, hint,
text default to None. Frozen fields do not make nested data immutable.
data is for machine consumers; text is an optional prepared rendering.
Neither automatically derives from the other. hint is available to
consumers but the generic CLI does not print it as a separate field.
Use dataclasses.asdict when you explicitly need the whole dataclass;
the CLI's shared --json-output emits only data.
ToolResult
dataclass
Immutable result of a tool execution.
Attributes:
| Name | Type | Description |
|---|---|---|
success |
bool
|
Whether the tool execution succeeded. |
data |
dict[str, Any]
|
Structured output data (backend-specific). |
error |
str | None
|
Human-readable error message, if any. |
hint |
str | None
|
Optional next-step suggestion for the agent. |
text |
str | None
|
Optional pre-rendered text representation (e.g. Markdown). |
Source code in packages/axm/src/axm/tools/base.py
AXMTool
Bases: Protocol
Structural protocol for AXM deterministic tools.
Implementors must provide:
- name (property): unique tool identifier
- execute(...) : deterministic execution with explicit params
Optionally provide:
- agent_hint (class attribute): optional, free-form one-liner
optimized for LLM consumption: what the tool does, key params, and
what it replaces. Like the other discovery attributes below, it is
not a protocol member and carries no guaranteed fallback — some
discovery tooling reads it best-effort via getattr /
:func:tool_metadata; absent, nothing is substituted.
- expose_directly (class attribute, default False): when
True, the MCP server registers this tool directly in
tools/list (the hot path). When False (default), the
tool is reachable only through the MCP facade
(axm_search -> axm_describe -> axm_call), keeping the
tools/list payload small.
- domain (class attribute, default None): coarse capability
group used by the facade for axm_capabilities and to scope
axm_search (e.g. "ast", "git", "ticket").
- tags (class attribute, default frozenset()): free-form
keywords feeding facade discovery (axm_search).
Uses structural typing (PEP 544) — no inheritance required.
@runtime_checkable enables isinstance() checks. The discovery
attributes (expose_directly / domain / tags) are not
protocol members on purpose: adding data attributes to a
runtime_checkable protocol would make them required for
isinstance() and break the check for the many tools that satisfy
AXMTool structurally without subclassing it. Read them through
:func:tool_metadata (or getattr(tool, name, default)) instead,
which works for subclasses and structural tools alike.
Example::
class MyTool(AXMTool):
agent_hint = "Frobnicate widgets — use width param."
expose_directly = True # hot path (read via tool_metadata)
domain = "widget"
tags = frozenset({"frobnicate"})
@property
def name(self) -> str:
return "my-tool"
def execute(self, *, value: int = 0) -> ToolResult:
return ToolResult(success=True, data={"result": value})
Source code in packages/axm/src/axm/tools/base.py
name
property
Unique tool identifier (e.g., 'esbmc', 'dafny', 'pytest').
execute(**kwargs)
Execute the tool with given arguments.
Subclasses should override with explicit, typed parameters::
def execute(self, *, title: str = "", body: str = "") -> ToolResult:
...
The **kwargs signature here is the structural minimum —
any callable accepting keyword arguments satisfies it.
Returns:
| Type | Description |
|---|---|
ToolResult
|
ToolResult with success status and structured data. |
Source code in packages/axm/src/axm/tools/base.py
Discovery metadata
tool_metadata(tool) returns ToolMetadata with defaults
expose_directly=False, domain=None, tags=frozenset().
It uses attributes rather than requiring inheritance. Tags are coerced to a
frozenset; expose_directly is converted with bool.
agent_hint is a separate optional attribute, absent from ToolMetadata.
The helper does not invent an agent hint or guarantee a docstring fallback.
ToolMetadata
dataclass
Facade/CLI discovery metadata for a tool, with safe defaults.
Built by :func:tool_metadata from the optional expose_directly /
domain / tags attributes a tool may declare. Centralising the
defaults here keeps the MCP facade and the CLI reading the same contract.
Attributes:
| Name | Type | Description |
|---|---|---|
expose_directly |
bool
|
Whether the tool is on the MCP hot path
(registered directly in |
domain |
str | None
|
Coarse capability group, or |
tags |
frozenset[str]
|
Discovery keywords (possibly empty). |
Source code in packages/axm/src/axm/tools/base.py
tool_metadata(tool)
Read a tool's optional discovery attributes into a :class:ToolMetadata.
Works for tools that subclass :class:AXMTool, tools that satisfy it
structurally, and plain callables — anything missing an attribute falls
back to the default. tags is coerced to a frozenset so callers
can rely on set semantics regardless of how the tool declared it.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool
|
object
|
The tool instance (or plain callable) to introspect. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
A |
ToolMetadata
|
class: |
Source code in packages/axm/src/axm/tools/base.py
Tool nodes
Read the composition guide before choosing mappings
and failure handling. ToolNodeError is a RuntimeError subclass.
tool_node(name, *, args=None, returns=None, allow_failure_data=False)
Build a DAG python-node fn(payload) -> dict around an axm.tools tool.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The tool's |
required |
args
|
Mapping[str, str] | None
|
Optional |
None
|
returns
|
Mapping[str, str] | None
|
Precedence / collision: the literal |
None
|
allow_failure_data
|
bool
|
Opt-in for observation tools whose |
False
|
Returns:
| Type | Description |
|---|---|
Callable[[Mapping[str, object]], dict[str, object]]
|
A callable mapping the node's |
Raises:
| Type | Description |
|---|---|
ToolNodeError
|
At call time, if the tool is unknown, returns
|
Source code in packages/axm/src/axm/tools/node.py
| Python | |
|---|---|
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
ToolNodeError
load_tool(name)
Resolve and instantiate the axm.tools entry point named name.
Source code in packages/axm/src/axm/tools/node.py
override_tools(tools)
Substitute tools ({entry_point_name: tool}) for the duration of a block.
Inside the block, a :func:tool_node built for one of the named tools calls
the substitute instead of resolving the axm.tools entry point — whether
the node was built before or after entering the block, and whether or not
the real tool had already been resolved and memoized. Blocks nest: an inner
block adds to (or shadows, per name) the enclosing one, and leaving it
restores exactly what was active before.
The substitution applies to every resolution by name — :func:tool_node
nodes and direct :func:_load_tool callers alike — so a graph node that
resolves a tool itself (_load_tool("echo_check") in a python node) is
covered too, not only tool_node wrappers.
The scope is a :mod:contextvars context, not a global: it propagates to
asyncio tasks and :func:asyncio.to_thread calls started inside the
block (how axm_dag executes python nodes) and is invisible to concurrent
work started outside it. Substitutes are never memoized, so the real tool
resolves again as soon as the block exits.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tools
|
Mapping[str, AXMTool]
|
Entry-point name → substitute implementing |
required |
Source code in packages/axm/src/axm/tools/node.py
Other contracts
Witnesses covers the remaining root protocols and result types. CLI reference documents launcher helpers.
The workspace build also generates module reference pages from
docs/gen_ref_pages.py. This curated reference renders directly from the same
source, so it works in both package-only and monorepo builds.